Cellular at modem integration
Skill easyzoom/aix-skills/skills/cellular-at-modem-integration
Reusable Agent Skills for embedded systems, MCU debugging, firmware workflows, and AI automation. (嵌入式、MCU 调试、固件流程与 AI 自动化的可复用 Agent Skills 集合)。
npx -y skills add easyzoom/aix-skills --skill cellular-at-modem-integrationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 22 stars22 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when integrating or debugging cellular AT modems (Quectel, SIMCom, u-blox) over UART for CREG/CEREG registration, CGDCONT APN/PDP, TCP/UDP sockets, or URC parsing
SKILL.md
5.4 KB, as published. Nobody here has run it
Cellular AT Modem Integration
Overview
Use this skill to drive a 2G/4G/NB-IoT/LTE-M cellular modem from an MCU over UART with the AT command set. The hard parts are parsing unsolicited result codes (URCs) that interleave with command responses on one serial line, choosing the right registration command per radio access technology, using the correct socket command set for the specific module family, and getting PWRKEY boot timing right before any AT works.
When To Use
Use this skill when:
- The user integrates Quectel (
EC25,BG96,BC66), SIMCom (SIM7600,SIM800C,A7670), or u-blox (SARA-R4,SARA-R5) over UART. - The issue involves registration (
AT+CPIN?,AT+CSQ,AT+CREG?,AT+CGREG?,AT+CEREG?), APN/PDP (AT+CGDCONT,AT+CGATT,AT+CGACT), or sockets (AT+QIOPEN,AT+QISEND,AT+CIPSTART/AT+CIPOPEN,AT+USOCO). - URCs such as
RING,+CMTI, or+QIURCcorrupt command parsing, or power saving (AT+CPSMS,AT+CEDRXS) breaks reachability.
Do not use this skill when the UART link itself is unproven; confirm the modem echoes AT with OK at the configured baud first.
First Questions
Ask for:
- Exact module and firmware revision (
ATI,AT+CGMR), and radio technology: 2G, LTE Cat-1, Cat-4, Cat-M1, or NB-IoT. - UART wiring: baud, flow control (RTS/CTS), and whether
PWRKEY/reset lines are MCU-controlled. - SIM type and the operator APN (some IoT SIMs need username/password or a specific
<PDP_type>). - Transport goal: raw TCP/UDP, or bridging to MQTT/TLS on top of the socket AT layer.
- Current failing command and its literal response or error code.
Integration Checklist
-
Bring up the modem. Assert
PWRKEYfor the module's specified pulse width, wait for boot (often signalled by anRDYURC), then confirmATreturnsOKand disable echo withATE0. -
Unlock and check signal.
AT+CPIN?must return+CPIN: READY;AT+CSQRSSI must be non-99(0-31 valid). SetAT+CFUN=1if radio is off. -
Confirm registration on the right command. Use
AT+CREG?for 2G/CS registration,AT+CGREG?for GPRS/PS, andAT+CEREG?for LTE/Cat-M1/NB-IoT (EPS).<stat>must be1(home) or5(roaming). -
Define and activate the PDP context.
AT+CGDCONT=1,"IP","<apn>", thenAT+CGATT=1to attach andAT+CGACT=1,1to activate. Verify an assigned IP withAT+CGPADDR. -
Open the socket with the correct vendor stack for the module family.
- Quectel (
EC25/BG96/BC66):AT+QIOPEN, thenAT+QISEND/AT+QIRD/AT+QICLOSE. - SIMCom 2G (
SIM800-class):AT+CIPSTART, thenAT+CIPSEND(write payload after>, terminate withCtrl+Z0x1A). - SIMCom LTE (
SIM7600/A76XX-class):AT+NETOPENfirst, thenAT+CIPOPENto open a socket andAT+CIPSENDto send (AT+CIPSEND=<link>,<len>takes an explicit length; noCtrl+Zwhen a length is given). Read buffered data withAT+CIPRXGET; close withAT+CIPCLOSE/AT+NETCLOSE. - u-blox (
SARA):AT+USOCRto create,AT+USOCOto connect,AT+USOWRto write,AT+USORDto read,AT+USOCLto close.
- Quectel (
-
Build a URC-aware parser. Run a line-based state machine that classifies each line as echo, intermediate (
>), final (OK/ERROR/+CME ERROR), or URC (RING,+CMTI:,+QIURC:), and route URCs to callbacks instead of the command waiter.
Common Failures
- Sending AT before boot completes; commands are dropped until the
RDYURC or a fixed power-on delay elapses. - Checking
AT+CREG?on an LTE-only module that only registers via+CEREG, so registration looks stuck at0,2. - Registration fails from wrong APN, disabled radio (
AT+CFUN=0), locked SIM, or poor signal (+CSQ: 99,99). - Using the wrong socket stack: sending
AT+CIPSTARTto aSIM7600/A76XXmodule (which needsAT+NETOPEN+AT+CIPOPEN), or forgettingAT+NETOPENbeforeAT+CIPOPEN. - Fixed read timeout truncates variable-length responses like
AT+QIRDor a slowAT+COPS=?scan. - URC (e.g.
+QIURC: "recv") arrives mid-response and the parser mistakes it for the command reply, causing a parse race. AT+CIPSENDon aSIM800-class module sent without theCtrl+Zterminator, so the modem waits forever at the>prompt.- After
AT+CPSMS/AT+CEDRXSthe module sleeps and drops the socket; sending during PSM fails until wake and re-attach.
Verification
Before claiming the link works:
- State the module, technology, APN, and which registration command applies.
- Confirm
+CPIN: READY, a valid+CSQ, and<stat>=1or5on the correctCxREG. - Confirm
AT+CGPADDRshows an IP before opening any socket. - Send a round-trip TCP payload and confirm the receive path for the module family (
+QIURC: "recv"/AT+QIRD, or+CIPRXGET, or+USORD). - Prove the URC parser handles an unsolicited
RING/+CMTIarriving during a command without desync. - If PSM/eDRX is enabled, confirm wake, re-registration, and data resume.
Example
User:
BG96 用 AT+CEREG? 一直返回 0,2,连不上网,该怎么查?
Agent:
- Confirms boot done,
ATE0set, then checksAT+CPIN?=READYandAT+CSQis not99. - Verifies
AT+CFUN=1and the APN viaAT+CGDCONT?; fixes APN if wrong for the IoT SIM. - Waits for
+CEREG: 0,1/0,5, then runsAT+CGACT=1,1andAT+CGPADDRbefore opening a socket withAT+QIOPEN.