| 51 | supported_frequencies_5G) |
| 52 | |
| 53 | static nlohmann::json wificards_to_json(const std::vector<WiFiCard> &cards) { |
| 54 | nlohmann::json j; |
| 55 | for (auto &_card : cards) { |
| 56 | nlohmann::json cardJson = _card; |
| 57 | j.push_back(cardJson); |
| 58 | } |
| 59 | return j; |
| 60 | } |
| 61 | |
| 62 | static constexpr auto WIFI_MANIFEST_FILENAME = "/tmp/wifi_manifest"; |
| 63 |
no test coverage detected