| 35 | void updateSSIDFrequency(const String &ssid); |
| 36 | |
| 37 | static bool isApModeActive() { |
| 38 | wifi_mode_t mode = WiFi.getMode(); |
| 39 | return mode == WIFI_MODE_AP || mode == WIFI_MODE_APSTA; |
| 40 | } |
| 41 | |
| 42 | static bool ensureKarmaApInterface(uint8_t channel) { |
| 43 | if (channel < 1 || channel > 14) channel = 1; |
no outgoing calls
no test coverage detected