sudomesh / disaster-radio

A (paused) work-in-progress long-range, low-bandwidth wireless disaster recovery mesh network powered by the sun.
https://disaster.radio
1.06k stars 107 forks source link

Enable Build Without SD Card Support #47

Closed candrist closed 4 years ago

candrist commented 4 years ago

Can an option be made to work without SD Card Support?

I'm Using an ESP32

paidforby commented 4 years ago

Yes, this should be supported by default. main.ino contains the following lines,

    sdCardSetup();
    if(!sdInitialized){
        spiffsSetup();
    }    

If an SD card is available, it will attempt to use that as the file system. If not, it will fall back to using the SPIFFS (the on-board SPI flash file system). What type of ESP32 specifically are you using? And what development board is it on? There are lots of different models out there.

candrist commented 4 years ago

I am using the following board.

https://a.aliexpress.com/_sICstK

candrist commented 4 years ago

Thanks!