| 368 | *****************************************************************************/ |
| 369 | |
| 370 | void MultiIconPlugin::getConfiguration(JsonObject& jsonCfg) const |
| 371 | { |
| 372 | MutexGuard<MutexRecursive> guard(m_mutex); |
| 373 | JsonArray jsonSlots = jsonCfg.createNestedArray("slots"); |
| 374 | uint8_t slotId; |
| 375 | |
| 376 | for (slotId = 0U; slotId < _MultiIconPlugin::View::MAX_ICON_SLOTS; ++slotId) |
| 377 | { |
| 378 | (void)jsonSlots.add(m_slots[slotId].fileId); |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | bool MultiIconPlugin::setConfiguration(const JsonObjectConst& jsonCfg) |
| 383 | { |
nothing calls this directly
no outgoing calls
no test coverage detected