| 5 | namespace Storage::Debug |
| 6 | { |
| 7 | void listPartitions(Print& out) |
| 8 | { |
| 9 | out.println(); |
| 10 | out.println(_F("Registered partitions:")); |
| 11 | for(auto part : Storage::findPartition()) { |
| 12 | out << "- " << part << endl; |
| 13 | } |
| 14 | out.println(); |
| 15 | } |
| 16 | |
| 17 | void listPartitions(Print& out, const Device& device) |
| 18 | { |
no test coverage detected