feat(drv): Implement Arduino SD driver (#5968)

This commit is contained in:
GoT
2024-04-18 15:06:17 +02:00
committed by GitHub
parent 01a98d9071
commit d0436fbb59
13 changed files with 289 additions and 1 deletions

View File

@@ -681,6 +681,14 @@
#define LV_FS_ARDUINO_ESP_LITTLEFS_LETTER '\0' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
#endif
/*API for Arduino Sd. */
#define LV_USE_FS_ARDUINO_SD 0
#if LV_USE_FS_ARDUINO_SD
#define LV_FS_ARDUINO_SD_LETTER '\0' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
#define LV_FS_ARDUINO_SD_CS_PIN 0 /*Set the pin connected to the chip select line of the SD card */
#define LV_FS_ARDUINO_SD_FREQUENCY 40000000 /*Set the frequency used by the chip of the SD CARD */
#endif
/*LODEPNG decoder library*/
#define LV_USE_LODEPNG 0