Skip to content

Commit 4bca0bb

Browse files
authored
Merge pull request #4140 from nfs0619/103
Repair corrupted files
2 parents 5ec79eb + 126f60d commit 4bca0bb

File tree

4 files changed

+471
-44
lines changed

4 files changed

+471
-44
lines changed
Lines changed: 147 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,158 @@
1+
---
2+
description: Guide to setting up Quectel 4G Raspberry Pi HAT on Windows using MBIM mode for stable cellular internet connection.
3+
4+
title: 4G Raspberry Pi HAT - MBIM Mode Setup on Windows
5+
keywords:
6+
- Raspberry Pi Hat
7+
- Getting started
8+
- IIoT
9+
- MBIM
10+
- 4G LTE
11+
12+
image: https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/mbimcmd.webp
13+
slug: /raspberry_pi_4g_lte_hat_mbim
14+
last_update:
15+
date: 3/18/2025
16+
author: Kasun Thushara
17+
---
18+
19+
## Introduction
20+
21+
The **Quectel 4G Raspberry Pi HAT** supports internet connectivity on Windows by utilizing MBIM (Mobile Broadband Interface Model) mode. This mode enables Windows to recognize the 4G module as a native cellular modem, facilitating a stable and driver-supported network connection.
22+
23+
This guide will walk you through the necessary steps to configure your Quectel module in MBIM mode and connect it to the internet on Windows 10/11 systems.
24+
25+
## Prerequisites
26+
27+
### Hardware Requirements
28+
29+
<div class="table-center">
30+
<table align="center">
31+
<tr>
32+
<th>Raspberry Pi 5</th>
33+
<th>Raspberry Pi 4G LTE CAT4 HAT</th>
34+
</tr>
35+
<tr>
36+
<td><div style={{textAlign:'center'}}><img src="https://media-cdn.seeedstudio.com/media/catalog/product/cache/bb49d3ec4ee05b6f018e93f896b8a25d/1/-/1-102110919-raspberry-pi-5-8gb-45font.jpg" style={{width:250, height:'auto'}}/></div></td>
37+
<td><div style={{textAlign:'center'}}><img src="https://media-cdn.seeedstudio.com/media/catalog/product/cache/bb49d3ec4ee05b6f018e93f896b8a25d/1/_/1_23_1.jpg" style={{width:250, height:'auto'}}/></div></td>
38+
</tr>
39+
<tr>
40+
<td><div class="get_one_now_container" style={{textAlign: 'center'}}>
41+
<a class="get_one_now_item" href="https://www.seeedstudio.com/Raspberry-Pi-5-8GB-p-5810.html">
42+
<strong><span><font color={'FFFFFF'} size={"4"}> Get One Now 🖱️</font></span></strong>
43+
</a>
44+
</div></td>
45+
<td><div class="get_one_now_container" style={{textAlign: 'center'}}>
46+
<a class="get_one_now_item" href="https://www.seeedstudio.com/LTE-CAT-4-EG25-GL-HAT-for-Raspberry-Pi-p-6325.html">
47+
<strong><span><font color={'FFFFFF'} size={"4"}> Get One Now 🖱️</font></span></strong>
48+
</a>
49+
</div></td>
50+
</tr>
51+
</table>
52+
</div>
53+
54+
## Software Prerequisites
55+
56+
Before proceeding, ensure that:
57+
58+
- Any previously installed Quectel NDIS or other drivers are uninstalled.
59+
- The correct MBIM driver is installed using the links provided below.
60+
61+
### MBIM Driver Download
62+
63+
- [Download Quectel Windows MBIM Driver v1.3](https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/Quectel_Windows_MBIM_V1.3_EN.zip)
64+
- [Get the latest updates from Quectel](https://www.quectel.com/download-zone/?_sf_s=MBIM)
65+
66+
Once installed, you can verify driver installation by navigating to **Computer Management****Device Manager**. A successful installation will show devices under "Network Adapters" and "Ports (COM & LPT)" similar to the image below:
67+
68+
<div style={{ textAlign: 'center' }}>
69+
<img
70+
src="https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/devicetree_mbim.PNG"
71+
style={{ width: 600}}
72+
/>
73+
</div>
74+
75+
### Configure MBIM Mode
76+
77+
To switch the module to MBIM mode, you will need the **QCOM Tool**.
78+
79+
1. Download and open the [QCOM Tool](https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/QCOM_V1.6.rar).
80+
2. Connect your 4G HAT to your Windows PC via USB and power it on.
81+
3. In QCOM, send the following AT command to check the current USB mode:
82+
83+
```
84+
AT+QCFG="usbnet"?
85+
```
86+
87+
- If it returns anything other than `"usbnet",2`, skip this.
88+
89+
4. To switch to MBIM mode, send:
90+
91+
```
92+
AT+QCFG="usbnet",2
93+
```
94+
95+
5. Then reboot
96+
97+
```
98+
AT+CFUN=1,1
99+
```
100+
101+
:::note
102+
Sometimes you may experience the AT port not responding. In such cases, use the DM port instead.
103+
:::
104+
105+
<div style={{ textAlign: 'center' }}>
106+
<img
107+
src="https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/mbimcommand.PNG"
108+
style={{ width: 600}}
109+
/>
110+
</div>
111+
112+
## Connect to Network
113+
114+
Once configured in MBIM mode:
115+
116+
- Windows should detect a **Cellular Network Interface**.
117+
- You can now manage and connect to networks directly from the Windows **Network & Internet Settings**.
118+
119+
<div style={{ textAlign: 'center' }}>
120+
<img
121+
src="https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/windows.PNG"
122+
style={{ width: 600}}
123+
/>
124+
</div>
125+
1126
## Verify Network Configuration
2127

3128
To verify if your PC has acquired a network connection via MBIM:
129+
4130
1. Open Command Prompt.
5131
2. Run:
132+
6133
```
7134
ipconfig
8135
```
136+
9137
You should see an interface with an IP address under "Mobile Broadband Connection" or "Cellular".
10138

11139
<div style={{ textAlign: 'center' }}>
12-
<img
13-
src="https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/mbimcmd.PNG"
14-
style={{ width: 600}}
15-
/>
16-
</div>
140+
<img
141+
src="https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/mbimcmd.PNG"
142+
style={{ width: 600}}
143+
/>
144+
</div>
145+
146+
## Tech Support & Product Discussion
147+
148+
Thank you for choosing our products! We are here to provide you with different support to ensure that your experience with our products is as smooth as possible. We offer several communication channels to cater to different preferences and needs.
149+
150+
<div class="button_tech_support_container">
151+
<a href="https://forum.seeedstudio.com/" class="button_forum"></a>
152+
<a href="https://www.seeedstudio.com/contacts" class="button_email"></a>
153+
</div>
154+
155+
<div class="button_tech_support_container">
156+
<a href="https://discord.gg/eWkprNDMU7" class="button_discord"></a>
157+
<a href="https://github.com/Seeed-Studio/wiki-documents/discussions/69" class="button_discussion"></a>
158+
</div>
Lines changed: 152 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,158 @@
1-
## Verificar Configuración de Red
1+
---
2+
description: Guía para configurar el Quectel 4G Raspberry Pi HAT en Windows utilizando el modo MBIM para una conexión celular estable.
3+
4+
title: 4G Raspberry Pi HAT - Configuración del modo MBIM en Windows
5+
keywords:
6+
- Raspberry Pi Hat
7+
- Primeros pasos
8+
- IIoT
9+
- MBIM
10+
- 4G LTE
11+
12+
image: https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/mbimcmd.webp
13+
slug: /es/raspberry_pi_4g_lte_hat_mbim
14+
last_update:
15+
date: 3/18/2025
16+
author: Kasun Thushara
17+
---
18+
19+
## Introducción
20+
21+
El **Quectel 4G Raspberry Pi HAT** admite conectividad a Internet en Windows mediante el uso del modo MBIM (Mobile Broadband Interface Model). Este modo permite que Windows reconozca el módulo 4G como un módem celular nativo, facilitando una conexión de red estable y compatible con controladores.
22+
23+
Esta guía le mostrará los pasos necesarios para configurar su módulo Quectel en modo MBIM y conectarlo a Internet en sistemas Windows 10/11.
24+
25+
## Requisitos previos
26+
27+
### Requisitos de hardware
28+
29+
<div class="table-center">
30+
<table align="center">
31+
<tr>
32+
<th>Raspberry Pi 5</th>
33+
<th>Raspberry Pi 4G LTE CAT4 HAT</th>
34+
</tr>
35+
<tr>
36+
<td><div style={{textAlign:'center'}}><img src="https://media-cdn.seeedstudio.com/media/catalog/product/cache/bb49d3ec4ee05b6f018e93f896b8a25d/1/-/1-102110919-raspberry-pi-5-8gb-45font.jpg" style={{width:250, height:'auto'}}/></div></td>
37+
<td><div style={{textAlign:'center'}}><img src="https://media-cdn.seeedstudio.com/media/catalog/product/cache/bb49d3ec4ee05b6f018e93f896b8a25d/1/_/1_23_1.jpg" style={{width:250, height:'auto'}}/></div></td>
38+
</tr>
39+
<tr>
40+
<td><div class="get_one_now_container" style={{textAlign: 'center'}}>
41+
<a class="get_one_now_item" href="https://www.seeedstudio.com/Raspberry-Pi-5-8GB-p-5810.html">
42+
<strong><span><font color={'FFFFFF'} size={"4"}> Obtener ahora 🖱️</font></span></strong>
43+
</a>
44+
</div></td>
45+
<td><div class="get_one_now_container" style={{textAlign: 'center'}}>
46+
<a class="get_one_now_item" href="https://www.seeedstudio.com/LTE-CAT-4-EG25-GL-HAT-for-Raspberry-Pi-p-6325.html">
47+
<strong><span><font color={'FFFFFF'} size={"4"}> Obtener ahora 🖱️</font></span></strong>
48+
</a>
49+
</div></td>
50+
</tr>
51+
</table>
52+
</div>
53+
54+
## Requisitos de software
55+
56+
Antes de continuar, asegúrese de que:
57+
58+
- Se hayan desinstalado previamente cualquier controlador Quectel NDIS u otros controladores.
59+
- El controlador MBIM correcto esté instalado utilizando los enlaces proporcionados a continuación.
60+
61+
### Descarga del controlador MBIM
62+
63+
- [Descargar Quectel Windows MBIM Driver v1.3](https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/Quectel_Windows_MBIM_V1.3_EN.zip)
64+
- [Obtener las últimas actualizaciones de Quectel](https://www.quectel.com/download-zone/?_sf_s=MBIM)
65+
66+
Una vez instalado, puede verificar la instalación del controlador navegando a **Administración de equipos****Administrador de dispositivos**. Una instalación exitosa mostrará dispositivos en "Adaptadores de red" y "Puertos (COM y LPT)" similares a la imagen siguiente:
67+
68+
<div style={{ textAlign: 'center' }}>
69+
<img
70+
src="https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/devicetree_mbim.PNG"
71+
style={{ width: 600}}
72+
/>
73+
</div>
74+
75+
### Configurar el modo MBIM
76+
77+
Para cambiar el módulo al modo MBIM, necesitará la **herramienta QCOM**.
78+
79+
1. Descargue y abra la [herramienta QCOM](https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/QCOM_V1.6.rar).
80+
2. Conecte su 4G HAT a su PC con Windows mediante USB y enciéndalo.
81+
3. En QCOM, envíe el siguiente comando AT para verificar el modo USB actual:
82+
83+
```
84+
AT+QCFG="usbnet"?
85+
```
86+
87+
- Si devuelve algo distinto de `"usbnet",2`, omita este paso.
88+
89+
4. Para cambiar al modo MBIM, envíe:
90+
91+
```
92+
AT+QCFG="usbnet",2
93+
```
94+
95+
5. Luego reinicie
96+
97+
```
98+
AT+CFUN=1,1
99+
```
100+
101+
:::note
102+
En ocasiones puede que el puerto AT no responda. En esos casos, utilice el puerto DM en su lugar.
103+
:::
104+
105+
<div style={{ textAlign: 'center' }}>
106+
<img
107+
src="https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/mbimcommand.PNG"
108+
style={{ width: 600}}
109+
/>
110+
</div>
111+
112+
## Conectarse a la red
113+
114+
Una vez configurado en modo MBIM:
115+
116+
- Windows debería detectar una **Interfaz de red celular**.
117+
- Ahora puede administrar y conectarse a redes directamente desde **Configuración de Red e Internet** de Windows.
118+
119+
<div style={{ textAlign: 'center' }}>
120+
<img
121+
src="https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/windows.PNG"
122+
style={{ width: 600}}
123+
/>
124+
</div>
125+
126+
## Verificar la configuración de red
127+
128+
Para verificar si su PC ha obtenido una conexión de red mediante MBIM:
129+
130+
1. Abra el Símbolo del sistema.
131+
2. Ejecute:
2132

3-
Para verificar si tu PC ha adquirido una conexión de red a través de MBIM:
4-
1. Abre el Símbolo del sistema.
5-
2. Ejecuta:
6133
```
7134
ipconfig
8135
```
9-
Deberías ver una interfaz con una dirección IP bajo "Conexión de banda ancha móvil" o "Celular".
136+
137+
Debería ver una interfaz con una dirección IP bajo "Conexión de banda ancha móvil" o "Celular".
10138

11139
<div style={{ textAlign: 'center' }}>
12-
<img
13-
src="https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/mbimcmd.PNG"
14-
style={{ width: 600}}
15-
/>
16-
</div>
140+
<img
141+
src="https://files.seeedstudio.com/wiki/4g_hat_raspberry_pi_eg25_gl/mbimcmd.PNG"
142+
style={{ width: 600}}
143+
/>
144+
</div>
145+
146+
## Soporte técnico y discusión del producto
147+
148+
¡Gracias por elegir nuestros productos! Estamos aquí para brindarle diferentes opciones de soporte y garantizar que su experiencia con nuestros productos sea lo más fluida posible. Ofrecemos varios canales de comunicación para adaptarnos a diferentes preferencias y necesidades.
149+
150+
<div class="button_tech_support_container">
151+
<a href="https://forum.seeedstudio.com/" class="button_forum"></a>
152+
<a href="https://www.seeedstudio.com/contacts" class="button_email"></a>
153+
</div>
154+
155+
<div class="button_tech_support_container">
156+
<a href="https://discord.gg/eWkprNDMU7" class="button_discord"></a>
157+
<a href="https://github.com/Seeed-Studio/wiki-documents/discussions/69" class="button_discussion"></a>
158+
</div>

0 commit comments

Comments
 (0)