Merge pull request #408 from meshtastic/connection-sleep

Issue #392 - fix connected but sleeping text to reflect actual device state
This commit is contained in:
Andre Kirchhoff
2022-04-07 23:53:05 -03:00
committed by GitHub
19 changed files with 21 additions and 19 deletions

View File

@@ -1225,8 +1225,10 @@ class MeshService : Service(), Logging {
when (intent.action) {
RadioInterfaceService.RADIO_CONNECTED_ACTION -> {
try {
// sleep now disabled by default on ESP32, permanent is true unless isPowerSaving enabled
val lsEnabled = radioConfig?.preferences?.isPowerSaving ?: false
val connected = intent.getBooleanExtra(EXTRA_CONNECTED, false)
val permanent = intent.getBooleanExtra(EXTRA_PERMANENT, false)
val permanent = intent.getBooleanExtra(EXTRA_PERMANENT, false) || !lsEnabled
onConnectionChanged(
when {
connected -> ConnectionState.CONNECTED