You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef _UART_INTERRUPT_H_
- #define _UART_INTERRUPT_H_
-
-
- /*****************宏定义*************************/
- #define DEMO_UART UART2 // 选择串口UART2
- #define BOARD_DEBUG_UART_BAUDRATE 115200 //设置波特率115200
- #define DEMO_RING_BUFFER_SIZE 16
-
- /*****************函数声明*************************/
- void UART2_InterrputInit(); //UART2串口初始化
- void UART0_InterrputInit(); //UART0串口初始化
-
-
- #endif
|