| 12345678910111213141516 |
- #ifndef LUAT_SHELL_H
- #define LUAT_SHELL_H
- #include "luat_base.h"
- #define LUAT_CMUX_CMD_INIT "AT+CMUX=1,0,5"
- void luat_shell_write(char* buff, size_t len);
- void luat_shell_print(const char* str);
- char* luat_shell_read(size_t *len);
- void luat_shell_notify_recv(void);
- void luat_shell_notify_read(void);
- // new shell
- void luat_shell_push(char* uart_buff, size_t rcount);
- #endif
|