-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuart.c
More file actions
executable file
·120 lines (92 loc) · 3.35 KB
/
Copy pathuart.c
File metadata and controls
executable file
·120 lines (92 loc) · 3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*****************************************************************************
* Copyright (C) 2010 by Christian Groeger *
* code@proquari.at *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
*****************************************************************************/
#include <avr/io.h>
#include <avr/interrupt.h>
#include "uart.h"
#define ENABLE_RX_INT() UCSRB |= (1<<RXCIE)
#define DISABLE_RX_INT() UCSRB &= ~(1<<RXCIE)
#define ENABLE_TX_INT() UCSRB |= (1<<UDRIE)
#define DISABLE_TX_INT() UCSRB &= ~(1<<UDRIE)
#define TXBUFFERSIZE_BITMASK ((1<<TXBUFFERSIZE)-1)
#define RXBUFFERSIZE_BITMASK ((1<<RXBUFFERSIZE)-1)
volatile struct {
char buffer[1<<RXBUFFERSIZE];
uint8_t readpos;
uint8_t writepos;
} rxbuffer;
volatile struct {
uint8_t buffer[1<<TXBUFFERSIZE];
uint8_t readpos;
uint8_t writepos;
} txbuffer;
void uartInit(uint8_t baudrate) {
//enable transmitter+receiver, 8 databits
UCSRB = (1<<TXEN)|(1<<RXEN);
//asynchronous, no parity, 1 stopbit, 8 databits
UCSRC = (1<<URSEL)|(1<<UCSZ1)|(1<<UCSZ0);
UBRRH = 0;
UBRRL = baudrate;
rxbuffer.readpos=0;
rxbuffer.writepos=0;
txbuffer.readpos=0;
txbuffer.writepos=0;
ENABLE_RX_INT();
}
void uartPutc(uint8_t byte) {
uint8_t tmpwritepos=txbuffer.writepos;
txbuffer.buffer[tmpwritepos++]=byte;
if( (tmpwritepos&TXBUFFERSIZE_BITMASK) == txbuffer.readpos ) {
tmpwritepos--;
}
txbuffer.writepos=tmpwritepos&TXBUFFERSIZE_BITMASK;
ENABLE_TX_INT();
}
void uartPuts(char* str) {
while(*str!='\0') {
uartPutc(*str++);
}
}
ISR( USART_UDRE_vect ) {
if ( txbuffer.readpos != txbuffer.writepos ) {
UDR=txbuffer.buffer[txbuffer.readpos++];
txbuffer.readpos &= TXBUFFERSIZE_BITMASK;
} else {
DISABLE_TX_INT();
}
}
uint8_t uartAvailable(void) {
return (rxbuffer.writepos-rxbuffer.readpos)&RXBUFFERSIZE_BITMASK;
}
uint8_t uartGetc(void) {
if ( rxbuffer.readpos != rxbuffer.writepos ) {
uint8_t toreturn = rxbuffer.buffer[rxbuffer.readpos];
rxbuffer.readpos++;
rxbuffer.readpos &= RXBUFFERSIZE_BITMASK;
return toreturn;
} else {
return 0;
}
}
ISR( USART_RXC_vect ) {
rxbuffer.buffer[rxbuffer.writepos++]=UDR;
if( (rxbuffer.writepos&RXBUFFERSIZE_BITMASK) == rxbuffer.readpos ) {
rxbuffer.writepos--;
}
rxbuffer.writepos &= RXBUFFERSIZE_BITMASK;
}