All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.divpundir.mavlink.definitions.csairlink.AirlinkEyeGsHolePushRequest.kt Maven / Gradle / Ivy

The newest version!
package com.divpundir.mavlink.definitions.csairlink

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.serialization.MavDataDecoder
import com.divpundir.mavlink.serialization.MavDataEncoder
import com.divpundir.mavlink.serialization.encodeEnumValue
import com.divpundir.mavlink.serialization.safeDecodeEnumValue
import com.divpundir.mavlink.serialization.truncateZeros
import kotlin.Byte
import kotlin.ByteArray
import kotlin.Int
import kotlin.UInt
import kotlin.Unit

/**
 * Request to hole punching
 *
 * @param respType Hole push response type
 */
@GeneratedMavMessage(
  id = 52_002u,
  crcExtra = 24,
)
public data class AirlinkEyeGsHolePushRequest(
  /**
   * Hole push response type
   */
  @GeneratedMavField(type = "uint8_t")
  public val respType: MavEnumValue = MavEnumValue.fromValue(0u),
) : MavMessage {
  override val instanceCompanion: MavMessage.MavCompanion = Companion

  override fun serializeV1(): ByteArray {
    val encoder = MavDataEncoder(SIZE_V1)
    encoder.encodeEnumValue(respType.value, 1)
    return encoder.bytes
  }

  override fun serializeV2(): ByteArray {
    val encoder = MavDataEncoder(SIZE_V2)
    encoder.encodeEnumValue(respType.value, 1)
    return encoder.bytes.truncateZeros()
  }

  public companion object : MavMessage.MavCompanion {
    private const val SIZE_V1: Int = 1

    private const val SIZE_V2: Int = 1

    override val id: UInt = 52_002u

    override val crcExtra: Byte = 24

    override fun deserialize(bytes: ByteArray): AirlinkEyeGsHolePushRequest {
      val decoder = MavDataDecoder(bytes)

      val respType = decoder.safeDecodeEnumValue(1).let { value ->
        val entry = AirlinkEyeGsHolePushRespType.getEntryFromValueOrNull(value)
        if (entry != null) MavEnumValue.of(entry) else MavEnumValue.fromValue(value)
      }

      return AirlinkEyeGsHolePushRequest(
        respType = respType,
      )
    }

    public operator fun invoke(builderAction: Builder.() -> Unit): AirlinkEyeGsHolePushRequest =
        Builder().apply(builderAction).build()
  }

  public class Builder {
    public var respType: MavEnumValue = MavEnumValue.fromValue(0u)

    public fun build(): AirlinkEyeGsHolePushRequest = AirlinkEyeGsHolePushRequest(
      respType = respType,
    )
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy