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
I get the following error when trying to initialize the sd card: E (1470) sdmmc_cmd: sdmmc_card_init: send_scr (1) returned 0x109 Card Mount Failed
E (1470) sdmmc_cmd: sdmmc_card_init: send_scr (1) returned 0x109 Card Mount Failed
This is the code:
#include <sd_defines.h> #include <SD_MMC.h> void setup() { Serial.begin(115200); if(!SD_MMC.begin()){ Serial.println("Card Mount Failed"); return; } uint64_t cardSize = SD_MMC.cardSize() / (1024 * 1024); Serial.printf("SD Card Size: %lluMB\n", cardSize); } void loop() {}
The text was updated successfully, but these errors were encountered:
I've got it working: https://github.com/MisterRager/RingThing/blob/1848a7f41aa0e5a324b80d0d4344424dd4d4f606/src/card.cpp
Sorry, something went wrong.
No branches or pull requests
I get the following error when trying to initialize the sd card:
E (1470) sdmmc_cmd: sdmmc_card_init: send_scr (1) returned 0x109 Card Mount Failed
This is the code:
The text was updated successfully, but these errors were encountered: