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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
|
/*
* TWI/I2C library for nRF5x
* Copyright (c) 2015 Arduino LLC. All rights 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
*/
#if defined(NRF52) || defined(NRF52_SERIES)
extern "C" {
#include <string.h>
}
#include <Arduino.h>
#include <wiring_private.h>
#include "Wire.h"
static volatile uint32_t* pincfg_reg(uint32_t pin)
{
NRF_GPIO_Type * port = nrf_gpio_pin_port_decode(&pin);
return &port->PIN_CNF[pin];
}
TwoWire::TwoWire(NRF_TWIM_Type * p_twim, NRF_TWIS_Type * p_twis, IRQn_Type IRQn, uint8_t pinSDA, uint8_t pinSCL)
{
this->_p_twim = p_twim;
this->_p_twis = p_twis;
this->_IRQn = IRQn;
this->_uc_pinSDA = g_ADigitalPinMap[pinSDA];
this->_uc_pinSCL = g_ADigitalPinMap[pinSCL];
transmissionBegun = false;
}
void TwoWire::begin(void) {
//Master Mode
master = true;
*pincfg_reg(_uc_pinSCL) = ((uint32_t)GPIO_PIN_CNF_DIR_Input << GPIO_PIN_CNF_DIR_Pos)
| ((uint32_t)GPIO_PIN_CNF_INPUT_Connect << GPIO_PIN_CNF_INPUT_Pos)
| ((uint32_t)GPIO_PIN_CNF_PULL_Pullup << GPIO_PIN_CNF_PULL_Pos)
| ((uint32_t)GPIO_PIN_CNF_DRIVE_S0D1 << GPIO_PIN_CNF_DRIVE_Pos)
| ((uint32_t)GPIO_PIN_CNF_SENSE_Disabled << GPIO_PIN_CNF_SENSE_Pos);
*pincfg_reg(_uc_pinSDA) = ((uint32_t)GPIO_PIN_CNF_DIR_Input << GPIO_PIN_CNF_DIR_Pos)
| ((uint32_t)GPIO_PIN_CNF_INPUT_Connect << GPIO_PIN_CNF_INPUT_Pos)
| ((uint32_t)GPIO_PIN_CNF_PULL_Pullup << GPIO_PIN_CNF_PULL_Pos)
| ((uint32_t)GPIO_PIN_CNF_DRIVE_S0D1 << GPIO_PIN_CNF_DRIVE_Pos)
| ((uint32_t)GPIO_PIN_CNF_SENSE_Disabled << GPIO_PIN_CNF_SENSE_Pos);
_p_twim->FREQUENCY = TWIM_FREQUENCY_FREQUENCY_K100;
_p_twim->ENABLE = (TWIM_ENABLE_ENABLE_Enabled << TWIM_ENABLE_ENABLE_Pos);
_p_twim->PSEL.SCL = _uc_pinSCL;
_p_twim->PSEL.SDA = _uc_pinSDA;
NVIC_ClearPendingIRQ(_IRQn);
NVIC_SetPriority(_IRQn, 3);
NVIC_EnableIRQ(_IRQn);
}
void TwoWire::begin(uint8_t address) {
//Slave mode
master = false;
*pincfg_reg(_uc_pinSCL) = ((uint32_t)GPIO_PIN_CNF_DIR_Input << GPIO_PIN_CNF_DIR_Pos)
| ((uint32_t)GPIO_PIN_CNF_INPUT_Disconnect << GPIO_PIN_CNF_INPUT_Pos)
| ((uint32_t)GPIO_PIN_CNF_PULL_Disabled << GPIO_PIN_CNF_PULL_Pos)
| ((uint32_t)GPIO_PIN_CNF_DRIVE_S0S1 << GPIO_PIN_CNF_DRIVE_Pos)
| ((uint32_t)GPIO_PIN_CNF_SENSE_Disabled << GPIO_PIN_CNF_SENSE_Pos);
*pincfg_reg(_uc_pinSDA) = ((uint32_t)GPIO_PIN_CNF_DIR_Input << GPIO_PIN_CNF_DIR_Pos)
| ((uint32_t)GPIO_PIN_CNF_INPUT_Disconnect << GPIO_PIN_CNF_INPUT_Pos)
| ((uint32_t)GPIO_PIN_CNF_PULL_Disabled << GPIO_PIN_CNF_PULL_Pos)
| ((uint32_t)GPIO_PIN_CNF_DRIVE_S0S1 << GPIO_PIN_CNF_DRIVE_Pos)
| ((uint32_t)GPIO_PIN_CNF_SENSE_Disabled << GPIO_PIN_CNF_SENSE_Pos);
_p_twis->ADDRESS[0] = address;
_p_twis->CONFIG = TWIS_CONFIG_ADDRESS0_Msk;
_p_twis->PSEL.SCL = _uc_pinSCL;
_p_twis->PSEL.SDA = _uc_pinSDA;
_p_twis->ORC = 0xff;
_p_twis->INTENSET = TWIS_INTEN_STOPPED_Msk | TWIS_INTEN_ERROR_Msk | TWIS_INTEN_WRITE_Msk | TWIS_INTEN_READ_Msk;
NVIC_ClearPendingIRQ(_IRQn);
NVIC_SetPriority(_IRQn, 3);
NVIC_EnableIRQ(_IRQn);
_p_twis->ENABLE = (TWIS_ENABLE_ENABLE_Enabled << TWIS_ENABLE_ENABLE_Pos);
}
void TwoWire::setClock(uint32_t baudrate) {
if (master) {
_p_twim->ENABLE = (TWIM_ENABLE_ENABLE_Disabled << TWIM_ENABLE_ENABLE_Pos);
uint32_t frequency;
if (baudrate <= 100000)
{
frequency = TWIM_FREQUENCY_FREQUENCY_K100;
}
else if (baudrate <= 250000)
{
frequency = TWIM_FREQUENCY_FREQUENCY_K250;
}
else
{
frequency = TWIM_FREQUENCY_FREQUENCY_K400;
}
_p_twim->FREQUENCY = frequency;
_p_twim->ENABLE = (TWIM_ENABLE_ENABLE_Enabled << TWIM_ENABLE_ENABLE_Pos);
}
}
void TwoWire::end() {
if (master)
{
_p_twim->ENABLE = (TWIM_ENABLE_ENABLE_Disabled << TWIM_ENABLE_ENABLE_Pos);
}
else
{
_p_twis->ENABLE = (TWIS_ENABLE_ENABLE_Disabled << TWIS_ENABLE_ENABLE_Pos);
}
}
uint8_t TwoWire::requestFrom(uint8_t address, size_t quantity, bool stopBit)
{
if(quantity == 0)
{
return 0;
}
size_t byteRead = 0;
rxBuffer.clear();
_p_twim->ADDRESS = address;
_p_twim->TASKS_RESUME = 0x1UL;
_p_twim->RXD.PTR = (uint32_t)rxBuffer._aucBuffer;
_p_twim->RXD.MAXCNT = quantity;
_p_twim->TASKS_STARTRX = 0x1UL;
while(!_p_twim->EVENTS_RXSTARTED && !_p_twim->EVENTS_ERROR);
_p_twim->EVENTS_RXSTARTED = 0x0UL;
while(!_p_twim->EVENTS_LASTRX && !_p_twim->EVENTS_ERROR);
_p_twim->EVENTS_LASTRX = 0x0UL;
if (stopBit || _p_twim->EVENTS_ERROR)
{
_p_twim->TASKS_STOP = 0x1UL;
while(!_p_twim->EVENTS_STOPPED);
_p_twim->EVENTS_STOPPED = 0x0UL;
}
else
{
_p_twim->TASKS_SUSPEND = 0x1UL;
while(!_p_twim->EVENTS_SUSPENDED);
_p_twim->EVENTS_SUSPENDED = 0x0UL;
}
if (_p_twim->EVENTS_ERROR)
{
_p_twim->EVENTS_ERROR = 0x0UL;
}
byteRead = rxBuffer._iHead = _p_twim->RXD.AMOUNT;
return byteRead;
}
uint8_t TwoWire::requestFrom(uint8_t address, size_t quantity)
{
return requestFrom(address, quantity, true);
}
void TwoWire::beginTransmission(uint8_t address) {
// save address of target and clear buffer
txAddress = address;
txBuffer.clear();
transmissionBegun = true;
}
// Errors:
// 0 : Success
// 1 : Data too long
// 2 : NACK on transmit of address
// 3 : NACK on transmit of data
// 4 : Other error
uint8_t TwoWire::endTransmission(bool stopBit)
{
transmissionBegun = false ;
// Start I2C transmission
_p_twim->ADDRESS = txAddress;
_p_twim->TASKS_RESUME = 0x1UL;
_p_twim->TXD.PTR = (uint32_t)txBuffer._aucBuffer;
_p_twim->TXD.MAXCNT = txBuffer.available();
_p_twim->TASKS_STARTTX = 0x1UL;
while(!_p_twim->EVENTS_TXSTARTED && !_p_twim->EVENTS_ERROR);
_p_twim->EVENTS_TXSTARTED = 0x0UL;
if (txBuffer.available()) {
while(!_p_twim->EVENTS_LASTTX && !_p_twim->EVENTS_ERROR);
}
_p_twim->EVENTS_LASTTX = 0x0UL;
if (stopBit || _p_twim->EVENTS_ERROR)
{
_p_twim->TASKS_STOP = 0x1UL;
while(!_p_twim->EVENTS_STOPPED);
_p_twim->EVENTS_STOPPED = 0x0UL;
}
else
{
_p_twim->TASKS_SUSPEND = 0x1UL;
while(!_p_twim->EVENTS_SUSPENDED);
_p_twim->EVENTS_SUSPENDED = 0x0UL;
}
if (_p_twim->EVENTS_ERROR)
{
_p_twim->EVENTS_ERROR = 0x0UL;
uint32_t error = _p_twim->ERRORSRC;
_p_twim->ERRORSRC = error;
if (error == TWIM_ERRORSRC_ANACK_Msk)
{
return 2;
}
else if (error == TWIM_ERRORSRC_DNACK_Msk)
{
return 3;
}
else
{
return 4;
}
}
return 0;
}
uint8_t TwoWire::endTransmission()
{
return endTransmission(true);
}
size_t TwoWire::write(uint8_t ucData)
{
// No writing, without begun transmission or a full buffer
if ( !transmissionBegun || txBuffer.isFull() )
{
return 0 ;
}
txBuffer.store_char( ucData ) ;
return 1 ;
}
size_t TwoWire::write(const uint8_t *data, size_t quantity)
{
//Try to store all data
for(size_t i = 0; i < quantity; ++i)
{
//Return the number of data stored, when the buffer is full (if write return 0)
if(!write(data[i]))
return i;
}
//All data stored
return quantity;
}
int TwoWire::available(void)
{
return rxBuffer.available();
}
int TwoWire::read(void)
{
return rxBuffer.read_char();
}
int TwoWire::peek(void)
{
return rxBuffer.peek();
}
void TwoWire::flush(void)
{
// Do nothing, use endTransmission(..) to force
// data transfer.
}
void TwoWire::onReceive(void(*function)(int))
{
onReceiveCallback = function;
}
void TwoWire::onRequest(void(*function)(void))
{
onRequestCallback = function;
}
void TwoWire::onService(void)
{
if (_p_twis->EVENTS_WRITE)
{
_p_twis->EVENTS_WRITE = 0x0UL;
receiving = true;
rxBuffer.clear();
_p_twis->RXD.PTR = (uint32_t)rxBuffer._aucBuffer;
_p_twis->RXD.MAXCNT = sizeof(rxBuffer._aucBuffer);
_p_twis->TASKS_PREPARERX = 0x1UL;
}
if (_p_twis->EVENTS_READ)
{
_p_twis->EVENTS_READ = 0x0UL;
receiving = false;
transmissionBegun = true;
txBuffer.clear();
if (onRequestCallback)
{
onRequestCallback();
}
transmissionBegun = false;
_p_twis->TXD.PTR = (uint32_t)txBuffer._aucBuffer;
_p_twis->TXD.MAXCNT = txBuffer.available();
_p_twis->TASKS_PREPARETX = 0x1UL;
}
if (_p_twis->EVENTS_STOPPED)
{
_p_twis->EVENTS_STOPPED = 0x0UL;
if (receiving)
{
int rxAmount = _p_twis->RXD.AMOUNT;
rxBuffer._iHead = rxAmount;
if (onReceiveCallback)
{
onReceiveCallback(rxAmount);
}
}
}
if (_p_twis->EVENTS_ERROR)
{
_p_twis->EVENTS_ERROR = 0x0UL;
uint32_t error = _p_twis->ERRORSRC;
_p_twis->ERRORSRC = error;
_p_twis->TASKS_STOP = 0x1UL;
}
}
TwoWire Wire(NRF_TWIM1, NRF_TWIS1, SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1_IRQn, PIN_WIRE_SDA, PIN_WIRE_SCL);
#if WIRE_INTERFACES_COUNT > 0
extern "C"
{
void SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1_IRQHandler(void)
{
Wire.onService();
}
}
#endif
#endif
|