-
Notifications
You must be signed in to change notification settings - Fork 517
/
Copy pathUart.cpp
289 lines (232 loc) · 7.24 KB
/
Uart.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
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
/*
Copyright (c) 2015 Arduino LLC. All right reserved.
Copyright (c) 2016 Sandeep Mistry All right reserved.
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
*/
#include "Uart.h"
#include "Arduino.h"
#include "wiring_private.h"
void serialEventRun(void)
{
if (serialEvent && Serial.available() ) serialEvent();
#if defined(PIN_SERIAL1_RX) && defined(PIN_SERIAL1_TX)
if (serialEvent1 && Serial1.available() ) serialEvent1();
#endif
#if defined(PIN_SERIAL2_RX) && defined(PIN_SERIAL2_TX)
if (serialEvent2 && Serial2.available() ) serialEvent2();
#endif
}
Uart::Uart(NRF_UARTE_Type *_nrfUart, IRQn_Type _IRQn, uint8_t _pinRX, uint8_t _pinTX)
{
nrfUart = _nrfUart;
IRQn = _IRQn;
uc_pinRX = g_ADigitalPinMap[_pinRX];
uc_pinTX = g_ADigitalPinMap[_pinTX];
uc_hwFlow = 0;
_end_tx_sem = NULL;
_begun = false;
}
Uart::Uart(NRF_UARTE_Type *_nrfUart, IRQn_Type _IRQn, uint8_t _pinRX, uint8_t _pinTX, uint8_t _pinCTS, uint8_t _pinRTS)
{
nrfUart = _nrfUart;
IRQn = _IRQn;
uc_pinRX = g_ADigitalPinMap[_pinRX];
uc_pinTX = g_ADigitalPinMap[_pinTX];
uc_pinCTS = g_ADigitalPinMap[_pinCTS];
uc_pinRTS = g_ADigitalPinMap[_pinRTS];
uc_hwFlow = 1;
_end_tx_sem = NULL;
_begun = false;
}
void Uart::setPins(uint8_t pin_rx, uint8_t pin_tx)
{
uc_pinRX = g_ADigitalPinMap[pin_rx];
uc_pinTX = g_ADigitalPinMap[pin_tx];
}
void Uart::begin(unsigned long baudrate)
{
begin(baudrate, (uint16_t)SERIAL_8N1);
}
void Uart::begin(unsigned long baudrate, uint16_t config)
{
// skip if already begun
if ( _begun ) return;
nrfUart->PSEL.TXD = uc_pinTX;
nrfUart->PSEL.RXD = uc_pinRX;
if (uc_hwFlow == 1) {
nrfUart->PSEL.CTS = uc_pinCTS;
nrfUart->PSEL.RTS = uc_pinRTS;
nrfUart->CONFIG = config | (UARTE_CONFIG_HWFC_Enabled << UARTE_CONFIG_HWFC_Pos);
} else {
nrfUart->CONFIG = config | (UARTE_CONFIG_HWFC_Disabled << UARTE_CONFIG_HWFC_Pos);
}
uint32_t nrfBaudRate;
if (baudrate <= 1200) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud1200;
} else if (baudrate <= 2400) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud2400;
} else if (baudrate <= 4800) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud4800;
} else if (baudrate <= 9600) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud9600;
} else if (baudrate <= 14400) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud14400;
} else if (baudrate <= 19200) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud19200;
} else if (baudrate <= 28800) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud28800;
} else if (baudrate <= 31250) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud31250;
} else if (baudrate <= 38400) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud38400;
} else if (baudrate <= 56000) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud56000;
} else if (baudrate <= 57600) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud57600;
} else if (baudrate <= 76800) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud76800;
} else if (baudrate <= 115200) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud115200;
} else if (baudrate <= 230400) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud230400;
} else if (baudrate <= 250000) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud250000;
} else if (baudrate <= 460800) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud460800;
} else if (baudrate <= 921600) {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud921600;
} else {
nrfBaudRate = UARTE_BAUDRATE_BAUDRATE_Baud1M;
}
nrfUart->BAUDRATE = nrfBaudRate;
nrfUart->ENABLE = UARTE_ENABLE_ENABLE_Enabled;
nrfUart->TXD.PTR = (uint32_t)txBuffer;
nrfUart->EVENTS_ENDTX = 0x0UL;
nrfUart->RXD.PTR = (uint32_t)&rxRcv;
nrfUart->RXD.MAXCNT = 1;
nrfUart->TASKS_STARTRX = 0x1UL;
nrfUart->INTENSET = UARTE_INTENSET_ENDRX_Msk | UARTE_INTENSET_ENDTX_Msk;
NVIC_ClearPendingIRQ(IRQn);
NVIC_SetPriority(IRQn, 3);
NVIC_EnableIRQ(IRQn);
_end_tx_sem = xSemaphoreCreateBinary();
xSemaphoreGive(_end_tx_sem);
_begun = true;
}
void Uart::end()
{
NVIC_DisableIRQ(IRQn);
nrfUart->INTENCLR = UARTE_INTENSET_ENDRX_Msk | UARTE_INTENSET_ENDTX_Msk;
nrfUart->EVENTS_RXTO = 0;
nrfUart->EVENTS_TXSTOPPED = 0;
nrfUart->TASKS_STOPRX = 0x1UL;
nrfUart->TASKS_STOPTX = 0x1UL;
// Wait for TXSTOPPED event and for RXTO event
// This is required before disabling UART to fully power down transceiver PHY.
// Otherwise transceiver will continue to consume ~900uA
while ( !(nrfUart->EVENTS_TXSTOPPED && nrfUart->EVENTS_RXTO) ) yield();
nrfUart->ENABLE = UARTE_ENABLE_ENABLE_Disabled;
nrfUart->PSEL.TXD = 0xFFFFFFFF;
nrfUart->PSEL.RXD = 0xFFFFFFFF;
nrfUart->PSEL.RTS = 0xFFFFFFFF;
nrfUart->PSEL.CTS = 0xFFFFFFFF;
rxBuffer.clear();
vSemaphoreDelete(_end_tx_sem);
_end_tx_sem = NULL;
_begun = false;
}
void Uart::flush()
{
if ( _begun ) {
xSemaphoreTake(_end_tx_sem, portMAX_DELAY);
xSemaphoreGive(_end_tx_sem);
}
}
void Uart::IrqHandler()
{
if (nrfUart->EVENTS_ENDRX)
{
nrfUart->EVENTS_ENDRX = 0x0UL;
if (nrfUart->RXD.AMOUNT)
{
rxBuffer.store_char(rxRcv);
}
nrfUart->TASKS_STARTRX = 0x1UL;
}
if (nrfUart->EVENTS_ENDTX)
{
nrfUart->EVENTS_ENDTX = 0x0UL;
xSemaphoreGiveFromISR(_end_tx_sem, NULL);
}
}
int Uart::available()
{
return rxBuffer.available();
}
int Uart::peek()
{
return rxBuffer.peek();
}
int Uart::read()
{
return rxBuffer.read_char();
}
size_t Uart::write(uint8_t data)
{
return write(&data, 1);
}
size_t Uart::write(const uint8_t *buffer, size_t size)
{
if(size == 0) return 0;
size_t sent = 0;
do
{
size_t remaining = size - sent;
size_t txSize = min(remaining, (size_t)SERIAL_BUFFER_SIZE);
xSemaphoreTake(_end_tx_sem, portMAX_DELAY);
memcpy(txBuffer, buffer + sent, txSize);
nrfUart->TXD.MAXCNT = txSize;
nrfUart->TASKS_STARTTX = 0x1UL;
sent += txSize;
} while (sent < size);
return sent;
}
int Uart::availableForWrite(void) {
// UART does not use ring buffer for TX, therefore it is either busy or not
UBaseType_t available = uxSemaphoreGetCount(_end_tx_sem);
return available ? SERIAL_BUFFER_SIZE : 0;
}
//------------- Serial1 (or Serial in case of nRF52832) -------------//
#ifdef NRF52832_XXAA
Uart Serial( NRF_UARTE0, UARTE0_UART0_IRQn, PIN_SERIAL_RX, PIN_SERIAL_TX );
#else
Uart Serial1( NRF_UARTE0, UARTE0_UART0_IRQn, PIN_SERIAL1_RX, PIN_SERIAL1_TX );
#endif
extern "C"
{
void UARTE0_UART0_IRQHandler()
{
SERIAL_PORT_HARDWARE.IrqHandler();
}
}
//------------- Serial2 -------------//
#if defined(PIN_SERIAL2_RX) && defined(PIN_SERIAL2_TX)
Uart Serial2( NRF_UARTE1, UARTE1_IRQn, PIN_SERIAL2_RX, PIN_SERIAL2_TX );
extern "C"
{
void UARTE1_IRQHandler()
{
Serial2.IrqHandler();
}
}
#endif