Detailed Description

Macros

#define CONFIG_AT_SEND_EOL   "\r"
 End of line character to send after the AT command. More...
 
#define CONFIG_AT_SEND_SKIP_ECHO
 Enable this to disable check for echo after an AT command is sent. More...
 
#define AT_RECV_EOL_1   "\r"
 1st end of line character received (S3 aka CR character for a modem). More...
 
#define AT_RECV_EOL_2   "\n"
 1st end of line character received (S4 aka LF character for a modem). More...
 
#define CONFIG_AT_RECV_OK   "OK"
 default OK reply of an AT device. More...
 
#define CONFIG_AT_RECV_ERROR   "ERROR"
 default ERROR reply of an AT device. More...
 
#define CONFIG_AT_BUF_SIZE_EXP   (7U)
 Default buffer size used to process unsolicited result code data. More...
 

Macro Definition Documentation

◆ AT_RECV_EOL_1

#define AT_RECV_EOL_1   "\r"

1st end of line character received (S3 aka CR character for a modem).

Definition at line 105 of file at.h.

◆ AT_RECV_EOL_2

#define AT_RECV_EOL_2   "\n"

1st end of line character received (S4 aka LF character for a modem).

Definition at line 112 of file at.h.

◆ CONFIG_AT_BUF_SIZE_EXP

#define CONFIG_AT_BUF_SIZE_EXP   (7U)

Default buffer size used to process unsolicited result code data.

(as exponent of 2^n).

As the buffer size ALWAYS needs to be power of two, this option represents the exponent of 2^n, which will be used as the size of the buffer.

Definition at line 140 of file at.h.

◆ CONFIG_AT_RECV_ERROR

#define CONFIG_AT_RECV_ERROR   "ERROR"

default ERROR reply of an AT device.

Definition at line 126 of file at.h.

◆ CONFIG_AT_RECV_OK

#define CONFIG_AT_RECV_OK   "OK"

default OK reply of an AT device.

Definition at line 119 of file at.h.

◆ CONFIG_AT_SEND_EOL

#define CONFIG_AT_SEND_EOL   "\r"

End of line character to send after the AT command.

Definition at line 90 of file at.h.

◆ CONFIG_AT_SEND_SKIP_ECHO

#define CONFIG_AT_SEND_SKIP_ECHO

Enable this to disable check for echo after an AT command is sent.

Definition at line 98 of file at.h.