Skip to content

Commit d6ef907

Browse files
committed
User manual content update
1 parent f2c7643 commit d6ef907

File tree

7 files changed

+34
-16
lines changed

7 files changed

+34
-16
lines changed
6.38 KB
Loading
Loading
Loading
Loading
Loading
Loading

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

Lines changed: 34 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2395,17 +2395,17 @@ sudo mmcli -m /org/freedesktop/ModemManager1/Modem/0 --command="ATI"
23952395

23962396
You can now start sending AT commands. Here are a few basic AT commands to test the modem:
23972397

2398-
| **AT Command** |                                       **Description** |
2399-
|:--------------: |:------------------------------------------------------------------------------------------: |
2400-
| ATI             | Retrieves the modem's basic information, such as manufacturer, model, and firmware version.  |
2401-
| AT+CSQ          | Checks the signal quality of the modem                                                      |
2402-
| AT+GMI          | Retrieves the manufacturer identification                                                   |
2403-
| AT+GMM          | Retrieves the model identification of the modem                                             |
2404-
| ATV             | Displays the active configuration profile                                                   |
2405-
| AT+CGMR         | Retrieves the firmware version of the modem                                                 |
2406-
| AT+CPAS         | Reports the current status of the modem                                                     |
2407-
| AT+CEER         | Provides detailed information on the last error cause                                       |
2408-
| AT+QNWINFO      | Retrieves the current network information                                                   |
2398+
| **AT Command** | **Description** |
2399+
|:--------------:|:-------------------------------------------------------------------------------------------:|
2400+
| ATI | Retrieves the modem's basic information, such as manufacturer, model, and firmware version. |
2401+
| AT+CSQ | Checks the signal quality of the modem |
2402+
| AT+GMI | Retrieves the manufacturer identification |
2403+
| AT+GMM | Retrieves the model identification of the modem |
2404+
| ATV | Displays the active configuration profile |
2405+
| AT+CGMR | Retrieves the firmware version of the modem |
2406+
| AT+CPAS | Reports the current status of the modem |
2407+
| AT+CEER | Provides detailed information on the last error cause |
2408+
| AT+QNWINFO | Retrieves the current network information |
24092409

24102410
![Arduino Pro 4G Module - AT Commands Test](assets/portentaMIDcarrier_mpcie_4gmodem_at3.png)
24112411

@@ -2419,10 +2419,10 @@ FROM debian:latest
24192419
24202420
# Install necessary packages
24212421
RUN apt-get update && \
2422-
apt-get install -y modemmanager && \
2423-
apt-get install -y mmcli && \
2424-
apt-get clean && \
2425-
rm -rf /var/lib/apt/lists/*
2422+
apt-get install -y modemmanager && \
2423+
apt-get install -y mmcli && \
2424+
apt-get clean && \
2425+
rm -rf /var/lib/apt/lists/*
24262426
24272427
# Set the working directory
24282428
WORKDIR /app
@@ -2574,7 +2574,25 @@ void loop() {
25742574
}
25752575
```
25762576

2577-
This example allows you to send raw AT commands to the Pro 4G Module using the Arduino IDE with the Portenta H7 and Portenta C33. The script requires the **arduino_secrets.h** file to be defined with the following credentials:
2577+
This example allows you to send raw AT commands to the Pro 4G Module using the Arduino IDE with the Portenta H7 and Portenta C33.
2578+
2579+
To send AT commands with the Arduino IDE, please use the **Message** space within the **Serial Monitor** and enter commands that follows after **`AT`**. For example:
2580+
2581+
| **AT Command** | **AT Command Input Format** |
2582+
|:--------------:|:---------------------------:|
2583+
| ATI | I |
2584+
| AT+CSQ | +CSQ |
2585+
| AT+GMI | +GMI |
2586+
| AT+GMM | +GWM |
2587+
| ATV | V |
2588+
| AT+CGMR | +CGMR |
2589+
| AT+CPAS | +CPAS |
2590+
| AT+CEER | +CEER |
2591+
| AT+QNWINFO | +QNWINFO |
2592+
2593+
***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).***
2594+
2595+
The script requires the **arduino_secrets.h** file to be defined with the following credentials:
25782596

25792597
- SIM Card PIN Number
25802598
- GPRS APN

0 commit comments

Comments
 (0)