| 15 | namespace Storage |
| 16 | { |
| 17 | void initialize() |
| 18 | { |
| 19 | if(spiFlash == nullptr) { |
| 20 | spiFlash = new SpiFlash; |
| 21 | registerDevice(spiFlash); |
| 22 | spiFlash->loadPartitions(PARTITION_TABLE_OFFSET); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | const Device::List getDevices() |
| 27 | { |
no test coverage detected