| 35 | } // namespace IFS |
| 36 | |
| 37 | bool spiffs_mount() |
| 38 | { |
| 39 | auto part = Storage::findDefaultPartition(Storage::Partition::SubType::Data::spiffs); |
| 40 | return part ? spiffs_mount(part) : false; |
| 41 | } |
| 42 | |
| 43 | bool spiffs_mount(Storage::Partition partition) |
| 44 | { |
no test coverage detected