Rev 97 |
Blame |
Compare with Previous |
Last modification |
View Log
| SVN
| RSS feed
/*********************************************************************
*
* uart header file
*
*********************************************************************
* FileName: $HeadURL: https://svn.auml.se/svn/HomeAutomation/branches/atomV2/EmbeddedSoftware/PIC/canToSerial/Include/uart.h $
* Last changed: $LastChangedDate: 2006-11-14 21:22:17 +0100 (Tue, 14 Nov 2006) $
* By: $LastChangedBy: johboh $
* Revision: $Revision: 97 $
********************************************************************/
#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