-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Description
I was trying Adafruit ILI9341, but was not working.
I think the following code is a simplified version of the problem:
void setup() {
int cs = 2;
SPI.begin();
pinMode(cs, OUTPUT);
digitalWrite(cs, HIGH);
while(1) {
SPI.beginTransaction(SPISettings(1000000, MSBFIRST, SPI_MODE0));
delay(100);
digitalWrite(cs, LOW);
SPI.transfer(0x01);
digitalWrite(cs, HIGH);
SPI.endTransaction();
delay(100);
}
}
With arduino UNO, I get the following:
With F746 discovery:
or ( with F407 always)
Logic analizer settings are the same.
Can you check if you get the same results?
Metadata
Metadata
Assignees
Labels
No labels