-
Notifications
You must be signed in to change notification settings - Fork 511
New issue
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
Did not work at ESP32-CAM #469
Comments
What happens if you run the QuickStart example? |
quickstart example did not work: I got standard SD library running with this parameters:
So at my ESP32-CAM board the CS Pin is definitly GPIO 13
Because of I got standard SD library running I suppose that something with SPI Interface to access SDFat is going wrong |
Try the following.
I don't have your ESP32 board so I can't test it. |
I did compile the following. But can't test it.
|
this works, |
There is a example of more general way to use non standard SPI. The arguments for SdSpiConfig are defined in the html documentation. The problem is that there are now hundreds arduino compatible boards. I can't really even test on very many. See this. |
Hi I'm using latest version on a ESP-32-CAM board.
But i didn't got it to run
I use the followingfor initialization:
if (!SD.begin(SS, SD_SCK_MHZ(10))) { Serial.println("SD Card Mount Failed"); return; }
but everything was i got was
SD-card mount failed.
SO what is the right configuration for an ESP32-CAM board ?
The text was updated successfully, but these errors were encountered: