1234567891011121314151617181920212223242526272829 |
- #ifndef _UART2_H
- #define _UART2_H
- #include <inttypes.h>
- #include <stdio.h>
- #if defined(__cplusplus)
- extern "C" {
- #endif
- extern FILE _uart2io;
- #define uart2io (&_uart2io)
- extern void uart2_init(void);
- extern uint8_t uart2_rx_clr(void);
- extern uint8_t uart2_rx_ok(void);
- #if defined(__cplusplus)
- }
- #endif
- #endif
|