| 3 | namespace tt::app::wifimanage { |
| 4 | |
| 5 | void State::setScanning(bool isScanning) { |
| 6 | mutex.lock(); |
| 7 | scanning = isScanning; |
| 8 | scannedAfterRadioOn |= isScanning; |
| 9 | mutex.unlock(); |
| 10 | } |
| 11 | |
| 12 | void State::setRadioState(service::wifi::RadioState state) { |
| 13 | mutex.lock(); |
no test coverage detected