Changed SD library for nrf52 and got S&F working (#6382)

- Changed library from deprecated arduino SD library to wrapper of SdFat library
- Fixed some bugs in the S&F code for SD card storage
Now the S&F functionality works on nrf52 (tested on rak4631 with RAK15002)
This commit is contained in:
Woutvstk
2025-03-29 13:15:21 +01:00
committed by GitHub
parent d237d4f311
commit 7e7792aa51
5 changed files with 28 additions and 15 deletions

View File

@@ -219,7 +219,7 @@ void setupModules()
paxcounterModule = new PaxcounterModule();
#endif
#endif
#if defined(ARCH_ESP32) || defined(ARCH_PORTDUINO)
#if defined(ARCH_ESP32) || defined(ARCH_PORTDUINO) || defined(HAS_SDCARD)
#if !MESHTASTIC_EXCLUDE_STOREFORWARD
storeForwardModule = new StoreForwardModule();
#endif