commonMain.com.divpundir.mavlink.api.MavDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-jvm Show documentation
Show all versions of api-jvm Show documentation
A modern MAVLink library for the JVM written in Kotlin.
package com.divpundir.mavlink.api
public fun interface MavDeserializer {
/**
* Deserializes the given [bytes] to a MAVLink message. Note that these bytes are not the entire MAVLink frame, but
* only its payload.
*/
public fun deserialize(bytes: ByteArray): T
}