| 19 | LineBuffer<16> commandBuffer; |
| 20 | |
| 21 | Storage::Partition findSpiffsPartition(Storage::Partition appPart) |
| 22 | { |
| 23 | String name = F("spiffs"); |
| 24 | name += ota.getSlot(appPart); |
| 25 | auto part = Storage::findPartition(name); |
| 26 | if(!part) { |
| 27 | debug_w("Partition '%s' not found", name.c_str()); |
| 28 | } |
| 29 | return part; |
| 30 | } |
| 31 | |
| 32 | void upgradeCallback(Ota::Network::HttpUpgrader&, bool result) |
| 33 | { |