Meshtastic-Android/app/src/main/java/com/geeksville/mesh/service/IRadioInterface.kt

16 lines
278 B
Kotlin
Raw Normal View History

package com.geeksville.mesh.service
import java.io.Closeable
interface IRadioInterface : Closeable {
fun handleSendToRadio(p: ByteArray)
}
class NopInterface : IRadioInterface {
override fun handleSendToRadio(p: ByteArray) {
}
override fun close() {
}
}