Type Alias ParamExtValue

Source
pub type ParamExtValue = ParamExtValue;
Expand description

Originally defined in common::messages::param_ext_value.

Aliased Type§

struct ParamExtValue {
    pub param_id: [u8; 16],
    pub param_value: [u8; 128],
    pub param_type: MavParamExtType,
    pub param_count: u16,
    pub param_index: u16,
}

Fields§

§param_id: [u8; 16]

MAVLink field param_id.

Parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string

§param_value: [u8; 128]

MAVLink field param_value.

Parameter value

§param_type: MavParamExtType

MAVLink field param_type.

Parameter type.

§param_count: u16

MAVLink field param_count.

Total number of parameters

§param_index: u16

MAVLink field param_index.

Index of this parameter