Subversion Repositories HomeAutomation

Rev

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

Rev Author Line No. Line
149 jimmy 1
#ifndef SERIAL_H_
2
#define SERIAL_H_
3
 
4
 
5
/*-----------------------------------------------------------------------------
6
 * Includes
7
 *---------------------------------------------------------------------------*/
8
#include <inttypes.h>
9
#include <serial_cfg.h>
10
 
11
 
12
/*-----------------------------------------------------------------------------
13
 * Defines
14
 *---------------------------------------------------------------------------*/
15
#define UART_RX_BUFFER_SIZE     SERIAL_RX_BUFFER_SIZE
16
#define UART_TX_BUFFER_SIZE     SERIAL_TX_BUFFER_SIZE
17
 
18
 
19
/*-----------------------------------------------------------------------------
20
 * Public Function Prototypes
21
 *---------------------------------------------------------------------------*/
22
void Serial_Init(void);
23
 
24
 
25
#endif /*SERIAL_H_*/