#ifndef __uart0_h__
#define __uart0_h__

#ifdef __cplusplus
extern "C" {
#endif

int uart0Init(unsigned int baudrate);
int uart0Init2(void);
void uart0Poll(void);

int uart0Puts(char *);
int uart0RxOne(char *);
int uart0TxOne(char);

#ifdef __cplusplus
}
#endif


#endif /* __uart0_h__ */

