| 94 | } |
| 95 | |
| 96 | size_t dbSize() { |
| 97 | size_t size = tagDB.size() * sizeof(tagRecord); |
| 98 | for (auto &tag : tagDB) { |
| 99 | if (tag->data) { |
| 100 | size += tag->len; |
| 101 | } |
| 102 | size += tag->modeConfigJson.length(); |
| 103 | } |
| 104 | return size; |
| 105 | } |
| 106 | |
| 107 | void wsSendSysteminfo() { |
| 108 | JsonDocument doc; |
no test coverage detected