Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
10 lines (8 sloc)
257 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef _USART_H | |
| #define _USART_H | |
| void USART_init(void); | |
| void USART_TransmitByte( unsigned char data ); | |
| void USART_TransmitText(char* data); | |
| void USART_Transmit(void* p, unsigned long int len); | |
| void USART_TransmitHex(unsigned char data); | |
| #endif |