I’m currently testing with mirgrating my project from 0.0.9 IDE to 0.0.12 IDE. I found out my SPI communication got broken in the 0.0.12 IDE. I wonder what is the difference in the setup process ?
I narrow down my code to the following:
//*************************************
HardwareSPI Spi(1);
int SPI_OUT = 0x0A;
int Configuration_Array[38]={0x0A, 0x0A, 0x0F, 0x0C, 0x03, 0x0E, 0x00, 0x01, 0x00, 0x0E, 0x0E, 0x0A, 0x0C, 0x0A, 0x0D, 0x00, 0x02, 0x0D, 0x0C, 0x00, 0x01, 0x0C, 0x00, 0x04, 0x06, 0x00, 0x05, 0x00, 0x06, 0x0A, 0x05, 0x05, 0x0A, 0x09, 0x00, 0x03, 0x00, 0x0A};
void setup()
{
delay(3000);
pinMode(10, OUTPUT);
pinMode(9, OUTPUT);
Spi.begin(SPI_1_125MHZ, MSBFIRST, 1); // resetting the slave device
digitalWrite(9, LOW);
delayMicroseconds(200);
digitalWrite(9, HIGH);
for (uint8 i=0;i<38;i++)
{
digitalWrite(10, LOW); // CS slave
delayMicroseconds(50);
SPI_OUT = Spi.send(Configuration_Array[i]);
digitalWrite(10, HIGH);
SerialUSB.println(SPI_OUT, HEX);
}
}
//*************************************
The above code works fine in 0.0.9, but doesn’t work at all in 0.0.12 (using the same hardware)
Many thanks!