We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you run the SD_Test example: https://github.com/espressif/arduino-esp32/blob/master/libraries/SD/examples/SD_Test/SD_Test.ino on a lolin d32 pro https://github.com/espressif/arduino-esp32/blob/master/variants/d32_pro/pins_arduino.h using the SD card slot, it will fail with Card Mount Failed, because the SD library uses SS as the default slave/chip select, while the d32 has TF_CS defined for the slave select.
Card Mount Failed
SS
TF_CS
In the example if you set the CS, it runs as expected.
- if(!SD.begin()){ + if(!SD.begin(4)){
I think the actual solution is to also define SS for the D32 pro?
The text was updated successfully, but these errors were encountered:
totally correct!
Sorry, something went wrong.
bb7dea1
fixed :)
Thanks!
Fix missing SS define for D32 Pro
8c4564e
Fixes: espressif/arduino-esp32#2153
540ed4c
No branches or pull requests
If you run the SD_Test example: https://github.com/espressif/arduino-esp32/blob/master/libraries/SD/examples/SD_Test/SD_Test.ino
on a lolin d32 pro https://github.com/espressif/arduino-esp32/blob/master/variants/d32_pro/pins_arduino.h
using the SD card slot, it will fail with
Card Mount Failed
, because the SD library usesSS
as the default slave/chip select, while the d32 hasTF_CS
defined for the slave select.In the example if you set the CS, it runs as expected.
I think the actual solution is to also define
SS
for the D32 pro?The text was updated successfully, but these errors were encountered: