mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-08 19:30:39 +00:00
7 lines
216 B
C
7 lines
216 B
C
void uart_init();
|
|
void uart_writeText(char *buffer);
|
|
void uart_loadOutputFifo();
|
|
unsigned char uart_readByte();
|
|
unsigned int uart_isReadByteReady();
|
|
void uart_writeByteBlocking(unsigned char ch);
|
|
void uart_update();
|