FAQ

Can't find the answer you're looking for? We've shared some of our most frequently asked questions to help you out!

Which SIM cards can I use with this HAT?

It depends on the mini PCIe module connected to the HAT. Any SIM compatible with the module could be used. Module OEM site would provide more details on it.

Is the external power port already soldered?

There is a new footprint for a surface mount right-angle JST connector on the bottom of the board for external 5V sources. The connector doesn't come with the HAT.

How much is the internet speed?

This depends on the module you are using with the HAT. Please check the datasheet of the module to be used.

Is it possible to use with USB without using GPIO pins?

Yes, it can be used standalone over the micro USB, with or without stacking on the Raspberry Pi.

How do I use the UART connection?

To use the UART follow the steps mentioned in the UART guide.

Is it possible to stack two of the HATs?

Yes, you can stack two or more of the HATs with your Raspberry Pi.

Is there a way to use the HAT without using the USB cable at all?

Yes, the Base HAT can be used via UART with Quectel modules. Not applicable for Telit modules.

Can the Base HAT be used standalone via USB?

Yes, the Base HAT can be used standalone via USB but the functionalities provided by the GPIOs can not be utilized.

Can I send AT command via USB?

Yes, you can send AT commands via USB.

Which versions of the Raspberry Pi are HAT compatible with?

The HAT is compatible with all Raspberry Pi which contains a 40W GPIO header.

Can I use it with other USB Cable?

Yes, you can but we don't recommend the usage of long and low-quality micro USB cables between Base HAT and Raspberry Pi. It causes data and power loss. Thus, the cable included the package works greatly.

Which 3G, 4G & LTE modules are Base HAT compatible with?

You can look at the compatible modules from the technical details page.

Which variant of the Quectel EC25 module should I use with the HAT?

First, find the region in the list of variants. If you don't find it in the list, please compare the LTE Bands with that of your region.

Is it possible to use this HAT to send a message (SMS)? How can I do it?

Yes, you can use AT commands to send SMS. Please refer to the AT manual of AT commands related to SMS for the module you are using.

Which operating systems does it work compatible with?

This depends on the module you are using with the HAT. Please check the datasheet of the module to be used.

Is there any way to reset the module on the HAT without resetting the Raspberry Pi?

The GPIO26 of the HAT can be pulled HIGH and brought to LOW in order to reset the module. This pin can also be used to power off the HAT by pulling it to HIGH.

What is the maximum current, this HAT needs?

The current consumption depends on the module you will be using with the HAT. Please check the datasheet of the module that will be used, for power consumption details.

Is it possible to use it with PoE Hat?

Yes, it possible.

Can I power the both the HAT and the Raspberry Pi through the JST connector?

Yes, the power supply through the JST connector can power both the HAT and the Raspberry Pi.

Can I power both Raspberry Pi and the HAT only through the Raspberry Pi USB power supply?

Yes, powering the Raspberry Pi is enough. It will power the attached HAT on it.

Does QMI works via UART?

No, QMI works via USB only.

Is VoLTE possible on the Base HAT?

Check that it is supported by the module used with Base HAT. and make sure it can be done with the SIM card you are using.

Which one among PPP & QMI should I select?

PPP is a data layer communication protocol that is established through the serial port of the modem. These Serial port communication could be either the UART(/dev/ttyS0) or the serial exposed to USB(/dev/ttyUSB3). This serial is also used for both modem commands (AT commands) and responses. This connection is established by dial-up (ATD*99#).

PPP is easy to establish, widely used protocol, and flexible with the devices. PPP may show a drop of the connection while using the AT command set for other functionality of modem.

The LTE radio protocol has native support of TCP/IP and IPv6, so there is no need to actually wrap TCP/IP into PPP over the radio interface. The PPP protocol is just used between the computer and the modem to make the connection look like a legacy dial-up modem-based network connection.
To get rid of the legacy cruft, newer ways to present USB-connected LTE modems like QMI and MBIM have been developed.

Quectel modules offer QMI(Qualcomm MSM Interface) which is established as a real network interface, such as ethernet(typically shows as wwan0). The QMI is also counted among the non-AT protocols which are communicated over /dev/cdc-wdm0 port.

In order to establish a connection, proper qmi/gobinet proxy should be installed, which again depends on the chipset of the module/modem and the kernel of Linux, gets a bit complicated. The QMI offers a more accessible and faster connection compared to the PPP protocol.

We recommend QMI, if you are looking for a faster connection, and for a longer duration.

If you need to establish an internet connection for a short period of time and the date to be transferred is not high, you may stick to PPP.