Subversion Repositories HomeAutomation

Rev

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

Rev Author Line No. Line
51 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
#ifndef UART_H
14
#define UART_H
15
 
16
#include "../Include/compiler.h"
17
#include "../Include/typedefs.h"
18
 
19
void uartInit(void);
20
void uartPutc(BYTE c);
21
void uartPuts(BYTE c[]);
22
void uartPutrs(const rom char *c);
23
BYTE uartGet(void);
24
void uartParse(BYTE c);
25
void uartISR(void);
26
char uartDataRedy(void);
27
 
28
#endif //UART_H