-
Notifications
You must be signed in to change notification settings - Fork 0
/
BufferedSerial.cpp
162 lines (135 loc) · 4.24 KB
/
BufferedSerial.cpp
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
/**
* @file BufferedSerial.cpp
* @brief Software Buffer - Extends mbed Serial functionallity adding irq driven TX and RX
* @author sam grove
* @version 1.0
* @see
*
* Copyright (c) 2013
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "BufferedSerial.h"
#include <stdarg.h>
BufferedSerial::BufferedSerial(PinName tx, PinName rx, uint32_t buf_size, uint32_t tx_multiple, const char* name)
: RawSerial(tx, rx) , _rxbuf(buf_size), _txbuf((uint32_t)(tx_multiple*buf_size))
{
RawSerial::attach(callback(this, &BufferedSerial::rxIrq), Serial::RxIrq);
this->_buf_size = buf_size;
this->_tx_multiple = tx_multiple;
return;
}
BufferedSerial::~BufferedSerial(void)
{
RawSerial::attach(NULL, RawSerial::RxIrq);
RawSerial::attach(NULL, RawSerial::TxIrq);
return;
}
int BufferedSerial::readable(void)
{
return _rxbuf.available(); // note: look if things are in the buffer
}
int BufferedSerial::writeable(void)
{
return 1; // buffer allows overwriting by design, always true
}
int BufferedSerial::getc(void)
{
return _rxbuf;
}
int BufferedSerial::putc(int c)
{
_txbuf = (char)c;
BufferedSerial::prime();
return c;
}
int BufferedSerial::puts(const char *s)
{
if (s != NULL) {
const char* ptr = s;
while(*(ptr) != 0) {
_txbuf = *(ptr++);
}
_txbuf = '\n'; // done per puts definition
BufferedSerial::prime();
return (ptr - s) + 1;
}
return 0;
}
int BufferedSerial::printf(const char* format, ...)
{
#if defined(__ARMCC_VERSION) && not defined(__clang_major__) // ARMC5
char *buffer = (char *)alloca(this->_buf_size);
#else
char buffer[this->_buf_size];
#endif
memset(buffer,0,this->_buf_size);
int r = 0;
va_list arg;
va_start(arg, format);
r = vsprintf(buffer, format, arg);
// this may not hit the heap but should alert the user anyways
if(r > (int)this->_buf_size) {
error("%s %d buffer overwrite (max_buf_size: %d exceeded: %d)!\r\n", __FILE__, __LINE__, (int)this->_buf_size,r);
va_end(arg);
return 0;
}
va_end(arg);
r = BufferedSerial::write(buffer, r);
return r;
}
ssize_t BufferedSerial::write(const void *s, size_t length)
{
if (s != NULL && length > 0) {
const char* ptr = (const char*)s;
const char* end = ptr + length;
while (ptr != end) {
_txbuf = *(ptr++);
}
BufferedSerial::prime();
return ptr - (const char*)s;
}
return 0;
}
void BufferedSerial::rxIrq(void)
{
// read from the peripheral and make sure something is available
if(serial_readable(&_serial)) {
_rxbuf = serial_getc(&_serial); // if so load them into a buffer
}
return;
}
void BufferedSerial::txIrq(void)
{
// see if there is room in the hardware fifo and if something is in the software fifo
while(serial_writable(&_serial)) {
if(_txbuf.available()) {
serial_putc(&_serial, (int)_txbuf.get());
} else {
// disable the TX interrupt when there is nothing left to send
RawSerial::attach(NULL, RawSerial::TxIrq);
break;
}
}
return;
}
void BufferedSerial::prime(void)
{
// if already busy then the irq will pick this up
if(serial_writable(&_serial)) {
RawSerial::attach(NULL, RawSerial::TxIrq); // make sure not to cause contention in the irq
BufferedSerial::txIrq(); // only write to hardware in one place
RawSerial::attach(callback(this, &BufferedSerial::txIrq), RawSerial::TxIrq);
}
return;
}