Search found 1 match

by sailingfree
Thu Jun 13, 2024 4:32 pm
Forum: ESP32 Arduino
Topic: SD.Open() causes crashing with esp32
Replies: 9
Views: 2505

Re: SD.Open() causes crashing with esp32

I've just run into this problem too. The solution is to move the definition of the SPI object into global scope rather than have it as a local object which goes out of scope after the setup function has finished. The example in the SD library is also wrong and has been copied to other SD examples as...