1234567891011121314151617181920 |
- #ifndef usart_data_process_h_
- #define usart_data_process_h_
- #ifndef usart_data_process_c_
- #define usart_data_process_cx_ extern
- #else
- #define usart_data_process_cx_
- #endif
- #include <stdint.h>
- #include "esp_log.h"
- #include "freertos/FreeRTOS.h"
- #include "freertos/task.h"
- #include "freertos/queue.h"
- #include "usart.h"
- void usart_data_process_fun(uint8_t *data ,int len);
- #endif
|