I try to use SPI bus at a different speed than default settings.
I use the following code to set up the MaxSpeed
void setup()
{
// initialize SPI:
SPI.beginTransaction(SPISettings(100000, MSBFIRST, SPI_MODE0));
SPI.begin();The compilation is OK but it has no effect on the clock frequency which is still 1MHz
Could you please help me ?
Thanks
JP