commonMain.com.divpundir.mavlink.definitions.common.MavEventCurrentSequenceFlags.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.MavEnum
import kotlin.UInt
/**
* Flags for CURRENT_EVENT_SEQUENCE.
*/
@GeneratedMavEnum
public enum class MavEventCurrentSequenceFlags(
override val `value`: UInt,
) : MavEnum {
/**
* A sequence reset has happened (e.g. vehicle reboot).
*/
@GeneratedMavEnumEntry
RESET(1u),
;
public companion object : MavEnum.MavCompanion {
override fun getEntryFromValueOrNull(v: UInt): MavEventCurrentSequenceFlags? = when (v) {
1u -> RESET
else -> null
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy