21 #include "platform/mbed_retarget.h" 23 #include "events/EventQueue.h" 24 #include "nsapi_types.h" 36 #define AT_HANDLER_MUTEX 38 #if defined AT_HANDLER_MUTEX && defined MBED_CONF_RTOS_PRESENT 39 #include "ConditionVariable.h" 46 extern const char *OK;
47 extern const char *CRLF;
52 enum DeviceErrorType {
53 DeviceErrorTypeNoError = 0,
55 DeviceErrorTypeErrorCMS,
56 DeviceErrorTypeErrorCME
61 DeviceErrorType errType;
103 const char *delimiter, uint16_t send_delay,
bool debug_on);
151 void inc_ref_count();
157 void dec_ref_count();
170 void set_at_timeout(uint32_t timeout_milliseconds,
bool default_timeout =
false);
177 static void set_at_timeout_list(uint32_t timeout_milliseconds,
bool default_timeout =
false);
181 void restore_at_timeout();
207 void set_is_filehandle_usable(
bool usable);
214 bool sync(
int timeout_ms);
220 void set_send_delay(uint16_t send_delay);
224 #if defined AT_HANDLER_MUTEX && defined MBED_CONF_RTOS_PRESENT 234 void remove_urc_handler(
const char *prefix);
240 int _last_3gpp_error;
242 uint16_t _oob_string_max_length;
243 char *_output_delimiter;
252 uint32_t _at_timeout;
253 uint32_t _previous_at_timeout;
255 uint16_t _at_send_delay;
256 uint64_t _last_response_stop;
271 virtual void cmd_start(
const char *cmd);
283 void cmd_start_stop(
const char *cmd,
const char *cmd_chr,
const char *format =
"", ...);
295 nsapi_error_t at_cmd_str(
const char *cmd,
const char *cmd_chr,
char *resp_buf,
size_t resp_buf_size,
const char *format =
"", ...);
306 nsapi_error_t at_cmd_int(
const char *cmd,
const char *cmd_chr,
int &resp,
const char *format =
"", ...);
316 nsapi_error_t at_cmd_discard(
const char *cmd,
const char *cmd_chr,
const char *format =
"", ...);
325 void write_int(int32_t param);
334 void write_string(
const char *param,
bool useQuotations =
true);
343 void cmd_stop_read_resp();
353 size_t write_bytes(
const uint8_t *data,
size_t len);
361 void set_stop_tag(
const char *stop_tag_seq);
368 void set_delimiter(
char delimiter);
372 void set_default_delimiter();
378 void use_delimiter(
bool use_delimiter);
384 void skip_param(uint32_t count = 1);
391 void skip_param(ssize_t len, uint32_t count);
399 ssize_t read_bytes(uint8_t *buf,
size_t len);
409 ssize_t read_string(
char *str,
size_t size,
bool read_even_stop_tag =
false);
420 ssize_t read_hex_string(
char *str,
size_t size);
428 void write_hex_string(
char *str,
size_t size);
444 void resp_start(
const char *prefix = NULL,
bool stop =
false);
474 bool info_elem(
char start_tag);
480 bool consume_to_stop_tag();
485 int get_3gpp_error();
497 void set_debug(
bool debug_on);
504 bool get_debug()
const;
510 static void set_debug_list(
bool debug_on);
515 char _recv_buff[BUFF_SIZE];
526 enum ScopeType {RespType, InfoType, ElemType, NotSet};
527 void set_scope(ScopeType scope_type);
528 ScopeType _current_scope;
548 bool _prefix_matched;
554 size_t _max_resp_length;
557 char _info_resp_prefix[BUFF_SIZE];
563 uint64_t _start_time;
567 char _cmd_buffer[BUFF_SIZE];
571 void handle_args(
const char *format, std::va_list list);
574 void handle_start(
const char *cmd,
const char *cmd_chr);
577 bool ok_to_proceed();
587 void rewind_buffer();
590 int poll_timeout(
bool wait_for_timeout =
true);
593 bool fill_buffer(
bool wait_for_timeout =
true);
595 void set_tag(tag_t *tag_dest,
const char *tag_seq);
598 bool match(
const char *str,
size_t size);
607 bool consume_char(
char ch);
610 bool consume_to_tag(
const char *tag,
bool consume_tag);
612 void resp(
const char *prefix,
bool check_urc);
615 ScopeType get_scope();
618 void information_response_stop();
620 void information_response_element_stop();
623 void at_error(
bool error_code, DeviceErrorType error_type);
629 void set_3gpp_error(
int err, DeviceErrorType error_type);
631 bool check_cmd_send();
632 size_t write(
const void *data,
size_t len);
643 const char *mem_str(
const char *dest,
size_t dest_len,
const char *src,
size_t src_len);
646 bool find_urc_handler(
const char *prefix);
654 void debug_print(
const char *p,
int len, ATType type);
659 #endif //AT_HANDLER_H_
signed int nsapi_error_t
Type used to represent error codes.
The Mutex class is used to synchronize the execution of threads.
AT response error with error code and type.
The ConditionVariable class is a synchronization primitive that allows threads to wait until a partic...
Callback class based on template specialization.
Class for sending AT commands and parsing AT responses.