8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6aebc85 commit af6d120Copy full SHA for af6d120
libraries/NDP/src/NDP.cpp
@@ -363,6 +363,11 @@ int NDPClass::load(const char* fw, int bl) {
363
364
// after loading FW & DSP, we can configure the clk and increase SPI speed
365
if (loaded == 2) {
366
+ /* this delay can go away in an upcoming tiny ilib release
367
+ * and instead be a loop waiting for DSP to start */
368
+ delay(750);
369
+ /* poll to process the DSP running indication */
370
+ poll();
371
configureClock();
372
SPI1.endTransaction();
373
SPI1.beginTransaction(SPISettings(spi_speed_general, MSBFIRST, SPI_MODE0));
0 commit comments