mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
fix(config): show error when radio disconnects before receiving confirmation
This commit is contained in:
parent
abcc2e89ec
commit
8af78bc2eb
2 changed files with 10 additions and 1 deletions
|
|
@ -135,7 +135,10 @@ class MeshService : Service(), Logging {
|
|||
enum class ConnectionState {
|
||||
DISCONNECTED,
|
||||
CONNECTED,
|
||||
DEVICE_SLEEP // device is in LS sleep state, it will reconnected to us over bluetooth once it has data
|
||||
DEVICE_SLEEP, // device is in LS sleep state, it will reconnected to us over bluetooth once it has data
|
||||
;
|
||||
|
||||
fun isDisconnected() = this == DISCONNECTED
|
||||
}
|
||||
|
||||
private var previousSummary: String? = null
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue