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
ESP32-S3
In sdcard_init() there is a digitalWrite(card->ssPin, HIGH) but in sdcard_unmount() there is no digitalWrite(card->ssPin, LOW), is that intended?
sdcard_init()
digitalWrite(card->ssPin, HIGH)
sdcard_unmount()
digitalWrite(card->ssPin, LOW)
See: https://github.com/espressif/arduino-esp32/blob/master/libraries/SD/src/sd_diskio.cpp#L710C3-L710C21
Not applicable
v3.0.7
Arduino IDE
GNU/Linux
40MHz
yes
115200
No response
The text was updated successfully, but these errors were encountered:
digitalWrite(card->ssPin, HIGH) is done in init just to make sure that the bus is properly set. From then on the SS pin is handled internally.
Sorry, something went wrong.
No branches or pull requests
Board
ESP32-S3
Device Description
In
sdcard_init()
there is adigitalWrite(card->ssPin, HIGH)
but insdcard_unmount()
there is nodigitalWrite(card->ssPin, LOW)
, is that intended?See: https://github.com/espressif/arduino-esp32/blob/master/libraries/SD/src/sd_diskio.cpp#L710C3-L710C21
Hardware Configuration
Not applicable
Version
v3.0.7
IDE Name
Arduino IDE
Operating System
GNU/Linux
Flash frequency
40MHz
PSRAM enabled
yes
Upload speed
115200
Description
Not applicable
Sketch
Debug Message
Other Steps to Reproduce
No response
I have checked existing issues, online documentation and the Troubleshooting Guide
The text was updated successfully, but these errors were encountered: