-
Notifications
You must be signed in to change notification settings - Fork 226
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
NOT an issues! just making SD card a lot faster. #529
Comments
Thanks. |
i did read that too. buy default the esp32 is 4-bit. but as i said, i was talking about esp32-s3 . |
so, i found proof! BUT ONLY FOR ESP32-S3. |
Interested to see results. |
funny thing! if you use the IDF , the default setting would be at 8MHz ! but arduino sets it correctly at high speed. just not sure if it does it to 20mhz or 40mhz. but all esp32-s3 can handle 40mhz. i would say it is best to set it manually just to be sure. but, then again, i did read in the datasheet or manual that SPI2 has a special pins for high speed. but then again(!) we are not working with SPI. and that is very important to tell it to sd card too. i think for that, we have to set the D3 to VCC by a 10k resistor. if we don't do that, the sd card will work as a simple SPI mode and will become in 8mhz or lower clock. this is a very long story. |
fun fun!! i got it! after a shit ton of work, i finally have it.
and it is very simple test. when we go for large files, like saving the video file, it i s going to be faster. |
Good, I'll look at adding 4 bit mode once I have completed RTSP integration |
thank you. adding 4-bit is very easy. just 2 line will change.
and next is:
|
I prefer to remain anonymous for various reasons, but you can open discussions. |
new v10.5.1 allows sd 4 bit mode to be selected, but not tested |
I'll teste it. |
### speed test for 1-bit and 4-bit SD card: so, i did the speed test. no changes in code, except putting the pins defs.
and 4-bit:
as you can see, speed jumped from |
Thanks, I've updated the readme |
yes i did see it. thank you. |
thank you for your wonderful project. there is nothing wrong here! but you didn't enable discussions, so i have to make it here. sorry for that.
the esp32-s3 is able to work with 4-bit connection to sd card. this is how:
as far as i found, in the
utilsFS.cpp
instatic bool prepSD_MMC()
, lets say i made a board namedDirty_CAMERA_ESP32S3_CAM_v1
that is connected to all 4 data pins, you add this:the important change is to make
mode1bit==false
.i have not tested fully, just searched the driver for them. but if something goes wrong, i will edit this.
The text was updated successfully, but these errors were encountered: