commonMain.com.divpundir.mavlink.definitions.common.MavSysStatusSensorExtended.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of definitions-jvm Show documentation
Show all versions of definitions-jvm Show documentation
A modern MAVLink library for the JVM written in Kotlin.
The newest version!
package com.divpundir.mavlink.definitions.common
import com.divpundir.mavlink.api.GeneratedMavEnum
import com.divpundir.mavlink.api.GeneratedMavEnumEntry
import com.divpundir.mavlink.api.MavBitmask
import kotlin.UInt
import kotlin.collections.List
/**
* These encode the sensors whose status is sent as part of the SYS_STATUS message in the extended
* fields.
*/
@GeneratedMavEnum(bitmask = true)
public enum class MavSysStatusSensorExtended(
override val `value`: UInt,
) : MavBitmask {
/**
* 0x01 Recovery system (parachute, balloon, retracts etc)
*/
@GeneratedMavEnumEntry
MAV_SYS_STATUS_RECOVERY_SYSTEM(1u),
;
public companion object : MavBitmask.MavCompanion {
override fun getEntryFromValueOrNull(v: UInt): MavSysStatusSensorExtended? = when (v) {
1u -> MAV_SYS_STATUS_RECOVERY_SYSTEM
else -> null
}
override fun getFlagsFromValue(v: UInt): List = buildList {
if (v and 1u == 1u) add(MAV_SYS_STATUS_RECOVERY_SYSTEM)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy