Go to most recent revision |
Blame |
Last modification |
View Log
| SVN
| RSS feed
/*********************************************************************
*
* uart header file
*
*********************************************************************
* FileName: uart.h
*
* Author Date Comment
*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Johan Böhlin 21-10-06 Original (Rev 1.0)
********************************************************************/
#ifndef UART_H
#define UART_H
#include <compiler.h>
#include <typedefs.h>
void uartInit(void);
void uartPutc(BYTE c);
void uartPuts(BYTE c[]);
void uartPutrs(const rom char *c);
BYTE uartGet(void);
void uartParse(BYTE c);
void uartISR(void);
char uartDataRedy(void);
#endif //UART_H