| 54 | } |
| 55 | |
| 56 | bool hyfs_mount() |
| 57 | { |
| 58 | auto fwfsPart = Storage::findDefaultPartition(Storage::Partition::SubType::Data::fwfs); |
| 59 | auto spiffsPart = Storage::findDefaultPartition(Storage::Partition::SubType::Data::spiffs); |
| 60 | return (fwfsPart && spiffsPart) ? hyfs_mount(fwfsPart, spiffsPart) : false; |
| 61 | } |
| 62 | |
| 63 | bool hyfs_mount(Storage::Partition fwfsPartition, Storage::Partition spiffsPartition) |
| 64 | { |
no test coverage detected