| 125 | } |
| 126 | |
| 127 | void WifiHotspot::stop_async() { |
| 128 | openhd::AsyncHandle::instance().execute_async( |
| 129 | "WiFi HS", [this]() { WifiHotspot::stop(); }); |
| 130 | } |
| 131 | |
| 132 | void WifiHotspot::set_enabled_async(bool enable) { |
| 133 | if (m_is_enabled == enable) return; |
nothing calls this directly
no test coverage detected