mirror of
https://github.com/jscrane/r65emu.git
synced 2025-02-10 19:31:57 +00:00
permit SD on esp32
This commit is contained in:
parent
900ac37644
commit
706e27c213
@ -30,8 +30,17 @@
|
||||
#define PS2_KBD_DATA 34
|
||||
#define PS2_KBD_IRQ 35
|
||||
|
||||
// Storage
|
||||
#if !defined(NO_STORAGE)
|
||||
// flash storage (default is SPIFFS)
|
||||
#if defined(USE_SD)
|
||||
#define SD_CS SS
|
||||
#undef USE_LITTLEFS
|
||||
#undef USE_SPIFFS
|
||||
|
||||
#elif defined(USE_SPIFFS)
|
||||
#undef USE_SD
|
||||
#undef USE_LITTLEFS
|
||||
|
||||
#elif !defined(NO_STORAGE)
|
||||
#undef USE_SD
|
||||
#undef USE_LITTLEFS
|
||||
#define USE_SPIFFS
|
||||
|
Loading…
x
Reference in New Issue
Block a user