#ifndef __USART_H__
#define __USART_H__

int usartInit(void);
boolean usartGetTxIntEnable(void);
int usartTxOne(char txCh);
int usartRxOne(char *pRxCh);

#endif /* __USART_H__ */
