Subversion Repositories HomeAutomation

Rev

Details | Last modification | View Log | SVN | RSS feed

Rev Author Line No. Line
56 johboh 1
/*********************************************************************
2
 *
3
 *                  uart header file
4
 *
5
 *********************************************************************
6
 * FileName:        uart.h
7
 *
8
 * Author               Date    Comment
9
 *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
 * Johan Böhlin     21-10-06    Original        (Rev 1.0)
11
 ********************************************************************/
12
 
13
 
14
#ifndef UART_H
15
#define UART_H
16
 
17
#include <compiler.h>
18
#include <typedefs.h>
19
 
20
void uartInit(void);
21
void uartPutc(BYTE c);
22
void uartPuts(BYTE c[]);
23
void uartPutrs(const rom char *c);
24
BYTE uartGet(void);
25
void uartParse(BYTE c);
26
void uartISR(void);
27
char uartDataRedy(void);
28
 
29
#endif //UART_H