commonMain.com.divpundir.mavlink.definitions.common.SystemTime.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.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.encodeUInt64
import com.divpundir.mavlink.serialization.safeDecodeUInt32
import com.divpundir.mavlink.serialization.safeDecodeUInt64
import com.divpundir.mavlink.serialization.truncateZeros
import kotlin.Byte
import kotlin.ByteArray
import kotlin.Int
import kotlin.UInt
import kotlin.ULong
import kotlin.Unit
/**
* The system time is the time of the master clock, typically the computer clock of the main onboard
* computer.
*
* @param timeUnixUsec Timestamp (UNIX epoch time).
* units = us
* @param timeBootMs Timestamp (time since system boot).
* units = ms
*/
@GeneratedMavMessage(
id = 2u,
crcExtra = -119,
)
public data class SystemTime(
/**
* Timestamp (UNIX epoch time).
* units = us
*/
@GeneratedMavField(type = "uint64_t")
public val timeUnixUsec: ULong = 0uL,
/**
* Timestamp (time since system boot).
* units = ms
*/
@GeneratedMavField(type = "uint32_t")
public val timeBootMs: UInt = 0u,
) : MavMessage {
override val instanceCompanion: MavMessage.MavCompanion = Companion
override fun serializeV1(): ByteArray {
val encoder = MavDataEncoder(SIZE_V1)
encoder.encodeUInt64(timeUnixUsec)
encoder.encodeUInt32(timeBootMs)
return encoder.bytes
}
override fun serializeV2(): ByteArray {
val encoder = MavDataEncoder(SIZE_V2)
encoder.encodeUInt64(timeUnixUsec)
encoder.encodeUInt32(timeBootMs)
return encoder.bytes.truncateZeros()
}
public companion object : MavMessage.MavCompanion {
private const val SIZE_V1: Int = 12
private const val SIZE_V2: Int = 12
override val id: UInt = 2u
override val crcExtra: Byte = -119
override fun deserialize(bytes: ByteArray): SystemTime {
val decoder = MavDataDecoder(bytes)
val timeUnixUsec = decoder.safeDecodeUInt64()
val timeBootMs = decoder.safeDecodeUInt32()
return SystemTime(
timeUnixUsec = timeUnixUsec,
timeBootMs = timeBootMs,
)
}
public operator fun invoke(builderAction: Builder.() -> Unit): SystemTime =
Builder().apply(builderAction).build()
}
public class Builder {
public var timeUnixUsec: ULong = 0uL
public var timeBootMs: UInt = 0u
public fun build(): SystemTime = SystemTime(
timeUnixUsec = timeUnixUsec,
timeBootMs = timeBootMs,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy