pub type SecureCommandReply = SecureCommandReply;Expand description
Originally defined in ardupilotmega::messages::secure_command_reply.
Aliased Type§
pub struct SecureCommandReply {
pub sequence: u32,
pub operation: SecureCommandOp,
pub result: MavResult,
pub data_length: u8,
pub data: [u8; 220],
}Fields§
§sequence: u32MAVLink field sequence.
Sequence ID from request.
operation: SecureCommandOpMAVLink field operation.
Operation that was requested.
result: MavResultMAVLink field result.
Result of command.
data_length: u8MAVLink field data_length.
Data length.
data: [u8; 220]MAVLink field data.
Reply data.