Project

General

Profile

Statistics
| Branch: | Revision:

root / serial.h @ 20e5429c

History | View | Annotate | Download (206 Bytes)

1
#ifndef SERIAL_H
2
#define SERIAL_H
3

    
4
#define BAUD_RATE 9600
5

    
6
#define RX_BUFFER_SIZE 256
7

    
8
void serial_init();
9
int serial_read();
10
char serial_read_blocking();
11
void serial_write(char* data, int length);
12

    
13
#endif