forked from RudolphRiedel/FT800-FT813
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EVE_cpp_target.cpp
612 lines (486 loc) · 18 KB
/
EVE_cpp_target.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
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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
/*
@file EVE_target.cpp
@brief target specific functions for C++ targets, so far only Arduino targets
@version 5.0
@date 2023-09-30
@author Rudolph Riedel
@section LICENSE
MIT License
Copyright (c) 2016-2023 Rudolph Riedel
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@section History
5.0
- changed the DMA buffer from uin8_t to uint32_t
- added a section for Arduino-ESP32
- corrected the clock-divider settings for ESP32
- added DMA to ARDUINO_METRO_M4 target
- added DMA to ARDUINO_NUCLEO_F446RE target
- added DMA to Arduino-ESP32 target
- added a native ESP32 target with DMA
- added an ARDUINO_TEENSY41 target with DMA support
- added DMA for the Raspberry Pi Pico - RP2040
- added ARDUINO_TEENSY35 to the ARDUINO_TEENSY41 target
- split up this file in EVE_target.c for the plain C targets and EVE_target.cpp for the Arduino C++ targets
- converted all TABs to SPACEs
- copied over the SPI and DMA support functions for the RP2040 baremetall target to be used under Arduino
- modified the WIZIOPICO target for Arduino RP2040 to also work with ArduinoCore-mbed
- fixed the ESP32 target to work with the ESP32-S3 as well
- basic maintenance: checked for violations of white space and indent rules
- fixed a few warnings about missing initializers when compiling with the Arduino IDE 2.1.0
- added ARDUINO_TEENSY40 to the Teensy 4 target
- added UNO R4 functions for blocking buffered SPI transfer
- changed the Arduino Nucleo 446RE target to make clear this is only for SPI1
- added ARDUINO_GIGA target for blocking buffered SPI transfer
- added ARDUINO_PORTENTA_H7 target for blocking buffered SPI transfer
- reworked the ESP32 support code to no longer use ESP-IDF for DMA transfers,
this is slower and blocking but Arduino-ESP32 got siginificantly faster by now
and using only the SPI class allows other SPI devices more easily
- optimized for ESP32 by switching to SPI.writeBytes()
- added generic Arduino STM32 target
- added check and code for optional macro parameter EVE_SPI_BOOST in generic Arduino STM32 target
- fix: target ARDUINO_NUCLEO_F446RE did not build anymore
- restored the ESP32 ESP-IDF code and made it selectable by macro EVE_USE_ESP_IDF
- removed the switching of clock speeds for ESP32 Arduino buffer transfers to give back control to the application
- removed the unfortunately defunct WIZIOPICO
- switched from the custom PICOPI macro to ARDUINO_RASPBERRY_PI_PICO
*/
#if defined (ARDUINO)
#if defined (ARDUINO_METRO_M4)
#include "EVE_target.h"
#include "EVE_commands.h"
#include <Adafruit_ZeroDMA.h>
#if defined (EVE_DMA)
uint32_t EVE_dma_buffer[1025U];
volatile uint16_t EVE_dma_buffer_index;
volatile uint8_t EVE_dma_busy = 0;
Adafruit_ZeroDMA myDMA;
DmacDescriptor *desc;
/* Callback for end-of-DMA-transfer */
void dma_callback(Adafruit_ZeroDMA *dma)
{
while (0U == SERCOM2->SPI.INTFLAG.bit.TXC);
SERCOM2->SPI.CTRLB.bit.RXEN = 1; /* switch receiver on by setting RXEN to 1 which is not enable protected */
EVE_dma_busy = 0;
EVE_cs_clear();
}
void EVE_init_dma(void)
{
myDMA.setTrigger(SERCOM2_DMAC_ID_TX);
myDMA.setAction(DMA_TRIGGER_ACTON_BEAT);
myDMA.allocate();
myDMA.setCallback(dma_callback);
desc = myDMA.addDescriptor(
NULL, /* from */
(void *) &SERCOM2->SPI.DATA.reg, /* to */
100, /* size */
DMA_BEAT_SIZE_BYTE, /* beat size -> byte */
true, /* increment source */
false); /* increment dest */
}
void EVE_start_dma_transfer(void)
{
myDMA.changeDescriptor(desc, (void *) (((uint32_t) &EVE_dma_buffer[0]) + 1U), NULL, (EVE_dma_buffer_index * 4U) - 1U);
SERCOM2->SPI.CTRLB.bit.RXEN = 0; /* switch receiver off by setting RXEN to 0 which is not enable-protected */
EVE_cs_set();
EVE_dma_busy = 42;
myDMA.startJob();
//SPI.transfer( ((uint8_t *) &EVE_dma_buffer[0])+1, ((uint8_t *) &EVE_dma_buffer[0]), (((EVE_dma_buffer_index)*4)-1), false ); /* alternative to using ZeroDMA */
}
#endif /* DMA */
#endif /* ARDUINO_METRO_M4 */
/* ################################################################## */
/* ################################################################## */
#if defined (ARDUINO_NUCLEO_F446RE)
#include "EVE_target.h"
#include "EVE_commands.h"
SPI_HandleTypeDef eve_spi_handle;
void EVE_init_spi(void)
{
#if EVE_SPI_UNIT == 1U
__HAL_RCC_GPIOA_CLK_ENABLE();
__HAL_RCC_SPI1_CLK_ENABLE();
/* SPI1 GPIO Configuration: PA5 -> SPI1_SCK, PA6 -> SPI1_MISO, PA7 -> SPI1_MOSI */
GPIO_InitTypeDef gpio_init;
gpio_init.Pin = GPIO_PIN_5|GPIO_PIN_6|GPIO_PIN_7;
gpio_init.Mode = GPIO_MODE_AF_PP;
gpio_init.Pull = GPIO_NOPULL;
gpio_init.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
gpio_init.Alternate = GPIO_AF5_SPI1;
HAL_GPIO_Init(GPIOA, &gpio_init);
eve_spi_handle.Instance = EVE_SPI;
#else
#error SPI1 only, add other configurations here
#endif
eve_spi_handle.Init.Mode = SPI_MODE_MASTER;
eve_spi_handle.Init.Direction = SPI_DIRECTION_2LINES;
eve_spi_handle.Init.DataSize = SPI_DATASIZE_8BIT;
eve_spi_handle.Init.CLKPolarity = SPI_POLARITY_LOW;
eve_spi_handle.Init.CLKPhase = SPI_PHASE_1EDGE;
eve_spi_handle.Init.NSS = SPI_NSS_SOFT;
eve_spi_handle.Init.BaudRatePrescaler = SPI_BAUDRATEPRESCALER_8;
eve_spi_handle.Init.FirstBit = SPI_FIRSTBIT_MSB;
eve_spi_handle.Init.TIMode = SPI_TIMODE_DISABLED;
eve_spi_handle.Init.CRCCalculation = SPI_CRCCALCULATION_DISABLED;
eve_spi_handle.Init.CRCPolynomial = 3;
HAL_SPI_Init(&eve_spi_handle);
__HAL_SPI_ENABLE(&eve_spi_handle);
}
#if defined (EVE_DMA)
uint32_t EVE_dma_buffer[1025U];
volatile uint16_t EVE_dma_buffer_index;
volatile uint8_t EVE_dma_busy = 0;
DMA_HandleTypeDef eve_dma_handle;
extern "C" void DMA2_Stream3_IRQHandler(void)
{
HAL_DMA_IRQHandler(&eve_dma_handle);
}
/* Callback for end-of-DMA-transfer */
void HAL_SPI_TxCpltCallback(SPI_HandleTypeDef *hspi)
{
EVE_dma_busy = 0;
EVE_cs_clear();
}
void EVE_init_dma(void)
{
#if EVE_SPI_UNIT == 1U
__HAL_RCC_DMA2_CLK_ENABLE();
eve_dma_handle.Instance = DMA2_Stream3;
eve_dma_handle.Init.Channel = DMA_CHANNEL_3;
#else
#error SPI1 only, add other configurations here
#endif
eve_dma_handle.Init.Direction = DMA_MEMORY_TO_PERIPH;
eve_dma_handle.Init.PeriphInc = DMA_PINC_DISABLE;
eve_dma_handle.Init.MemInc = DMA_MINC_ENABLE;
eve_dma_handle.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE;
eve_dma_handle.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE;
eve_dma_handle.Init.Mode = DMA_NORMAL;
eve_dma_handle.Init.Priority = DMA_PRIORITY_HIGH;
eve_dma_handle.Init.FIFOMode = DMA_FIFOMODE_DISABLE;
HAL_DMA_Init(&eve_dma_handle);
__HAL_LINKDMA(&eve_spi_handle, hdmatx, eve_dma_handle);
#if EVE_SPI_UNIT == 1U
HAL_NVIC_SetPriority(DMA2_Stream3_IRQn, 0, 0);
HAL_NVIC_EnableIRQ(DMA2_Stream3_IRQn);
#else
#error SPI1 only, add other configurations here
#endif
}
void EVE_start_dma_transfer(void)
{
EVE_cs_set();
if (HAL_OK == HAL_SPI_Transmit_DMA(&eve_spi_handle, ((uint8_t *) &EVE_dma_buffer[0]) + 1U, ((EVE_dma_buffer_index) * 4U) - 1U))
{
EVE_dma_busy = 42;
}
}
#endif /* DMA */
#endif /* ARDUINO_NUCLEO_F446RE */
/* ################################################################## */
/* ################################################################## */
#if defined (ARDUINO_TEENSY41) \
|| defined (ARDUINO_TEENSY35) \
|| defined (ARDUINO_TEENSY40)
#include "EVE_target.h"
#include <SPI.h>
#if defined (EVE_DMA)
uint32_t EVE_dma_buffer[1025U];
volatile uint16_t EVE_dma_buffer_index;
volatile uint8_t EVE_dma_busy = 0;
EventResponder EVE_spi_event;
/* Callback for end-of-DMA-transfer */
void dma_callback(EventResponderRef event_responder)
{
EVE_dma_busy = 0;
EVE_cs_clear();
}
void EVE_init_dma(void)
{
EVE_spi_event.attachImmediate(&dma_callback);
}
void EVE_start_dma_transfer(void)
{
EVE_cs_set();
EVE_dma_busy = 42;
SPI.transfer( ((uint8_t *) &EVE_dma_buffer[0]) + 1U, NULL, (((EVE_dma_buffer_index) * 4U) - 1U), EVE_spi_event);
}
#endif /* DMA */
#endif /* Teensy 4.1 */
/* ################################################################## */
/* ################################################################## */
#if defined (ARDUINO_RASPBERRY_PI_PICO)
#include "EVE_target.h"
#include "EVE_commands.h"
void EVE_init_spi(void)
{
gpio_set_function(EVE_MISO, GPIO_FUNC_SPI);
gpio_set_function(EVE_SCK, GPIO_FUNC_SPI);
gpio_set_function(EVE_MOSI, GPIO_FUNC_SPI);
/* trap:
ArduinoCore-mbed/cores/arduino/mbed/targets/TARGET_RASPBERRYPI/TARGET_RP2040/pico-sdk/rp2_common/hardware_spi/include/hardware/spi.h
is not the same as:
pico-sdk/src/rp2_common/hardware_spi/include/hardware/spi.h
The function spi_init() was renamed to _spi_init().
*/
_spi_init(EVE_SPI, 8000000U);
}
#if defined (EVE_DMA)
#include "hardware/dma.h"
#include "hardware/irq.h"
uint32_t EVE_dma_buffer[1025U];
volatile uint16_t EVE_dma_buffer_index;
volatile uint8_t EVE_dma_busy = 0;
int dma_tx;
dma_channel_config dma_tx_config;
static void EVE_DMA_handler(void)
{
dma_hw->ints0 = 1U << dma_tx; /* ack irq */
while ((spi_get_hw(EVE_SPI)->sr & SPI_SSPSR_BSY_BITS) != 0U); /* wait for the SPI to be done transmitting */
EVE_dma_busy = 0;
EVE_cs_clear();
}
void EVE_init_dma(void)
{
dma_tx = dma_claim_unused_channel(true);
dma_tx_config = dma_channel_get_default_config(dma_tx);
channel_config_set_transfer_data_size(&dma_tx_config, DMA_SIZE_8);
channel_config_set_dreq(&dma_tx_config, spi_get_index(EVE_SPI) ? DREQ_SPI1_TX : DREQ_SPI0_TX);
dma_channel_set_irq0_enabled (dma_tx, true);
irq_set_exclusive_handler(DMA_IRQ_0, EVE_DMA_handler);
irq_set_enabled(DMA_IRQ_0, true);
}
void EVE_start_dma_transfer(void)
{
EVE_cs_set();
dma_channel_configure(dma_tx, &dma_tx_config,
&spi_get_hw(EVE_SPI)->dr, /* write address */
((uint8_t *) &EVE_dma_buffer[0]) + 1U, /* read address */
(((EVE_dma_buffer_index) * 4U) - 1U), /* element count (each element is of size transfer_data_size) */
true); /* start transfer */
EVE_dma_busy = 42;
}
#endif /* DMA */
#endif /* ARDUINO_RASPBERRY_PI_PICO */
/* ################################################################## */
/* ################################################################## */
#if defined (ARDUINO_UNOR4_MINIMA) || defined (ARDUINO_UNOR4_WIFI)
//#include "EVE_target.h"
#include "EVE.h"
#include <SPI.h>
#include <r_dmac.h>
#if defined (EVE_DMA)
uint32_t EVE_dma_buffer[1025U];
volatile uint16_t EVE_dma_buffer_index;
volatile uint8_t EVE_dma_busy = 0;
#if 0
#define SPI_REG(channel) ((R_SPI0_Type *) ((uint32_t) R_SPI0 + \
((uint32_t) R_SPI1 - (uint32_t) R_SPI0) * (channel)))
R_SPI0_Type *spi_regs = SPI_REG(EVE_SPI);
volatile fsp_err_t dma_initialized = FSP_ERR_NOT_OPEN;
typedef struct
{
transfer_info_t info;
transfer_cfg_t cfg;
// transfer_instance_t inst;
dmac_instance_ctrl_t ctrl;
dmac_extended_cfg_t extend;
} fsp_dma_t;
fsp_dma_t eve_dma = {};
#endif
void EVE_init_dma(void)
{
#if 0
eve_dma.info.num_blocks = 1;
eve_dma.info.p_src = &EVE_dma_buffer[1];
eve_dma.info.p_dest = (void *) &spi_regs->SPDR;
eve_dma.info.transfer_settings_word_b.dest_addr_mode = TRANSFER_ADDR_MODE_FIXED;
eve_dma.info.transfer_settings_word_b.repeat_area = TRANSFER_REPEAT_AREA_SOURCE;
eve_dma.info.transfer_settings_word_b.irq = TRANSFER_IRQ_END;
eve_dma.info.transfer_settings_word_b.chain_mode = TRANSFER_CHAIN_MODE_DISABLED;
eve_dma.info.transfer_settings_word_b.src_addr_mode = TRANSFER_ADDR_MODE_INCREMENTED;
eve_dma.info.transfer_settings_word_b.size = TRANSFER_SIZE_4_BYTE;
eve_dma.info.transfer_settings_word_b.mode = TRANSFER_MODE_BLOCK;
eve_dma.cfg.p_info = &eve_dma.info;
eve_dma.cfg.p_extend = &eve_dma.extend;
if (FSP_SUCCESS == R_DMAC_Open(&eve_dma.ctrl, &eve_dma.cfg))
{
dma_initialized = FSP_SUCCESS;
}
#endif
}
void EVE_start_dma_transfer(void)
{
EVE_cs_set();
#if 0
eve_dma.info.length = EVE_dma_buffer_index - 1U;
if (FSP_SUCCESS == dma_initialized)
{
SPI.transfer(((uint8_t *) &EVE_dma_buffer[0]) + 1U, 3U);
spi_regs->SPCR_b.TXMD = 0;
SPI.transfer(((uint8_t *) &EVE_dma_buffer[1]), ((EVE_dma_buffer_index - 1U) * 4U));
EVE_cs_clear();
}
else
#endif
{
SPI.transfer(((uint8_t *) &EVE_dma_buffer[0]) + 1U, (((EVE_dma_buffer_index) * 4U) - 1U));
EVE_cs_clear();
}
}
#endif /* DMA */
#endif /* UNO R4 */
/* ################################################################## */
/* ################################################################## */
#if defined (ARDUINO_GIGA)
#include "EVE.h"
#include <SPI.h>
#if defined (EVE_DMA)
uint32_t EVE_dma_buffer[1025U];
volatile uint16_t EVE_dma_buffer_index;
volatile uint8_t EVE_dma_busy = 0;
void EVE_init_dma(void)
{
}
void EVE_start_dma_transfer(void)
{
EVE_cs_set();
SPI.transfer(((uint8_t *) &EVE_dma_buffer[0]) + 1U, (((EVE_dma_buffer_index) * 4U) - 1U));
EVE_cs_clear();
}
#endif /* DMA */
#endif /* GIGA */
/* ################################################################## */
/* ################################################################## */
#if defined (ARDUINO_PORTENTA_H7_M7) || defined (ARDUINO_PORTENTA_H7_M4)
#include "EVE.h"
#include <SPI.h>
#if defined (EVE_DMA)
uint32_t EVE_dma_buffer[1025U];
volatile uint16_t EVE_dma_buffer_index;
volatile uint8_t EVE_dma_busy = 0;
void EVE_init_dma(void)
{
}
void EVE_start_dma_transfer(void)
{
EVE_cs_set();
SPI.transfer(((uint8_t *) &EVE_dma_buffer[0]) + 1U, (((EVE_dma_buffer_index) * 4U) - 1U));
EVE_cs_clear();
}
#endif /* DMA */
#endif /* PORTENTA H7 */
/* ################################################################## */
/* ################################################################## */
#if defined (ESP32)
#include "EVE_target.h"
#include "EVE.h"
#include <SPI.h>
#if defined (EVE_USE_ESP_IDF)
/* note: this is using the ESP-IDF driver as the Arduino class */
/* and driver does not allow DMA for SPI */
/* do not use this if you do not want to use the SPI exclusively for EVE */
spi_device_handle_t EVE_spi_device = {};
spi_device_handle_t EVE_spi_device_simple = {};
static void eve_spi_post_transfer_callback(void)
{
digitalWrite(EVE_CS, HIGH); /* tell EVE to stop listen */
#if defined (EVE_DMA)
EVE_dma_busy = 0;
#endif
}
void EVE_init_spi(void)
{
spi_bus_config_t buscfg = {};
spi_device_interface_config_t devcfg = {};
buscfg.mosi_io_num = EVE_MOSI;
buscfg.miso_io_num = EVE_MISO;
buscfg.sclk_io_num = EVE_SCK;
buscfg.quadwp_io_num = -1;
buscfg.quadhd_io_num = -1;
buscfg.max_transfer_sz= 4088;
devcfg.clock_speed_hz = 16UL * 1000000UL; /* clock = 16 MHz */
devcfg.mode = 0; /* SPI mode 0 */
devcfg.spics_io_num = -1; /* CS pin operated by app */
devcfg.queue_size = 3; /* we need only one transaction in the que */
devcfg.address_bits = 24; /* 24 bits for the address */
devcfg.command_bits = 0; /* command operated by app */
devcfg.post_cb = (transaction_cb_t)eve_spi_post_transfer_callback;
spi_bus_initialize(SPI2_HOST, &buscfg, SPI_DMA_CH_AUTO);
spi_bus_add_device(SPI2_HOST, &devcfg, &EVE_spi_device);
devcfg.address_bits = 0;
devcfg.post_cb = 0;
devcfg.clock_speed_hz = 10UL * 1000000UL; /* Clock = 10 MHz */
spi_bus_add_device(SPI2_HOST, &devcfg, &EVE_spi_device_simple);
}
#endif
#if defined (EVE_DMA)
uint32_t EVE_dma_buffer[1025U];
volatile uint16_t EVE_dma_buffer_index;
volatile uint8_t EVE_dma_busy = 0;
void EVE_init_dma(void)
{
}
void EVE_start_dma_transfer(void)
{
#if defined (EVE_USE_ESP_IDF)
spi_transaction_t EVE_spi_transaction = {};
digitalWrite(EVE_CS, LOW); /* make EVE listen */
EVE_spi_transaction.tx_buffer = (uint8_t *) &EVE_dma_buffer[1];
EVE_spi_transaction.length = (EVE_dma_buffer_index-1) * 4U * 8U;
EVE_spi_transaction.addr = 0x00b02578U; /* WRITE + REG_CMDB_WRITE; */
spi_device_queue_trans(EVE_spi_device, &EVE_spi_transaction, portMAX_DELAY);
EVE_dma_busy = 42;
#else
/* no DMA for Arduino, but at least we can transfer a single large buffer */
EVE_cs_set();
SPI.writeBytes(((uint8_t *) &EVE_dma_buffer[0]) + 1U, (((EVE_dma_buffer_index) * 4U) - 1U));
EVE_cs_clear();
#endif
}
#endif /* EVE_DMA */
#endif /* ESP32 */
/* ################################################################## */
/* ################################################################## */
#if defined (ARDUINO_ARCH_STM32)
#if !defined (ARDUINO_NUCLEO_F446RE)
#include "EVE.h"
#include <SPI.h>
#if defined (EVE_DMA)
uint32_t EVE_dma_buffer[1025U];
volatile uint16_t EVE_dma_buffer_index;
volatile uint8_t EVE_dma_busy = 0;
void EVE_init_dma(void)
{
}
void EVE_start_dma_transfer(void)
{
EVE_cs_set();
#if !defined (EVE_SPI_BOOST)
SPI.transfer(((uint8_t *) &EVE_dma_buffer[0]) + 1U, (((EVE_dma_buffer_index) * 4U) - 1U));
#else
uint8_t *buffer = ((uint8_t *) &EVE_dma_buffer[0]) + 1U;
size_t count = (((EVE_dma_buffer_index) * 4U) - 1U);
for (size_t index = 0; index < count; index++)
{
spi_transmit(buffer[index]);
}
#endif
EVE_cs_clear();
}
#endif /* DMA */
#endif
#endif /* ARDUINO_ARCH_STM32 */
#endif /* ARDUINO */