Skip to content

Commit ebb20fb

Browse files
committed
Tutorial content update
1 parent c3624eb commit ebb20fb

File tree

1 file changed

+8
-10
lines changed
  • content/hardware/04.pro/carriers/portenta-mid-carrier/tutorials/user-manual

1 file changed

+8
-10
lines changed

content/hardware/04.pro/carriers/portenta-mid-carrier/tutorials/user-manual/content.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2340,15 +2340,15 @@ For more details on how the library works, including a comprehensive guide on se
23402340

23412341
#### AT Commands Utility
23422342

2343-
This section explains using AT commands to interact with the Cat.4 modem. These instructions will guide you through setting up your environment, sending AT commands, and managing your modem effectively.
2344-
23452343
AT commands, also known as Hayes commands, are instructions used to control modems. These commands allow you to perform various functions, such as checking the modem status, signal quality, and network registration. Understanding how to send these commands is essential for managing and troubleshooting your Arduino Pro 4G Module.
23462344

2345+
This section explains using AT commands to interact with the Cat.4 modem. These instructions will guide you through setting up your environment, sending AT commands, and managing your modem effectively.
2346+
23472347
#### Using Linux
23482348

2349-
This section provides instructions on using **ModemManager** and **mmcli** to send AT commands to your Cat.4 modem on the Portenta X8.
2349+
This subsection provides instructions on using **ModemManager** and **mmcli** to send AT commands to your Cat.4 modem on the Portenta X8.
23502350

2351-
Ensure that the Pro 4G Module is properly mounted on the Portenta Mid Carrier and that the Portenta X8 recognizes it. You can always use the following commands to verify the connection:
2351+
Ensure that the Pro 4G Module is properly mounted on the Portenta Mid Carrier and that the Portenta X8 recognizes it. You can verify the connection using the following command:
23522352

23532353
```bash
23542354
lsusb
@@ -2362,21 +2362,21 @@ First identify the modem with:
23622362
mmcli -L
23632363
```
23642364

2365-
The output will list the modems detected as the Pro 4G Module. Note the modem's device ID, for example:
2365+
The output will list the detected modems, including the Pro 4G Module. Note the modem's device ID, for example:
23662366

23672367
```bash
23682368
/org/freedesktop/ModemManager1/Modem/0
23692369
```
23702370

23712371
![Arduino Pro 4G Module - AT Commands](assets/portentaMIDcarrier_mpcie_4gmodem_at1.png)
23722372

2373-
To send AT commands, *ModemManager* must be in debug mode.
2373+
To send AT commands, *ModemManager* must be in debug mode:
23742374

23752375
```bash
23762376
sudo systemctl stop ModemManager
23772377
```
23782378

2379-
The command below starts *ModemManager* in the background and redirects its output to a log file.
2379+
The following command starts *ModemManager* in the background and redirects its output to a log file:
23802380

23812381
```bash
23822382
sudo ModemManager --debug > /var/log/modemmanager.log 2>&1 &
@@ -2408,9 +2408,7 @@ You can now start sending AT commands. Here are a few basic AT commands to test
24082408

24092409
***For complete information on AT commands compatible with the Pro 4G Module, please refer to the [AT Commands Manual](assets/Quectel_EC2x&EG9x&EG2x-G&EM05_Series_AT_Commands_Manual_V2.0.pdf).***
24102410

2411-
Using **`mmcli`**, you can easily send AT commands to your Cat.4 modem to perform various tasks like checking the modem status, signal quality, and network registration. This method provides a straightforward way to interact with your modem from a Linux environment, whether you are performing a simple check or managing more advanced functions.
2412-
2413-
Following these steps, you can effectively manage and troubleshoot your modem using AT commands in the Linux environment.
2411+
The **`mmcli`** tool allows you to send AT commands to your Cat.4 modem from a Linux environment to check modem status, signal quality, and network registration. You can manage and troubleshoot the Pro 4G Module using AT commands in the Portenta X8's Linux environment by following the above steps.
24142412

24152413
#### Using Arduino
24162414

0 commit comments

Comments
 (0)