#include <zephyr/types.h>
#include <stddef.h>
#include <ctype.h>
Go to the source code of this file.
|
static bool | is_notification (char chr) |
| Check if character is a notification start character.
|
|
static bool | is_valid_command_char (char chr) |
| Verify that the character is a valid character.
|
|
static bool | is_valid_notification_char (char chr) |
| Verify that the character is a valid character.
|
|
static bool | is_terminated (char chr) |
| Check if the character identifies the end of the buffer.
|
|
static bool | is_separator (char chr) |
| Check if character is a valid AT string separator.
|
|
static bool | is_lfcr (char chr) |
| Check if character linefeed or carry return characters.
|
|
static bool | is_dblquote (char chr) |
| Check if character is a double quote character.
|
|
static bool | is_array_start (char chr) |
| Check if character is an array start character.
|
|
static bool | is_array_stop (char chr) |
| Check if character is an array stop character.
|
|
static bool | is_number (char chr) |
| Check if character is a number character (including + and -)
|
|
static bool | is_command (const char *str) |
| Check if a string is a beginning of an AT command.
|
|
static bool | is_clac (const char *str) |
| Check if a string is a beginning of an AT CLAC response.
|
|