]> www.fi.muni.cz Git - scxreader.git/blob - uart.h
Added licensing information.
[scxreader.git] / uart.h
1 #ifndef UART_H__
2 #define UART_H__ 1
3
4 void uart_init();
5 unsigned char uart_tx_byte(unsigned char byte, unsigned char wait);
6 unsigned char uart_tx_hex(unsigned char byte, unsigned char wait);
7 unsigned char uart_tx_hex2(unsigned short word, unsigned char wait);
8
9 #endif /* !UART_H__ */
10