commonMain.com.divpundir.mavlink.definitions.cubepilot.CubepilotFirmwareUpdateStart.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.cubepilot
import com.divpundir.mavlink.api.GeneratedMavField
import com.divpundir.mavlink.api.GeneratedMavMessage
import com.divpundir.mavlink.api.MavMessage
import com.divpundir.mavlink.serialization.MavDataDecoder
import com.divpundir.mavlink.serialization.MavDataEncoder
import com.divpundir.mavlink.serialization.encodeUInt32
import com.divpundir.mavlink.serialization.encodeUInt8
import com.divpundir.mavlink.serialization.safeDecodeUInt32
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
/**
* Start firmware update with encapsulated data.
*
* @param targetSystem System ID.
* @param targetComponent Component ID.
* @param size FW Size.
* units = bytes
* @param crc FW CRC.
*/
@GeneratedMavMessage(
id = 50_004u,
crcExtra = -16,
)
public data class CubepilotFirmwareUpdateStart(
/**
* System ID.
*/
@GeneratedMavField(type = "uint8_t")
public val targetSystem: UByte = 0u,
/**
* Component ID.
*/
@GeneratedMavField(type = "uint8_t")
public val targetComponent: UByte = 0u,
/**
* FW Size.
* units = bytes
*/
@GeneratedMavField(type = "uint32_t")
public val size: UInt = 0u,
/**
* FW CRC.
*/
@GeneratedMavField(type = "uint32_t")
public val crc: UInt = 0u,
) : MavMessage {
override val instanceCompanion: MavMessage.MavCompanion = Companion
override fun serializeV1(): ByteArray {
val encoder = MavDataEncoder(SIZE_V1)
encoder.encodeUInt32(size)
encoder.encodeUInt32(crc)
encoder.encodeUInt8(targetSystem)
encoder.encodeUInt8(targetComponent)
return encoder.bytes
}
override fun serializeV2(): ByteArray {
val encoder = MavDataEncoder(SIZE_V2)
encoder.encodeUInt32(size)
encoder.encodeUInt32(crc)
encoder.encodeUInt8(targetSystem)
encoder.encodeUInt8(targetComponent)
return encoder.bytes.truncateZeros()
}
public companion object : MavMessage.MavCompanion {
private const val SIZE_V1: Int = 10
private const val SIZE_V2: Int = 10
override val id: UInt = 50_004u
override val crcExtra: Byte = -16
override fun deserialize(bytes: ByteArray): CubepilotFirmwareUpdateStart {
val decoder = MavDataDecoder(bytes)
val size = decoder.safeDecodeUInt32()
val crc = decoder.safeDecodeUInt32()
val targetSystem = decoder.safeDecodeUInt8()
val targetComponent = decoder.safeDecodeUInt8()
return CubepilotFirmwareUpdateStart(
targetSystem = targetSystem,
targetComponent = targetComponent,
size = size,
crc = crc,
)
}
public operator fun invoke(builderAction: Builder.() -> Unit): CubepilotFirmwareUpdateStart =
Builder().apply(builderAction).build()
}
public class Builder {
public var targetSystem: UByte = 0u
public var targetComponent: UByte = 0u
public var size: UInt = 0u
public var crc: UInt = 0u
public fun build(): CubepilotFirmwareUpdateStart = CubepilotFirmwareUpdateStart(
targetSystem = targetSystem,
targetComponent = targetComponent,
size = size,
crc = crc,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy