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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
|
/*
* This class is porting arduino's SoftwareSerial for eXodusino
*
* Created on: 2012/03/17
* @author nucho
*/
/*
SoftwareSerial.cpp (formerly NewSoftSerial.cpp) -
Multi-instance software serial library for Arduino/Wiring
-- Interrupt-driven receive and other improvements by ladyada
(http://ladyada.net)
-- Tuning, circular buffer, derivation from class Print/Stream,
multi-instance support, porting to 8MHz processors,
various optimizations, PROGMEM delay tables, inverse logic and
direct port writing by Mikal Hart (http://www.arduiniana.org)
-- Pin change interrupt macros by Paul Stoffregen (http://www.pjrc.com)
-- 20MHz processor support by Garrett Mace (http://www.macetech.com)
-- ATmega1280/2560 support by Brett Hagman (http://www.roguerobotics.com/)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
The latest version of this library can always be found at
http://arduiniana.org.
*/
#include "SoftwareSerial.h"
#include "gpio.h"
#include "delay.h"
//
// Lookup table
//
typedef struct _DELAY_TABLE {
long baud;
unsigned short rx_delay_centering;
unsigned short rx_delay_intrabit;
unsigned short rx_delay_stopbit;
unsigned short tx_delay;
} DELAY_TABLE;
static const DELAY_TABLE table[] = {
// baud rxcenter rxintra rxstop tx
{ 38400, 11, 23, 23, 23, },//no support
{ 19200, 23, 47, 47, 49, },//no support
{ 9600, 50,100, 100, 100, },
{ 4800, 101, 202, 202, 202, },
};
//
// Debugging
//
// This function generates a brief pulse
// for debugging or measuring on an oscilloscope.
inline void DebugPulse(uint8_t pin, uint8_t count) {
//#if _DEBUG
// volatile uint8_t *pport = portOutputRegister(digitalPinToPort(pin));
//
// uint8_t val = *pport;
// while (count--)
// {
// *pport = val | digitalPinToBitMask(pin);
// *pport = val;
// }
//#endif
}
//
// Statics
//
SoftwareSerial *SoftwareSerial::active_object = 0;
char SoftwareSerial::_receive_buffer[_SS_MAX_RX_BUFF];
volatile uint8_t SoftwareSerial::_receive_buffer_tail = 0;
volatile uint8_t SoftwareSerial::_receive_buffer_head = 0;
//
// Private methods
//
// This function sets the current object as the "listening"
// one and returns true if it replaces another
bool SoftwareSerial::listen() {
if (active_object != this) {
_buffer_overflow = false;
_receive_buffer_head = _receive_buffer_tail = 0;
active_object = this;
return true;
}
return false;
}
//
// The receive routine called by the interrupt handler
//
void SoftwareSerial::recv() {
uint8_t d = 0;
// If RX line is high, then we don't see any start bit
// so interrupt is probably not for us
if (_inverse_logic ? digitalRead(_receivePin) : !digitalRead(_receivePin)) {
// Wait approximately 1/2 of a bit width to "center" the sample
delayMicroseconds(_rx_delay_centering);
DebugPulse(4, 1);
// Read each of the 8 bits
for (uint8_t i = 0x1; i; i <<= 1) {
delayMicroseconds(_rx_delay_intrabit);
DebugPulse(4, 1);
uint8_t noti = ~i;
if (digitalRead(_receivePin))
d |= i;
else
// else clause added to ensure function timing is ~balanced
d &= noti;
}
// skip the stop bit
delayMicroseconds(_rx_delay_stopbit);
DebugPulse(4, 1);
if (_inverse_logic)
d = ~d;
// if buffer full, set the overflow flag and return
if ((_receive_buffer_tail + 1) % _SS_MAX_RX_BUFF
!= _receive_buffer_head) {
// save new data in buffer: tail points to where byte goes
_receive_buffer[_receive_buffer_tail] = d; // save new byte
_receive_buffer_tail = (_receive_buffer_tail + 1) % _SS_MAX_RX_BUFF;
} else {
_buffer_overflow = true;
}
}
}
// Interrupt handling
//
/* static */
inline void SoftwareSerial::handle_interrupt() {
if (active_object) {
active_object->recv();
}
}
//
// Constructor
//
SoftwareSerial::SoftwareSerial(uint8_t receivePin, uint8_t transmitPin,
bool inverse_logic /* = false */) :
_rx_delay_centering(0), _rx_delay_intrabit(0), _rx_delay_stopbit(0),
_tx_delay(0), _buffer_overflow(false),
_inverse_logic(inverse_logic) {
setTX(transmitPin);
setRX(receivePin);
}
//
// Destructor
//
SoftwareSerial::~SoftwareSerial() {
end();
}
void SoftwareSerial::setTX(uint8_t tx) {
if (tx >= 0) {
pinMode(tx, OUTPUT);
digitalWrite(tx, HIGH);
}
_transmitPin = tx;
}
void SoftwareSerial::setRX(uint8_t rx) {
if (rx >= 0) {
pinMode(rx, INPUT);
if (!_inverse_logic) {
digitalWrite(rx, HIGH);//rx pin is pull up
} else {
digitalWrite(rx, LOW);//rx pin is inactive
}
}
_receivePin = rx;
}
//
// Public methods
//
void SoftwareSerial::begin(long speed) {
_rx_delay_centering = _rx_delay_intrabit = _rx_delay_stopbit = _tx_delay
= 0;
for (unsigned i = 0; i < sizeof(table) / sizeof(table[0]); ++i) {
long baud = table[i].baud;
if (baud == speed) {
_rx_delay_centering = table[i].rx_delay_centering;
_rx_delay_intrabit = table[i].rx_delay_intrabit;
_rx_delay_stopbit = table[i].rx_delay_stopbit;
_tx_delay = table[i].tx_delay;
break;
}
}
// Set up RX interrupts, but only if we have a valid RX baud rate
if (_rx_delay_stopbit && _receivePin > 0) {
attachInterrupt(_receivePin, SoftwareSerial::handle_interrupt, FALLING);
delayMicroseconds(_tx_delay);// if we were low this establishes the end
}
listen();
}
void SoftwareSerial::end() {
if (_receivePin > 0) {
detachInterrupt(_receivePin);
}
}
// Read data from buffer
int SoftwareSerial::read() {
if (!isListening())
return -1;
// Empty buffer?
if (_receive_buffer_head == _receive_buffer_tail)
return -1;
// Read from "head"
uint8_t d = _receive_buffer[_receive_buffer_head]; // grab next byte
_receive_buffer_head = (_receive_buffer_head + 1) % _SS_MAX_RX_BUFF;
return d;
}
int SoftwareSerial::available() {
if (!isListening())
return 0;
return (_receive_buffer_tail + _SS_MAX_RX_BUFF - _receive_buffer_head)
% _SS_MAX_RX_BUFF;
}
void SoftwareSerial::write(const char c) {
if (_tx_delay == 0) {
return;
}
if (_transmitPin < 0) {
return;
}
// Write the start bit
digitalWrite(_transmitPin, _inverse_logic ? HIGH : LOW);
delayMicroseconds(_tx_delay);
// Write each of the 8 bits
if (_inverse_logic) {
for (uint8_t mask = 0x01; mask; mask <<= 1) {
if (c & mask) // choose bit
digitalWrite(_transmitPin, LOW); // send 1
else
digitalWrite(_transmitPin, HIGH); // send 0
delayMicroseconds(_tx_delay);
}
digitalWrite(_transmitPin, LOW); // restore pin to natural state
} else {
for (uint8_t mask = 0x01; mask; mask <<= 1) {
if (c & mask) // choose bit
digitalWrite(_transmitPin, HIGH); // send 1
else
digitalWrite(_transmitPin, LOW); // send 0
delayMicroseconds(_tx_delay);
}
digitalWrite(_transmitPin, HIGH); // restore pin to natural state
}
delayMicroseconds(_tx_delay);
}
void SoftwareSerial::flush() {
if (!isListening())
return;
_receive_buffer_head = _receive_buffer_tail = 0;
}
int SoftwareSerial::peek() {
if (!isListening())
return -1;
// Empty buffer?
if (_receive_buffer_head == _receive_buffer_tail)
return -1;
// Read from "head"
return _receive_buffer[_receive_buffer_head];
}
|