You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|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 |
2409
2409
2410
2410

2411
2411
@@ -2419,10 +2419,10 @@ FROM debian:latest
2419
2419
2420
2420
# Install necessary packages
2421
2421
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/*
2426
2426
2427
2427
# Set the working directory
2428
2428
WORKDIR /app
@@ -2574,7 +2574,25 @@ void loop() {
2574
2574
}
2575
2575
```
2576
2576
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:
0 commit comments