nerdralph / ArduinoShrink

replaces Arduino AVR Core functions with smaller and faster versions
MIT License
130 stars 5 forks source link

Sdfat library causes hang when ArduinoShrink included #13

Open cfbrolley opened 6 months ago

cfbrolley commented 6 months ago

Not very knowledgeable with the Sdfat library but have found an issue where my Arduino Nano will hang as soon as sd.begin is called when the ArduinoShrink library is called, but works fine without it. this is the only SPI device I have on the board and it's using default hardware SPI with CS set to pin 10.

nerdralph commented 6 months ago

What version of the Arduino IDE and what version of the SDfat library are you using? I haven't used the SDfat library, but I can try building it with and without ArduinoShrink and compare the resulting binaries.

cfbrolley commented 6 months ago

Arduino IDE 2.3.2 and SdFat 2.2.2

Thanks!