Details |
Last modification |
View Log
Rev |
Author |
Line No. |
Line |
507 |
kaklik |
1 |
#include "uart.c"
|
|
|
2 |
|
|
|
3 |
void uart_init(void); /* Initialize UART and Flush FIFOs */
|
|
|
4 |
uint8_t uart_get (void); /* Get a byte from UART Rx FIFO */
|
|
|
5 |
uint8_t uart_test(void); /* Check number of data in UART Rx FIFO */
|
|
|
6 |
void uart_put (uint8_t); /* Put a byte into UART Tx FIFO */
|