PC.h 161 B

123456789101112131415161718192021
  1. #ifndef PC_H
  2. #define PC_H
  3. #include "gd32f10x.h"
  4. typedef struct usart2_data_buf_t
  5. {
  6. uint8_t data[5];
  7. uint16_t data_cnt;
  8. } usart2_data_buf_t;
  9. #endif