Updated Jul 2025
Cellular Interface Demo (Mutual Authentication)
Introduction
FreeRTOS offers a suite of networking stacks designed for IoT applications. Applications can access
communication protocols at different levels - MQTT, HTTP, Secure Sockets, etc. Common connectivity
technologies such as Ethernet, Wi-Fi and BLE have been integrated with the networking stacks of
FreeRTOS, with a wide selection of microcontrollers and modules
pre-integrated.
The demos in this project demonstrate how to establish mutually authenticated MQTT connections to MQTT brokers, such as AWS IoT Core, by using cellular connectivity. The demos use the Cellular Interface library sub-moduled from an external project. The Cellular Interface library exposes the capability of a few popular cellular modems through a uniform API.
The MQTT and HTTP libraries of FreeRTOS use an
abstract Transport Interface to send/receive data in a generic way. The demos
in this project offer
an implementation
of the Transport Interface on top of the uniform API exposed by the Cellular Interface library.
Hardware Setup
The demos in this project can be run in
the FreeRTOS Windows Simulator.
You will need a Windows PC and one of the supported cellular modems to run the demos. A version of Visual
Studio, such as the free Community version of Visual Studio,
will be needed to build the demos.
The FreeRTOS Windows simulator makes use of a COM port to communicate with the cellular module. Set up your cellular module communication with the following steps.
-
Connect the cellular module to your PC. Most cellular dev kits have a USB connector, so you can just connect it to your PC's USB port and look for the COM port in Window's Device Manager. For example, as shown below, you will see a new COM69 show up when you connect the modem. If your cellular dev kit does not have USB, use a USB adapter like one of these
.
-
Use Putty
or any other terminal tool to verify the connection with the cellular module. Refer to your cellular module's manual for settings like baud rate, parity, and flow control. In the terminal tool, enter "ATE1". The modem should return "OK". Depending on your modem setting, you may also see an echo of "ATE1" as well. Enter "AT". The modem should return "OK".
Components and Interfaces
This project makes use of five (5) sub-modules from other GitHub projects, shown as yellow boxes in the diagram below.

-
The Cellular Demo Application
is largely the same functionality as the coreMQTT demo
, with added logic to set up cellular as the transport. (The original coreMQTT demo was designed for Wi-Fi on the FreeRTOS Windows Simulator.)
-
The Transport Interface
is needed by the MQTT library (sub-moduled from the coreMQTT project) to send and receive packets.
-
The TLS porting interface
is needed by the mbedTLS library to run on FreeRTOS.
-
The Comm Interface
is used by the Cellular Interface library to communicate with cellular modems over a UART connection.
Developer References and API Documents
Please refer to the hosted doxygen.
Source Code Organization
The demo project files for Visual Studio are named <xyz>_mqttmutual_auth_demo.sln, where _xyz
is the name of the cellular modem. They can be found in
the FreeRTOS_Cellular_Interface_Windows_Simulator
repository on GitHub in the following directories:
1./FreeRTOS-Plus2├── Demo3│ ├── FreeRTOS_Cellular_Interface_Windows_Simulator4│ │ ├── Common5│ │ │ ├── FreeRTOSConfig.h6│ │ │ ├── FreeRTOSIPConfig.h7│ │ │ ├── MutualAuthMQTTExample.c8│ │ │ ├── cellular_platform.c9│ │ │ ├── cellular_platform.h10│ │ │ ├── cellular_setup.c11│ │ │ ├── comm_if_windows.c12│ │ │ ├── core_mqtt_config.h13│ │ │ ├── main.c14│ │ │ └── mbedtls_config.h15│ │ ├── MQTT_Mutual_Auth_Demo_with_BG96 ( demo project for Quectel BG96 )16│ │ │ ├── WIN32.vcxproj17│ │ │ ├── WIN32.vcxproj.filters18│ │ │ ├── WIN32.vcxproj.user19│ │ │ ├── cellular_config.h20│ │ │ ├── demo_config.h21│ │ │ └── mqtt_mutual_auth_demo_with_bg96.sln22│ │ ├── MQTT_Mutual_Auth_Demo_with_HL7802 ( demo project for Sierra Wireless HL7802 )23│ │ └── MQTT_Mutual_Auth_Demo_with_SARA_R4 ( demo project for U-Blox Sara-R4 )24│ │25├── Source26│ ├── Application-Protocols27│ │ ├── coreMQTT ( submodule : coreMQTT )28│ ├── FreeRTOS-Cellular-Interface ( submodule : FreeRTOS-Cellular-Interface )29│ ├── FreeRTOS-Cellular-Modules30│ │ ├── bg96 ( submodule : Lab-FreeRTOS-Cellular-Interface-Reference-Quectel-BG96 )31│ │ ├── hl7802 ( submodule : Lab-FreeRTOS-Cellular-Interface-Reference-Sierra-Wireless-HL7802 )32│ │ └── sara-r4 ( submodule : Lab-FreeRTOS-Cellular-Interface-Reference-ublox-SARA-R4 )33│ ├── Utilities34│ │ ├── backoff_algorithm ( submodule : backoffAlgorithm )35│ │ ├── logging36│ │ ├── mbedtls_freertos37│ │ │ ├── mbedtls_bio_freertos_cellular.c38│ │ │ └── ( code for adapting mbedtls with cellular socket )39│ │ │ ├── mbedtls_bio_freertos_plus_tcp.c40│ │ │ ├── mbedtls_freertos_port.c41│ │ │ └── threading_alt.h42├── ThirdParty43│ ├── mbedtls ( submodule : mbedtls )44
Configure the Application Settings
Configure the cellular network
The following parameters in the cellular
configuration, cellular_config.h, (located
in "MQTT_Mutual_Auth_Demo_with_<cellular_module>/cellular_config.h") must be modified for your
network environment.
Configuration | Description | Value |
---|---|---|
CELLULAR_COMM_INTERFACE_PORT | The cellular communication interface makes use of a COM port on your computer to communicate with the cellular module on the Windows simulator. | Your COM port connected to the cellular module. |
CELLULAR_APN | The default APN | Specify the value according to your network operator. |
CELLULAR_PDN_CONTEXT_ID | PDN context id for the cellular network. | The default value is CELLULAR_PDN_CONTEXT_ID_MIN. |
CELLULAR_PDN_CONNECT_TIMEOUT | PDN connect timeout for network registration. | The default value is 100000 milliseconds. |
Configure the MQTT broker
The configuration to connect to an MQTT broker can be found in the demo
configuration, demo_config.h, (located
in "MQTT_Mutual_Auth_Demo_with_<cellular_module>/demo_config.h"). Refer to the documentation
for the MQTT Mutual Authentication Demo)
for more information.
Configure the COM port settings
Refer to your cellular module's documentation for COM port settings. Update the settings
in comm_if_windows.c
if necessary.
Configure the other sub-modules
"FreeRTOSConfig.h", "mbedtls_config.h" and "core_mqtt_config.h" (located in "MQTT_Mutual_Auth_Demo_with_<cellular_module>) contain configurations for their corresponding sub-modules.
Demo Execution Step flow
The demo app performs three types of operations. By searching for the names of the functions in the diagram below, you can find the exact places these operations are performed in the source code.
-
Register to a cellular network. (See cellular_setup.c
.)
-
Establish a secure connection to AWS IoT with the MQTT broker. (See using_mbedtls.c
.)
-
Perform MQTT operations. (See MutualAuthMQTTExample.c
.)
The following diagram illustrates the interactions between the demo app and other components.
Demo Flow Click image to enlarge
Build and run the MQTT mutual authentication demo
-
In Visual Studio, open one of the mqtt_mutual_auth_demo.sln projects that matches your cellular modem.
-
Set up an Amazon Web Services account and register a device as an AWS IoT thing on AWS IoT Core. See Using the AWS IoT message broker in the coreMQTT Mutual Authentication Demo for more details.
-
Configure the thing Name, AWS IoT thing Endpoint and setup the credentials in demo_config.h
, (located in "MQTT_Mutual_Auth_Demo_with_<cellular_module>/demo_config.h").
-
Compile and run.
The following is the console output of a successful execution of the bg96_mqtt_mutual_auth_demo.sln project.
1[INFO] [CELLULAR] [commTaskThread:287] Cellular commTaskThread started2>>> Cellular SIM okay <<<3>>> Cellular GetServiceStatus failed 0, ps registration status 0 <<<4>>> Cellular module registered <<<5>>> Cellular module registered, IP address 10.160.13.238 <<<6[INFO] [MQTTDemo] [prvConnectToServerWithBackoffRetries:583] Creating a TLS connection to xxxxx-ats.iot.us-west-2.amazonaws.com:8883.78[INFO] [MQTTDemo] [MQTTDemoTask:465] Creating an MQTT connection to xxxxx-ats.iot.us-west-2.amazonaws.com.910[INFO] [MQTTDemo] [prvCreateMQTTConnectionWithBroker:683] An MQTT connection is established with XXXXXXXXXX-ats.iot.us-west-2.amazonaws.com.11[INFO] [MQTTDemo] [prvMQTTSubscribeWithBackoffRetries:741] Attempt to subscribe to the MQTT topic testClient13:24:47/example/topic.1213[INFO] [MQTTDemo] [prvMQTTSubscribeWithBackoffRetries:748] SUBSCRIBE sent for topic testClient13:24:47/example/topic to broker.141516[INFO] [MQTTDemo] [prvMQTTProcessResponse:872] Subscribed to the topic testClient13:24:47/example/topic with maximum QoS 1.1718[INFO] [MQTTDemo] [MQTTDemoTask:479] Publish to the MQTT topic testClient13:24:47/example/topic.1920[INFO] [MQTTDemo] [MQTTDemoTask:485] Attempt to receive publish message from broker.2122[INFO] [MQTTDemo] [prvMQTTProcessResponse:853] PUBACK received for packet Id 2.2324[INFO] [MQTTDemo] [MQTTDemoTask:490] Keeping Connection Idle...252627[INFO] [MQTTDemo] [MQTTDemoTask:479] Publish to the MQTT topic testClient13:24:47/example/topic.2829[INFO] [MQTTDemo] [MQTTDemoTask:485] Attempt to receive publish message from broker.3031[INFO] [MQTTDemo] [prvMQTTProcessIncomingPublish:908] Incoming QoS : 13233[INFO] [MQTTDemo] [prvMQTTProcessIncomingPublish:919]34Incoming Publish Topic Name: testClient13:24:47/example/topic matches subscribed topic.35Incoming Publish Message : Hello World!36