1006 RPi0 4G MiniPCIe(Expand 4G Module via MiniPCIe)

来自Mcuzone Wiki
Mcuadm留言 | 贡献2025年1月9日 (四) 11:52的版本 →‎3.5 GPS Testing

切换语言为中文

Keywords

Raspberry Pi Zero, Zero W, Zero WH, Zero 2W, miniPCIe Cat4 4G LTE, USB2.0-A, Ethernet, Expansion Board, SSH

I. Introduction

This expansion board is based on the Raspberry Pi Zero series boards and extends MiniPCIe 4G functionality. It utilizes the gold-plated test points for USB and power on the back of the Raspberry Pi Zero board for peripheral expansion. This expansion board essentially acts as a USB HUB, connecting the expansion board to the Zero's USB port via pogo pins, eliminating the need for external USB cables, saving space, and enhancing aesthetics. It expands to four USB ports via USB, including one USB-to-100Mbps wired Ethernet, one USB connected to a MiniPCIe 4G Cat4 module, and two USB2.0-A host interfaces.

The expansion board supports Raspberry Pi Zero, Zero W, Zero WH, and Zero 2W, as well as the Orange Pi Zero 2W.

The 4G LTE module is a high-cost-performance module aimed at medium-speed IoT applications, capable of meeting the majority of connectivity and transmission needs. The multiple 4G LTE modules we provide are driver-free on the Raspberry Pi OS, Ubuntu OS and OpenWrt OS, meaning they are automatically recognized without the need for you to install additional drivers. Similarly, on the Ubuntu system for the Orange Pi, the 4G modules are also driver-free. The 4G LTE module supports Qualcomm 4G/GPS, NL668-EU/EAU/AM and EG25-G.

Choosing a 4G module requires that the Bands of the local SIM card operator match those of the 4G module. If the Bands do not match, the system can recognize the 4G model but will not be able to connect to the internet. Therefore, please choose carefully before purchasing.

II. Hardware Spec

1. Four gold-plated pogo pins are used separately for powering the expansion board and for USB communication.

2. One USB-C power supply, or you can power it from the Raspberry Pi's own micro port(choose one of the two options), and the Raspberry Pi's micro USB port should not be connected to any other devices.

3. One USB2.0 MiniPCIe interface is used for connecting the 4G LTE module.

4. One Nano SIM card slot.

5. One 100Mbps Ethernet port.

6. Two USB2.0-A ports, each capable of ensuring a 2A current output.

7. Three LED indicators: PWR/MODE/ACT LED.

8. Onboard reset button for 4G module.

9. Size: 85*70mm.

10. The PCB board uses an ENIG process, is lead-free, and the material has passed UL and RoHS certification with a fire resistance rating of 94V-0.

11. An optional aluminum alloy enclosure is available.

Note 1: After connecting this expansion board, the Micro USB port on the Zero will no longer be usable.

Note 2: In some systems, it is necessary to disable the OTG function and set the USB mode to Host mode.

1006_RPi0_4G_MiniPCIe_66.jpg

1006_RPi0_4G_MiniPCIe_51.jpg

1006_RPi0_4G_MiniPCIe_57.jpg

1006_RPi0_4G_MiniPCIe_54.jpg

III. Work with Raspberry Pi OS

This document uses the Raspberry Pi OS and OpenWrt system for testing.

The version of the Raspberry Pi OS is: 2024-07-04-raspios-bookworm-arm64.img.xz

You can download the Raspberry Pi OS in:

https://www.raspberrypi.com/software/operating-systems/#raspberry-pi-os-64-bit

(If using the first-generation Raspberry Pi Zero board, which only supports 32-bit systems, please pay attention to the version you download.)

The version of the OpenWrt is: openwrt-bcm27xx-bcm2709-rpi-2-squashfs-sysupgrade-linux-6.1.98-20240723.img.gz

3.1 View hardware devices

3.1.1 View USB devices

Open the terminal in Raspberry Pi OS and enter the commandlsusb, as shown in the image below:

1006_RPi0_4G_MiniPCIe_01.jpg

Device 002:External USB Hub;

Device 003:USB to 100Mbps Ethernet adapter;

Device 004:USB2.0-A Interface;

Device 005:4G module;

Device 006:USB2.0-A Interface;

If the system stop at the Raspberry Pi logo and fails to boot:

0007_Zero_4G_Cat1_58.jpg

or if after booting, the keyboard, mouse, and 4G module cannot be used, please carefully check whether the pogo pins are aligned with the gold-plated contacts. Additionally, on the PC, open the config.txt file located in the root directory of the TF card to check the USB initialization script:

0007_Zero_4G_Cat1_41.jpg

You need to confirm that the three red-boxed areas in the following image are all configured completely. If not, please manually add the missing parts and save the file:

# otg_mode=1 (It is recommended to comment out as follow)

dtoverlay=dwc2,dr_mode=host (These two areas must be ensured to be included.)

0007_Zero_4G_Cat1_57.jpg

3.1.2 View network devices

Open the terminal in Raspberry Pi OS and enter the command ifconfig -a, (Our internal IP is 192.168.8.x, used to determine the expansion board's 100 Mbps network card device.) as shown in the image below:

CAT4 4G:

1006_RPi0_4G_MiniPCIe_42.jpg

Qualcomm 4G/GPS,NL668-EU/EAU/AM:

1006_RPi0_4G_MiniPCIe_43.jpg

ZTE CAT4:

1006_RPi0_4G_MiniPCIe_46.jpg

EG25-G:

1006_RPi0_4G_MiniPCIe_44.jpg

3.2 Test network devices

This section uses a Qualcomm 4G module as the test module. The same as NL668-EU/EAU/AM.

3.2.1 Ping tests

When testing, there is a priority order. If there are specific requirements for internal and external networks, please adjust the metric values of each network and the DNS server settings.

For related settings regarding network card priority, please refer to the following link:

1. Set network adapter priority

2. Using udhcpc to specify DNS servers

3. Examples of how to use udhcpc

Now the system is connected to both a wired Gigabit network card and 4G, you can use the -I parameter to specify which network interface to start pinging from, as shown below:

ping www.mcuzone.com -I eth0

ping www.mcuzone.com -I usb0

1006_RPi0_4G_MiniPCIe_59.jpg

Priority can be checked by executing the route command; the network card with the smaller metric value will be preferred for communication.

1006_RPi0_4G_MiniPCIe_60.jpg

We can also force communication through another network by disabling a specific network card. For example, to disable usb0, you can execute the following command:

sudo ifconfig usb0 down

And enable usb0 by the following command:

sudo ifconfig usb0 up

3.2.2 Test speed by iperf3

You can download iperf3 (Windows version) in:

http://www.mcuzone.com/down/Software.asp?ID=10000634

Install iperf3 (Linux version) by using the following command:

sudo apt-get install iperf3

100M Ethernet speed test results:

It is about 92.3Mbps in client mode:

1006_RPi0_4G_MiniPCIe_06.jpg

It is about 94.8Mbps in server mode:

1006_RPi0_4G_MiniPCIe_07.jpg

Note: The USB to 100M Ethernet adapter may not reach full speed due to the performance limitations of the Zero 2W, the USB hub, and the bandwidth usage of the 4G Cat4.

3.2.3 4G network testing

Due to the performance limitations of Zero 2W, running browsers like Chromium for web page speed testing can make the system run very slowly. So we use the lightweight browser surf for speed testing.

Install the lightweight browser surf:

sudo apt install surf

Then turn off WiFi, unplug the Ethernet cable, leaving only the 4G network connection, and go to https://test.ustc.edu.cn/ for speed testing. Execute the following command in the Raspberry Pi terminal:

surf https://test.ustc.edu.cn

The results are as follows:

1006_RPi0_4G_MiniPCIe_47.jpg

Note: Network speed test results are affected by the network environment and testing methods. The actual speeds may vary; this test is for reference only.

3.3 AT Command for 4G

3.3.1 Open AT Command serial port

To operate 4G Module using AT commands on a Raspberry Pi, you first need to open the AT command serial port. The method to open it is as follows:(here use Qualcomm 4G for the demonstration)

To open ttyUSB serial port, input the following command: lsusb:

1006_RPi0_4G_MiniPCIe_08.jpg

Record the ID value of the 4G module: 05c6 90b6

Use the following command to open the ttyUSB serial port, where the value after echo is the ID recorded above:

sudo modprobe option

sudo sh -c 'echo 05c6 90b6 > /sys/bus/usb-serial/drivers/option1/new_id'

1006_RPi0_4G_MiniPCIe_09.jpg

After execution is complete, the system should have three additional devices: ttyUSB0, ttyUSB1, and ttyUSB2. Input ls /dev to view:

1006_RPi0_4G_MiniPCIe_10.jpg

Then Open serial port by serial port tool.

Install minicom:

sudo apt-get install minicom

1006_RPi0_4G_MiniPCIe_11.jpg

Open AT Command serial port by minicom:

sudo minicom -D /dev/ttyUSB0

1006_RPi0_4G_MiniPCIe_12.jpg

Then directly type the AT command and press Enter to see the result. If you need to view the echo, please type the command: ate1

1006_RPi0_4G_MiniPCIe_13.jpg

Note: The operation procedures are the same, but for different 4G models, the corresponding USB IDs will vary, so please refer to the actual USB ID using the lsusb command.

3.3.2 Common AT commands

1) Check if the SIM card is detected:

at+cpin?

Return ready to indicate the card has been recognized, if return error, you need to check the hardware.

2) Check antenna signal quality:

at+csq

Return values between 26 and 31 indicate a good signal, with 31 representing a full signal strength; return values between 20 and 25 indicate a barely acceptable signal; return values below 20 indicate a poor signal or that the antenna might not be connected.

3) Check network registration status:

at+cops?

Normally, it should return the network supporter's code: 7, where 7 represents 4G.

Note: The above command at+csq should not include a question mark, while the other two commands require a question mark.

4) View the SIM card's IMEI code:

at+cgsn

5) Reset 4G module (Sometimes, if you reinsert the SIM card, hot swapping may not work; in such cases, you can use this reset command to reset the module.):

at+reset

6) Disable radio frequency:

at+cfun=0

Enable radio frequency:

at+cfun=1

The two commands mentioned above can be used in pairs to allow the module to re-register with the network without restarting the 4G module.

3.4 Modify the IP address of the 4G

1) Qualcomm 4G/GPS,NL668-EU/EAU/AM, ZTE CAT4:

Set the 4G module's IP to directly obtain a public IP. Please execute the AT command:

Set the IP to public: AT+GTIPPASS=1

Set the IP to private: AT+GTIPPASS=0

Check whether the current IP is a public or private IP:AT+GTIPPASS?

2) CAT4 4G:

Execute the AT command:

AT+ROUTEIP=<newip>

Note: only addresses in the format of 192.168.x.1 are supported. If you set AT+ROUTEIP=192.168.3.1, the final IP address obtained will be 192.168.3.100. After making the changes, you need to power off and restart the system.

Query current IP: AT+ROUTEIP?, it returns two values, the first one is the old IP, and the second one is the new IP.

Test command: AT+ROUTEIP=?

3.5 GPS Testing

3.5.1 Qualcomm 4G-GPS and NL668-EU/EAU/AM

Execute the command lsusb, as shown in the figure below:

5002_CM5_Basic_59.jpg

Note down the ID of the 4G module: 1508 1001.

Use the following command to open the ttyUSB serial port, where the value following echo is the ID value recorded above:

sudo modprobe option

sudo sh -c 'echo 1508 1001 > /sys/bus/usb-serial/drivers/option1/new_id'

After executing the two commands above, the system should have three additional devices: ttyUSB0/1/2/3. You can check them by executing ls /dev/ttyUSB*:

5002_CM5_Basic_60.jpg

Execute minicom and open the ttyUSB1 serial port:

sudo minicom -D /dev/ttyUSB1

Then execute:

AT+GTGPSPOWER=1 //Open GPS

After executing successfully, open ttyUSB3:

sudo minicom -D /dev/ttyUSB3

You can then see that the serial port outputs GPS information; wait a moment for it to get a fix:

5002_CM5_Basic_61.jpg

3.5.2 EG25-GPS

Execute the command lsusb, as shown in the figure below:

5002_CM5_Basic_62.jpg

Note down the ID of the 4G module: 2c7c 0125.

Use the following command to open the ttyUSB serial port, where the value following echo is the ID value recorded above:

sudo modprobe option

sudo sh -c 'echo 2c7c 0125 > /sys/bus/usb-serial/drivers/option1/new_id'

After executing the two commands above, the system should have three additional devices: ttyUSB0/1/2/3. You can check them by executing ls /dev/ttyUSB*:

5002_CM5_Basic_63.jpg

Execute minicom and open the ttyUSB3 serial port:

sudo minicom -D /dev/ttyUSB3

Then execute:

AT+QGPS=1 //Open GPS

After executing successfully, open ttyUSB1:

sudo minicom -D /dev/ttyUSB1

You can then see that the serial port outputs GPS information; wait a moment for it to get a fix:

5002_CM5_Basic_64.jpg

IV. Work with OpenWrt

We are using the Raspberry Pi Zero 2W with CAT4 4G to demonstrate running OpenWrt, can be configured as a one-in-one-out switch mode. The 4G module on the expansion board can serve as the WAN port (for direct 4G internet access), while the Ethernet port is configured as the LAN port for connecting to a PC.

The OpenWrt which be used in this document is: openwrt-bcm27xx-bcm2709-rpi-2-squashfs-sysupgrade-linux-6.1.98-20240723.img.gz

4.1 Configure the system

Connect the Ethernet port of the expansion board to the PC's Ethernet port using an Ethernet cable. The 4G module requires a mobile SIM card to be inserted. Power on and start the system. We find Network and Internet settings in Windows, then open the connected network under Ethernet to view the default gateway IP address. This address is the backend configuration page address for the OpenWrt system. As shown in the figure, the address for this test is 192.168.198.1:

1006_RPi0_4G_MiniPCIe_14.jpg

Then open a web browser and enter 192.168.198.1 to access the OpenWrt system. The default username is root, and the default password is password:

1006_RPi0_4G_MiniPCIe_15.jpg

After logging into the OpenWrt system, click on "System - TTYD Terminal," then run lsusb to check if the 4G module is recognized. The red box in the image below indicates that the CAT4 4G module has been recognized.

1006_RPi0_4G_MiniPCIe_33.jpg

Execute the command ip addr to view all network devices. In the figure below, the No. 6, eth1 represents the network name of the CAT4 4G module. If you use NL668-AM/EU/EAU/Qualcomm 4G, this network name could be usb0. Please refer to the actual situation:

1006_RPi0_4G_MiniPCIe_49.jpg

4.2 ADD the 4G module

Click on "Network - Interfaces," and then click on "ADD NEW INTERFACE...".

1006_RPi0_4G_MiniPCIe_16.jpg

Set it up according to the following picture:

1006_RPi0_4G_MiniPCIe_21.jpg

If 4G is NL668-AM/EU/EAU/Qualcomm 4G, Set it up as follows:1006_RPi0_4G_MiniPCIe_17.jpg

In the "Firewall Settings", select the WAN and then click the "SAVE & APPLY" button:

1006_RPi0_4G_MiniPCIe_18.jpg

Go back to "Network - Interfaces", wait a moment, and you will see the newly created WAN interface has obtained an IP address. This way, the PC can access the internet through the 4G LTE module(in the two figures below, they are eth1 and usb0 respectively):

1006_RPi0_4G_MiniPCIe_22.jpg

1006_RPi0_4G_MiniPCIe_19.jpg

Open https://www.speedtest.cn/ on the PC to test speed. At this point, the PC can access the internet through the 4G LTE module, and the test results are as follows(CAT4 4G):

1006_RPi0_4G_MiniPCIe_23.jpg

V. Expansion board selection guide

1006_RPi0_4G_MiniPCIe_65.jpg

Contact Us

0001_x.jpg 0002_fb.jpg 0004_ytb.jpg 0003_bb.jpg 0005_qq.jpg QQ:8204136

Email: mcuzone@vip.qq.com

Tel: +86(0)13957118045

If there are any omissions, errors, or infringements on this page, please contact us through the above methods. Thank you!

Copyright 2004-2025 Wildchip

T