#ifndef UART1_DEFINED #define UART1_DEFINED #include #include #include void uart1_init(void); /* Initialize UART and Flush FIFOs */ void uart1_deinit(void); /* Deinitialize UART */ uint8_t uart1_get (void); /* Get a byte from UART Rx FIFO */ uint8_t uart1_test(void); /* Check number of data in UART Rx FIFO */ void uart1_put (uint8_t); /* Put a byte into UART Tx FIFO */ #endif