pub struct COMPONENT_METADATA_DATA {
pub time_boot_ms: u32,
pub file_crc: u32,
pub uri: [u8; 100],
}
avssuas
only.Expand description
id: 397 Component metadata message, which may be requested using MAV_CMD_REQUEST_MESSAGE. This contains the MAVLink FTP URI and CRC for the component’s general metadata file. The file must be hosted on the component, and may be xz compressed. The file CRC can be used for file caching. The general metadata file can be read to get the locations of other metadata files (COMP_METADATA_TYPE) and translations, which may be hosted either on the vehicle or the internet. For more information see: https://mavlink.io/en/services/component_information.html. Note: Camera components should use CAMERA_INFORMATION instead, and autopilots may use both this message and AUTOPILOT_VERSION..
Fields§
§time_boot_ms: u32
Timestamp (time since system boot)..
file_crc: u32
CRC32 of the general metadata file..
uri: [u8; 100]
MAVLink FTP URI for the general metadata file (COMP_METADATA_TYPE_GENERAL), which may be compressed with xz. The file contains general component metadata, and may contain URI links for additional metadata (see COMP_METADATA_TYPE). The information is static from boot, and may be generated at compile time. The string needs to be zero terminated..
Implementations§
Source§impl COMPONENT_METADATA_DATA
impl COMPONENT_METADATA_DATA
pub const ENCODED_LEN: usize = 108usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for COMPONENT_METADATA_DATA
impl Clone for COMPONENT_METADATA_DATA
Source§fn clone(&self) -> COMPONENT_METADATA_DATA
fn clone(&self) -> COMPONENT_METADATA_DATA
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more