I’ve soldered an Adafruit 254 SD module to a generic prototyping shield with the CS connected to pin 10.
Using \Examples\SD\ReadWrite.ino and changing line 36 to use pin 10:
UNO rev 3 works.
Redboard Turbo doesn’t work. (I do have to change the Serial.prints to SerialUSB.print).
This initialization part always fails:
if (!SD.begin(10)) {
SerialUSB.println(“initialization failed!”);
while (1);
}
SerialUSB.println(“initialization done.”);
Can I not use pin 10 for CS on the Redboard Turbo?
Do I have to rewire to pin 2 for the Redboard Turbo? [hope not].
Thanks
Johnny