Type Alias ParamSet

Source
pub type ParamSet = ParamSet;
Expand description

Originally defined in common::messages::param_set.

Aliased Type§

struct ParamSet {
    pub target_system: u8,
    pub target_component: u8,
    pub param_id: [u8; 16],
    pub param_value: f32,
    pub param_type: MavParamType,
}

Fields§

§target_system: u8

MAVLink field target_system.

System ID

§target_component: u8

MAVLink field target_component.

Component ID

§param_id: [u8; 16]

MAVLink field param_id.

Onboard 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: f32

MAVLink field param_value.

Onboard parameter value

§param_type: MavParamType

MAVLink field param_type.

Onboard parameter type.