uart_interface.h 253 B

12345678910111213
  1. #ifndef UART_INTERFACE_H
  2. #define UART_INTERFACE_H
  3. #include "esp_common.h"
  4. #include "log/esp_log.h"
  5. void process_command(uint8_t *str);
  6. void uart0_rx_intr_handler_ideasX(void *para);
  7. #ifndef BUILD_TIME
  8. #define BUILD_TIME "YYYYMMDD"
  9. #endif
  10. #endif