3 #define MAVLINK_MSG_ID_COMMAND_ACK 77
11 #define MAVLINK_MSG_ID_COMMAND_ACK_LEN 3
12 #define MAVLINK_MSG_ID_77_LEN 3
14 #define MAVLINK_MSG_ID_COMMAND_ACK_CRC 143
15 #define MAVLINK_MSG_ID_77_CRC 143
19 #define MAVLINK_MESSAGE_INFO_COMMAND_ACK { \
22 { { "command", NULL, MAVLINK_TYPE_UINT16_T, 0, 0, offsetof(mavlink_command_ack_t, command) }, \
23 { "result", NULL, MAVLINK_TYPE_UINT8_T, 0, 2, offsetof(mavlink_command_ack_t, result) }, \
38 static inline uint16_t mavlink_msg_command_ack_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
39 uint16_t command, uint8_t result)
41 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
42 char buf[MAVLINK_MSG_ID_COMMAND_ACK_LEN];
43 _mav_put_uint16_t(buf, 0, command);
44 _mav_put_uint8_t(buf, 2, result);
46 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
52 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
55 msg->msgid = MAVLINK_MSG_ID_COMMAND_ACK;
57 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_COMMAND_ACK_LEN, MAVLINK_MSG_ID_COMMAND_ACK_CRC);
59 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
73 static inline uint16_t mavlink_msg_command_ack_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
74 mavlink_message_t* msg,
75 uint16_t command,uint8_t result)
77 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
78 char buf[MAVLINK_MSG_ID_COMMAND_ACK_LEN];
79 _mav_put_uint16_t(buf, 0, command);
80 _mav_put_uint8_t(buf, 2, result);
82 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
88 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
91 msg->msgid = MAVLINK_MSG_ID_COMMAND_ACK;
93 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_COMMAND_ACK_LEN, MAVLINK_MSG_ID_COMMAND_ACK_CRC);
95 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
107 static inline uint16_t mavlink_msg_command_ack_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
const mavlink_command_ack_t* command_ack)
109 return mavlink_msg_command_ack_pack(system_id, component_id, msg, command_ack->
command, command_ack->
result);
121 static inline uint16_t mavlink_msg_command_ack_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg,
const mavlink_command_ack_t* command_ack)
123 return mavlink_msg_command_ack_pack_chan(system_id, component_id, chan, msg, command_ack->
command, command_ack->
result);
133 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
135 static inline void mavlink_msg_command_ack_send(mavlink_channel_t chan, uint16_t command, uint8_t result)
137 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
138 char buf[MAVLINK_MSG_ID_COMMAND_ACK_LEN];
139 _mav_put_uint16_t(buf, 0, command);
140 _mav_put_uint8_t(buf, 2, result);
142 #if MAVLINK_CRC_EXTRA
143 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN, MAVLINK_MSG_ID_COMMAND_ACK_CRC);
145 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
152 #if MAVLINK_CRC_EXTRA
153 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, (
const char *)&packet, MAVLINK_MSG_ID_COMMAND_ACK_LEN, MAVLINK_MSG_ID_COMMAND_ACK_CRC);
155 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, (
const char *)&packet, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
160 #if MAVLINK_MSG_ID_COMMAND_ACK_LEN <= MAVLINK_MAX_PAYLOAD_LEN
168 static inline void mavlink_msg_command_ack_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint16_t command, uint8_t result)
170 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
171 char *buf = (
char *)msgbuf;
172 _mav_put_uint16_t(buf, 0, command);
173 _mav_put_uint8_t(buf, 2, result);
175 #if MAVLINK_CRC_EXTRA
176 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN, MAVLINK_MSG_ID_COMMAND_ACK_CRC);
178 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
185 #if MAVLINK_CRC_EXTRA
186 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, (
const char *)packet, MAVLINK_MSG_ID_COMMAND_ACK_LEN, MAVLINK_MSG_ID_COMMAND_ACK_CRC);
188 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, (
const char *)packet, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
204 static inline uint16_t mavlink_msg_command_ack_get_command(
const mavlink_message_t* msg)
206 return _MAV_RETURN_uint16_t(msg, 0);
214 static inline uint8_t mavlink_msg_command_ack_get_result(
const mavlink_message_t* msg)
216 return _MAV_RETURN_uint8_t(msg, 2);
225 static inline void mavlink_msg_command_ack_decode(
const mavlink_message_t* msg,
mavlink_command_ack_t* command_ack)
227 #if MAVLINK_NEED_BYTE_SWAP
228 command_ack->
command = mavlink_msg_command_ack_get_command(msg);
229 command_ack->
result = mavlink_msg_command_ack_get_result(msg);
231 memcpy(command_ack, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_COMMAND_ACK_LEN);
Definition: mavlink_msg_command_ack.h:5
uint8_t result
See MAV_RESULT enum.
Definition: mavlink_msg_command_ack.h:8
uint16_t command
Command ID, as defined by MAV_CMD enum.
Definition: mavlink_msg_command_ack.h:7