Subversion Repositories Code-Repo

Rev

Rev 202 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 202 Rev 224
Line 1... Line 1...
1
#ifndef UART_H
1
#ifndef UART_H
2
#define UART_H
2
#define UART_H
3
 
3
 
4
#define UART_BUFFER_SIZE 20
4
#define UART_BUFFER_SIZE 30
5
 
5
 
6
typedef struct {
6
typedef struct {
7
    char buffer_in[UART_BUFFER_SIZE];
7
    char buffer_in[UART_BUFFER_SIZE];
8
    char buffer_in_read_ind;
8
    char buffer_in_read_ind;
9
    char buffer_in_write_ind;
9
    char buffer_in_write_ind;