mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
Extract RadioNotConnectedException out of RadioInterfaceService
This commit is contained in:
parent
0d4ddaf9a0
commit
166a56a75d
2 changed files with 4 additions and 4 deletions
|
|
@ -25,10 +25,6 @@ import kotlinx.coroutines.*
|
|||
import javax.inject.Inject
|
||||
|
||||
|
||||
open class RadioNotConnectedException(message: String = "Not connected to radio") :
|
||||
BLEException(message)
|
||||
|
||||
|
||||
/**
|
||||
* Handles the bluetooth link with a mesh radio device. Does not cache any device state,
|
||||
* just does bluetooth comms etc...
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
package com.geeksville.mesh.service
|
||||
|
||||
open class RadioNotConnectedException(message: String = "Not connected to radio") :
|
||||
BLEException(message)
|
||||
Loading…
Add table
Add a link
Reference in a new issue