Meshtastic-Android/app/src/main/java/com/geeksville/mesh/service/BLEException.kt
geeksville 3e89510f52 Some phones have buggy race conditions wrt finding services or characteristics
This workaround is: If we fail in that way during initial device connection
we disconnect() and try again 500 ms later.
2020-04-24 15:22:54 -07:00

5 lines
No EOL
120 B
Kotlin

package com.geeksville.mesh.service
import java.io.IOException
open class BLEException(msg: String) : IOException(msg)