mirror of
https://github.com/UzixLS/famicom-dumper.git
synced 2025-07-19 07:21:16 +03:00
11 lines
257 B
C
11 lines
257 B
C
#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
|