You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please check the test program for the DRV8308.
There are 10 MHz SPI frequency mentioned. But it should be only 1MHz.
Source: ardumower/code/Brushless/DRV8308_SPI_Nano/DRV8308_SPI_Nano.ino
Line 77: SPI.beginTransaction(SPISettings(10000000, MSBFIRST, SPI_MODE0));
xxxxxxxxxx
should be
SPI.beginTransaction(SPISettings(1000000, MSBFIRST, SPI_MODE0));
Best regards, Rolf
The text was updated successfully, but these errors were encountered:
To the noble gentlemen of the cultivated lawn
Please check the test program for the DRV8308.
There are 10 MHz SPI frequency mentioned. But it should be only 1MHz.
Source: ardumower/code/Brushless/DRV8308_SPI_Nano/DRV8308_SPI_Nano.ino
Line 77: SPI.beginTransaction(SPISettings(10000000, MSBFIRST, SPI_MODE0));
xxxxxxxxxx
should be
SPI.beginTransaction(SPISettings(1000000, MSBFIRST, SPI_MODE0));
Best regards, Rolf
The text was updated successfully, but these errors were encountered: