luat_shell_idf5.c 245 B

1234567891011121314
  1. #include "luat_base.h"
  2. #include "luat_shell.h"
  3. #include "luat_uart.h"
  4. #include "luat_log.h"
  5. #define LUAT_LOG_TAG "shell"
  6. void luat_shell_write(char* buff, size_t len) {
  7. luat_uart_write(0, buff, len);
  8. }
  9. void luat_shell_notify_recv(void) {
  10. }