-
Notifications
You must be signed in to change notification settings - Fork 7k
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
drivers: esp32: SDHC implementation #71165
Conversation
The following west manifest projects have been modified in this Pull Request:
Note: This message is automatically posted and updated by the Manifest GitHub Action. |
f47fb71
to
d9fdeab
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
General comment- please avoid using static global variables in this driver, unless the variable can be shared across multiple instances. For example, it seems one HAL context structure would need to be allocated per device instance, so that structure should be defined in a device data structure
3cb2ed3
to
e90c96a
Compare
ffdebde
to
ab54a1f
Compare
hal_espressif update for SDHC driver support Signed-off-by: Raffael Rostagno <raffael.rostagno@espressif.com>
3e2802f
to
d239364
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the work here!
Implementation of SDHC driver for ESP32 Signed-off-by: Raffael Rostagno <raffael.rostagno@espressif.com>
Configuration files to enable SDHC in esp_wrover_kit Signed-off-by: Raffael Rostagno <raffael.rostagno@espressif.com>
Alias created for sdhc0 SPI device to avoid conflict with SDIO device names. Signed-off-by: Raffael Rostagno <raffael.rostagno@espressif.com>
Hei, I'm seeing error about |
Update revision reference for PR zephyrproject-rtos#71165 as needed. Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
Update revision reference for PR #71165 as needed. Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
Update revision reference for PR zephyrproject-rtos#71165 as needed. Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
ESP32 support for SD cards using SDIO interface