| 68 | } |
| 69 | |
| 70 | bool spiffs_format() |
| 71 | { |
| 72 | if(fileSystemType() != IFS::IFileSystem::Type::SPIFFS) { |
| 73 | return false; |
| 74 | } |
| 75 | return fileSystemFormat() == FS_OK; |
| 76 | } |
| 77 | |
| 78 | bool spiffs_format(Storage::Partition& partition) |
| 79 | { |
nothing calls this directly
no test coverage detected