diff options
Diffstat (limited to 'code/esp32/components/eos/include/at_cmd.h')
-rw-r--r-- | code/esp32/components/eos/include/at_cmd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/code/esp32/components/eos/include/at_cmd.h b/code/esp32/components/eos/include/at_cmd.h index ca46e23..615a1c1 100644 --- a/code/esp32/components/eos/include/at_cmd.h +++ b/code/esp32/components/eos/include/at_cmd.h @@ -16,4 +16,5 @@ void at_init(void); int at_urc_process(char *urc); int at_urc_insert(char *pattern, at_urc_cb_t cb, int flags); int at_urc_delete(char *pattern); -int at_expect(char *str_ok, char *str_err, uint32_t timeout);
\ No newline at end of file +void at_cmd(char *cmd); +int at_expect(char *str_ok, char *str_err, uint32_t timeout); |