ARK M.2 LTE
This guide will help you set up the ARK Jetson PAB Carrier with the RC7611 LTE module.
Prerequisites
A nano-SIM card with a data plan.
The ARK M.2 LTE module.
Correct antennas connected
A Kernel with QMI_WWAN support (already included in the ARK Jetson Kernel)
1. Install the Nano-SIM
Insert the nano-SIM into the ARK M.2 LTE module.
2. Build and Flash the Kernel
Skip this step if you purchased a pre-flashed ARK Jetson Bundle.
The RC7611 requires the QMI_WWAN kernel module, which is not included by default in Jetpack 6. You will need to manually build and flash the kernel onto the Jetson device.
Clone the kernel repository:
Use the setup_source_build.sh script to enable the necessary kernel modules.
Once the kernel is built and flashed, boot up the Jetson device.
3. Connect to the Device
Connect a Micro USB cable and SSH in:
4. Determine the Modem Instance Number
Run the following command to list the modem instances:
You should see something like:
/org/freedesktop/ModemManager1/Modem/0 [Sierra Wireless, Incorporated] RC7611
Take note of the instance number of the modem (in this case, 0
).
5. Configure Initial EPS Bearer Settings
Set the initial EPS bearer settings to register the device with the network:
T-Mobile APN: fast.t-mobile.com
AT&T APN: broadband
If successful, it will print:
Successfully set initial EPS bearer properties
6. Connect the Modem to the Network
Run the following command to connect your device to the network. For example using T-Mobile:
If successful, it will print:
Successfully connected the modem
7. Verify the Modem Status
To check the modem’s status, run:
Ensure that the state is connected and the packet service state is attached. Note the first Bearer path at the bottom to determine the Bearer Index:
Bearer | paths: /org/freedesktop/ModemManager1/Bearer/1
In our case the Bearer Index is 1.
8. Query Bearer Settings
Use the index of the first bearer path to query the bearer settings.
Take note of the IPv4 configuration
9. Set Up the Wireless Interface
Use the values from the above IPv4 configuration for address, prefix, gateway, and mtu.
Bring up the wwan0 interface:
Assign the IP address:
Disable ARP on wwan0:
Set the MTU:
Add a default route:
The metric option ensures links like WiFi or Ethernet are prioritized ahead of LTE
10. Configure DNS (Optional)
To use the DNS servers provided by the cellular connection, run the following commands:
11. Test the Connection
Troubleshooting
Modem not registering? Double-check the APN value.
Modem not detected? Ensure the required kernel modules are enabled.
SIM card inactive? Make sure your SIM has a valid data plan.
3D Model
Find the 3D model at https://github.com/ARK-Electronics/ARK_M.2_LTE
Last updated