No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

14 líneas
360 B

  1. #ifndef _UART_INTERRUPT_H_
  2. #define _UART_INTERRUPT_H_
  3. /*****************宏定义*************************/
  4. #define DEMO_UART UART2 // 选择串口UART2
  5. #define BOARD_DEBUG_UART_BAUDRATE 115200 //设置波特率115200
  6. #define DEMO_RING_BUFFER_SIZE 16
  7. /*****************函数声明*************************/
  8. void UART_InterrputInit(); //串口初始化
  9. #endif