-
Notifications
You must be signed in to change notification settings - Fork 5
/
arduino_spi.cpp
255 lines (200 loc) · 6.73 KB
/
arduino_spi.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
/**
* Copyright 2018 Afero, Inc.
*
* 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 "arduino_spi.h"
#include "af_logger.h"
#include "af_lib.h"
#include <SPI.h>
class ArduinoSPI {
public:
ArduinoSPI(int chipSelect, uint16_t frame_length);
void checkForInterrupt(volatile int *interrupts_pending, bool idle);
int exchangeStatus(af_status_command_t *tx, af_status_command_t *rx);
int writeStatus(af_status_command_t *c);
void sendBytes(uint8_t *bytes, int len);
void recvBytes(uint8_t *bytes, int len);
void sendBytesOffset(uint8_t *bytes, uint16_t *bytesToSend, uint16_t *offset);
void recvBytesOffset(uint8_t **bytes, uint16_t *bytesLen, uint16_t *bytesToRecv, uint16_t *offset);
private:
SPISettings _spiSettings;
int _chipSelect;
uint16_t _frameLength;
void begin();
void beginSPI(); /* settings are in this class */
void endSPI();
void transfer(uint8_t *bytes, int len);
};
struct af_transport_t {
ArduinoSPI *arduinoSPI;
};
static af_lib_t* s_af_lib = NULL;
void isrWrapper() {
if (s_af_lib) {
af_lib_mcu_isr(s_af_lib);
}
}
af_transport_t* arduino_spi_create(int chipSelect, uint16_t frame_length) {
af_transport_t *result = new af_transport_t();
result->arduinoSPI = new ArduinoSPI(chipSelect, frame_length);
return result;
}
af_lib_error_t arduino_spi_setup_interrupts(af_lib_t* af_lib, int mcuInterrupt) {
if (!af_lib) {
return AF_ERROR_INVALID_PARAM;
}
s_af_lib = af_lib;
pinMode(mcuInterrupt, INPUT);
attachInterrupt(mcuInterrupt, isrWrapper, FALLING);
return AF_SUCCESS;
}
void arduino_spi_destroy(af_transport_t *af_transport) {
delete af_transport->arduinoSPI;
delete af_transport;
}
void af_transport_check_for_interrupt_spi(af_transport_t *af_transport, volatile int *interrupts_pending, bool idle) {
af_transport->arduinoSPI->checkForInterrupt(interrupts_pending, idle);
}
int af_transport_exchange_status_spi(af_transport_t *af_transport, af_status_command_t *af_status_command_tx, af_status_command_t *af_status_command_rx) {
return af_transport->arduinoSPI->exchangeStatus(af_status_command_tx, af_status_command_rx);
}
int af_transport_write_status_spi(af_transport_t *af_transport, af_status_command_t *af_status_command) {
return af_transport->arduinoSPI->writeStatus(af_status_command);
}
void af_transport_send_bytes_offset_spi(af_transport_t *af_transport, uint8_t *bytes, uint16_t *bytes_to_send, uint16_t *offset) {
af_transport->arduinoSPI->sendBytesOffset(bytes, bytes_to_send, offset);
}
void af_transport_recv_bytes_offset_spi(af_transport_t *af_transport, uint8_t **bytes, uint16_t *bytes_len, uint16_t *bytes_to_recv, uint16_t *offset) {
af_transport->arduinoSPI->recvBytesOffset(bytes, bytes_len, bytes_to_recv, offset);
}
ArduinoSPI::ArduinoSPI(int chipSelect, uint16_t frame_length)
{
_chipSelect = chipSelect;
_frameLength = frame_length;
_spiSettings = SPISettings(1000000, LSBFIRST, SPI_MODE0);
begin();
}
void ArduinoSPI::begin()
{
pinMode(_chipSelect, OUTPUT);
digitalWrite(_chipSelect, HIGH);
SPI.begin();
}
void ArduinoSPI::beginSPI() /* settings are in this class */
{
SPI.beginTransaction(_spiSettings);
digitalWrite(_chipSelect, LOW);
delayMicroseconds(8);
}
void ArduinoSPI::endSPI()
{
//delayMicroseconds(1);
digitalWrite(_chipSelect, HIGH);
SPI.endTransaction();
}
void ArduinoSPI::transfer(uint8_t *bytes, int len)
{
SPI.transfer(bytes, len);
}
void ArduinoSPI::checkForInterrupt(volatile int *interrupts_pending, bool idle)
{
// Nothing required here.
}
int ArduinoSPI::exchangeStatus(af_status_command_t *tx, af_status_command_t *rx)
{
int result = AF_SUCCESS;
uint16_t len = af_status_command_get_size(tx);
uint8_t bytes[len];
uint8_t rbytes[len + 1];
int index = 0;
af_status_command_get_bytes(tx, bytes);
beginSPI();
for (int i=0; i < len; i++)
{
rbytes[i]=bytes[i];
}
rbytes[len]=af_status_command_get_checksum(tx);
transfer(rbytes, len + 1);
byte cmd = bytes[index++];
if (cmd != SYNC_REQUEST && cmd != SYNC_ACK) {
af_logger_print_buffer("exchangeStatus bad cmd: ");
af_logger_println_formatted_value(cmd, AF_LOGGER_HEX);
result = AF_ERROR_INVALID_COMMAND;
}
af_status_command_set_bytes_to_send(rx, (rbytes[index + 0] | (rbytes[index + 1] << 8)));
af_status_command_set_bytes_to_recv(rx, (rbytes[index + 2] | (rbytes[index + 3] << 8)));
af_status_command_set_checksum(rx, rbytes[index+4]);
endSPI();
return result;
}
int ArduinoSPI::writeStatus(af_status_command_t *c)
{
int result = AF_SUCCESS;
uint16_t len = af_status_command_get_size(c);
uint8_t bytes[len];
uint8_t rbytes[len+1];
int index = 0;
af_status_command_get_bytes(c, bytes);
beginSPI();
for (int i=0;i<len;i++)
{
rbytes[i]=bytes[i];
}
rbytes[len]=af_status_command_get_checksum(c);
transfer(rbytes, len + 1);
byte cmd = rbytes[index++];
if (cmd != SYNC_REQUEST && cmd != SYNC_ACK) {
af_logger_print_buffer("writeStatus bad cmd: ");
af_logger_println_formatted_value(cmd, AF_LOGGER_HEX);
result = AF_ERROR_INVALID_COMMAND;
}
endSPI();
return result;
}
void ArduinoSPI::sendBytes(uint8_t *bytes, int len)
{
beginSPI();
transfer(bytes, len);
endSPI();
}
void ArduinoSPI::recvBytes(uint8_t *bytes, int len)
{
beginSPI();
transfer(bytes, len);
endSPI();
}
void ArduinoSPI::sendBytesOffset(uint8_t *bytes, uint16_t *bytesToSend, uint16_t *offset)
{
uint16_t len = 0;
len = *bytesToSend > _frameLength ? _frameLength : *bytesToSend;
uint8_t buffer[len];
memset(buffer, 0xff, sizeof(buffer));
memcpy(buffer, &bytes[*offset], len);
sendBytes(buffer, len);
*offset += len;
*bytesToSend -= len;
}
void ArduinoSPI::recvBytesOffset(uint8_t **bytes, uint16_t *bytesLen, uint16_t *bytesToRecv, uint16_t *offset)
{
uint16_t len = 0;
len = *bytesToRecv > _frameLength ? _frameLength : *bytesToRecv;
if (*offset == 0) {
*bytesLen = *bytesToRecv;
*bytes = (uint8_t*)malloc(*bytesLen);
}
uint8_t *start = *bytes + *offset;
recvBytes(start, len);
*offset += len;
*bytesToRecv -= len;
}