| 89 | #endif |
| 90 | |
| 91 | uint64_t DynStorage::freeSpace(){ |
| 92 | this->begin(); |
| 93 | #ifdef HAS_SDCARD |
| 94 | return SDCARD.totalBytes() - SDCARD.usedBytes(); |
| 95 | #endif |
| 96 | #ifndef SD_CARD_ONLY |
| 97 | return LittleFS.totalBytes() - LittleFS.usedBytes(); |
| 98 | #endif |
| 99 | } |
| 100 | |
| 101 | #ifndef SD_CARD_ONLY |
| 102 | void copyFile(File in, File out) { |
no test coverage detected