main.com.divpundir.mavlink.definitions.common.MavOdidHeightRef.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of definitions Show documentation
Show all versions of definitions Show documentation
A modern MAVLink library for the JVM written in Kotlin.
package com.divpundir.mavlink.definitions.common
import com.divpundir.mavlink.api.GeneratedMavEnum
import com.divpundir.mavlink.api.GeneratedMavEnumEntry
import com.divpundir.mavlink.api.MavEnum
import kotlin.UInt
@GeneratedMavEnum
public enum class MavOdidHeightRef(
public override val `value`: UInt,
) : MavEnum {
/**
* The height field is relative to the take-off location.
*/
@GeneratedMavEnumEntry
OVER_TAKEOFF(0u),
/**
* The height field is relative to ground.
*/
@GeneratedMavEnumEntry
OVER_GROUND(1u),
;
public companion object : MavEnum.Companion {
public override fun getEntryFromValueOrNull(v: UInt): MavOdidHeightRef? = when (v) {
0u -> OVER_TAKEOFF
1u -> OVER_GROUND
else -> null
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy