| 38 | } |
| 39 | |
| 40 | void mountAll() { |
| 41 | device_for_each_of_type(&SDCARD_TYPE, nullptr, [](::Device* device, void*) -> bool { |
| 42 | if (!device_is_ready(device)) { |
| 43 | if (device_start(device) != ERROR_NONE) { |
| 44 | } |
| 45 | } |
| 46 | return true; |
| 47 | }); |
| 48 | } |
| 49 | |
| 50 | } |
no test coverage detected