commonMain.com.divpundir.mavlink.definitions.ardupilotmega.MountStatus.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.ardupilotmega
import com.divpundir.mavlink.api.GeneratedMavField
import com.divpundir.mavlink.api.GeneratedMavMessage
import com.divpundir.mavlink.api.MavEnumValue
import com.divpundir.mavlink.api.MavMessage
import com.divpundir.mavlink.definitions.common.MavMountMode
import com.divpundir.mavlink.serialization.MavDataDecoder
import com.divpundir.mavlink.serialization.MavDataEncoder
import com.divpundir.mavlink.serialization.encodeEnumValue
import com.divpundir.mavlink.serialization.encodeInt32
import com.divpundir.mavlink.serialization.encodeUInt8
import com.divpundir.mavlink.serialization.safeDecodeEnumValue
import com.divpundir.mavlink.serialization.safeDecodeInt32
import com.divpundir.mavlink.serialization.safeDecodeUInt8
import com.divpundir.mavlink.serialization.truncateZeros
import kotlin.Byte
import kotlin.ByteArray
import kotlin.Int
import kotlin.UByte
import kotlin.UInt
import kotlin.Unit
/**
* Message with some status from autopilot to GCS about camera or antenna mount.
*
* @param targetSystem System ID.
* @param targetComponent Component ID.
* @param pointingA Pitch.
* units = cdeg
* @param pointingB Roll.
* units = cdeg
* @param pointingC Yaw.
* units = cdeg
* @param mountMode Mount operating mode.
*/
@GeneratedMavMessage(
id = 158u,
crcExtra = -122,
)
public data class MountStatus(
/**
* System ID.
*/
@GeneratedMavField(type = "uint8_t")
public val targetSystem: UByte = 0u,
/**
* Component ID.
*/
@GeneratedMavField(type = "uint8_t")
public val targetComponent: UByte = 0u,
/**
* Pitch.
* units = cdeg
*/
@GeneratedMavField(type = "int32_t")
public val pointingA: Int = 0,
/**
* Roll.
* units = cdeg
*/
@GeneratedMavField(type = "int32_t")
public val pointingB: Int = 0,
/**
* Yaw.
* units = cdeg
*/
@GeneratedMavField(type = "int32_t")
public val pointingC: Int = 0,
/**
* Mount operating mode.
*/
@GeneratedMavField(
type = "uint8_t",
extension = true,
)
public val mountMode: MavEnumValue = MavEnumValue.fromValue(0u),
) : MavMessage {
override val instanceCompanion: MavMessage.MavCompanion = Companion
override fun serializeV1(): ByteArray {
val encoder = MavDataEncoder(SIZE_V1)
encoder.encodeInt32(pointingA)
encoder.encodeInt32(pointingB)
encoder.encodeInt32(pointingC)
encoder.encodeUInt8(targetSystem)
encoder.encodeUInt8(targetComponent)
return encoder.bytes
}
override fun serializeV2(): ByteArray {
val encoder = MavDataEncoder(SIZE_V2)
encoder.encodeInt32(pointingA)
encoder.encodeInt32(pointingB)
encoder.encodeInt32(pointingC)
encoder.encodeUInt8(targetSystem)
encoder.encodeUInt8(targetComponent)
encoder.encodeEnumValue(mountMode.value, 1)
return encoder.bytes.truncateZeros()
}
public companion object : MavMessage.MavCompanion {
private const val SIZE_V1: Int = 14
private const val SIZE_V2: Int = 15
override val id: UInt = 158u
override val crcExtra: Byte = -122
override fun deserialize(bytes: ByteArray): MountStatus {
val decoder = MavDataDecoder(bytes)
val pointingA = decoder.safeDecodeInt32()
val pointingB = decoder.safeDecodeInt32()
val pointingC = decoder.safeDecodeInt32()
val targetSystem = decoder.safeDecodeUInt8()
val targetComponent = decoder.safeDecodeUInt8()
val mountMode = decoder.safeDecodeEnumValue(1).let { value ->
val entry = MavMountMode.getEntryFromValueOrNull(value)
if (entry != null) MavEnumValue.of(entry) else MavEnumValue.fromValue(value)
}
return MountStatus(
targetSystem = targetSystem,
targetComponent = targetComponent,
pointingA = pointingA,
pointingB = pointingB,
pointingC = pointingC,
mountMode = mountMode,
)
}
public operator fun invoke(builderAction: Builder.() -> Unit): MountStatus =
Builder().apply(builderAction).build()
}
public class Builder {
public var targetSystem: UByte = 0u
public var targetComponent: UByte = 0u
public var pointingA: Int = 0
public var pointingB: Int = 0
public var pointingC: Int = 0
public var mountMode: MavEnumValue = MavEnumValue.fromValue(0u)
public fun build(): MountStatus = MountStatus(
targetSystem = targetSystem,
targetComponent = targetComponent,
pointingA = pointingA,
pointingB = pointingB,
pointingC = pointingC,
mountMode = mountMode,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy