| 12345678910111213141516171819202122 |
- #include "luat_base.h"
- #include "luat_shell.h"
- #include "luat_uart.h"
- #include "luat_log.h"
- #define LUAT_LOG_TAG "shell"
- typedef struct {
- size_t len;
- char buff[0];
- }uart_data;
- void luat_shell_write(char* buff, size_t len) {
- luat_uart_write(0, buff, len);
- }
- void luat_shell_notify_recv(void) {
- }
|