mavlink_msg_command_ack.h
Go to the documentation of this file.
00001 // MESSAGE COMMAND_ACK PACKING
00002 
00003 #define MAVLINK_MSG_ID_COMMAND_ACK 77
00004 
00005 typedef struct __mavlink_command_ack_t
00006 {
00007  uint16_t command; /*< Command ID, as defined by MAV_CMD enum.*/
00008  uint8_t result; /*< See MAV_RESULT enum*/
00009 } mavlink_command_ack_t;
00010 
00011 #define MAVLINK_MSG_ID_COMMAND_ACK_LEN 3
00012 #define MAVLINK_MSG_ID_77_LEN 3
00013 
00014 #define MAVLINK_MSG_ID_COMMAND_ACK_CRC 143
00015 #define MAVLINK_MSG_ID_77_CRC 143
00016 
00017 
00018 
00019 #define MAVLINK_MESSAGE_INFO_COMMAND_ACK { \
00020         "COMMAND_ACK", \
00021         2, \
00022         {  { "command", NULL, MAVLINK_TYPE_UINT16_T, 0, 0, offsetof(mavlink_command_ack_t, command) }, \
00023          { "result", NULL, MAVLINK_TYPE_UINT8_T, 0, 2, offsetof(mavlink_command_ack_t, result) }, \
00024          } \
00025 }
00026 
00027 
00038 static inline uint16_t mavlink_msg_command_ack_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
00039                                                        uint16_t command, uint8_t result)
00040 {
00041 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00042         char buf[MAVLINK_MSG_ID_COMMAND_ACK_LEN];
00043         _mav_put_uint16_t(buf, 0, command);
00044         _mav_put_uint8_t(buf, 2, result);
00045 
00046         memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
00047 #else
00048         mavlink_command_ack_t packet;
00049         packet.command = command;
00050         packet.result = result;
00051 
00052         memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
00053 #endif
00054 
00055         msg->msgid = MAVLINK_MSG_ID_COMMAND_ACK;
00056 #if MAVLINK_CRC_EXTRA
00057     return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_COMMAND_ACK_LEN, MAVLINK_MSG_ID_COMMAND_ACK_CRC);
00058 #else
00059     return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
00060 #endif
00061 }
00062 
00073 static inline uint16_t mavlink_msg_command_ack_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
00074                                                            mavlink_message_t* msg,
00075                                                            uint16_t command,uint8_t result)
00076 {
00077 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00078         char buf[MAVLINK_MSG_ID_COMMAND_ACK_LEN];
00079         _mav_put_uint16_t(buf, 0, command);
00080         _mav_put_uint8_t(buf, 2, result);
00081 
00082         memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
00083 #else
00084         mavlink_command_ack_t packet;
00085         packet.command = command;
00086         packet.result = result;
00087 
00088         memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
00089 #endif
00090 
00091         msg->msgid = MAVLINK_MSG_ID_COMMAND_ACK;
00092 #if MAVLINK_CRC_EXTRA
00093     return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_COMMAND_ACK_LEN, MAVLINK_MSG_ID_COMMAND_ACK_CRC);
00094 #else
00095     return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
00096 #endif
00097 }
00098 
00107 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)
00108 {
00109         return mavlink_msg_command_ack_pack(system_id, component_id, msg, command_ack->command, command_ack->result);
00110 }
00111 
00121 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)
00122 {
00123         return mavlink_msg_command_ack_pack_chan(system_id, component_id, chan, msg, command_ack->command, command_ack->result);
00124 }
00125 
00133 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
00134 
00135 static inline void mavlink_msg_command_ack_send(mavlink_channel_t chan, uint16_t command, uint8_t result)
00136 {
00137 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00138         char buf[MAVLINK_MSG_ID_COMMAND_ACK_LEN];
00139         _mav_put_uint16_t(buf, 0, command);
00140         _mav_put_uint8_t(buf, 2, result);
00141 
00142 #if MAVLINK_CRC_EXTRA
00143     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN, MAVLINK_MSG_ID_COMMAND_ACK_CRC);
00144 #else
00145     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
00146 #endif
00147 #else
00148         mavlink_command_ack_t packet;
00149         packet.command = command;
00150         packet.result = result;
00151 
00152 #if MAVLINK_CRC_EXTRA
00153     _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);
00154 #else
00155     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, (const char *)&packet, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
00156 #endif
00157 #endif
00158 }
00159 
00160 #if MAVLINK_MSG_ID_COMMAND_ACK_LEN <= MAVLINK_MAX_PAYLOAD_LEN
00161 /*
00162   This varient of _send() can be used to save stack space by re-using
00163   memory from the receive buffer.  The caller provides a
00164   mavlink_message_t which is the size of a full mavlink message. This
00165   is usually the receive buffer for the channel, and allows a reply to an
00166   incoming message with minimum stack space usage.
00167  */
00168 static inline void mavlink_msg_command_ack_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan,  uint16_t command, uint8_t result)
00169 {
00170 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00171         char *buf = (char *)msgbuf;
00172         _mav_put_uint16_t(buf, 0, command);
00173         _mav_put_uint8_t(buf, 2, result);
00174 
00175 #if MAVLINK_CRC_EXTRA
00176     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN, MAVLINK_MSG_ID_COMMAND_ACK_CRC);
00177 #else
00178     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, buf, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
00179 #endif
00180 #else
00181         mavlink_command_ack_t *packet = (mavlink_command_ack_t *)msgbuf;
00182         packet->command = command;
00183         packet->result = result;
00184 
00185 #if MAVLINK_CRC_EXTRA
00186     _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);
00187 #else
00188     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_COMMAND_ACK, (const char *)packet, MAVLINK_MSG_ID_COMMAND_ACK_LEN);
00189 #endif
00190 #endif
00191 }
00192 #endif
00193 
00194 #endif
00195 
00196 // MESSAGE COMMAND_ACK UNPACKING
00197 
00198 
00204 static inline uint16_t mavlink_msg_command_ack_get_command(const mavlink_message_t* msg)
00205 {
00206         return _MAV_RETURN_uint16_t(msg,  0);
00207 }
00208 
00214 static inline uint8_t mavlink_msg_command_ack_get_result(const mavlink_message_t* msg)
00215 {
00216         return _MAV_RETURN_uint8_t(msg,  2);
00217 }
00218 
00225 static inline void mavlink_msg_command_ack_decode(const mavlink_message_t* msg, mavlink_command_ack_t* command_ack)
00226 {
00227 #if MAVLINK_NEED_BYTE_SWAP
00228         command_ack->command = mavlink_msg_command_ack_get_command(msg);
00229         command_ack->result = mavlink_msg_command_ack_get_result(msg);
00230 #else
00231         memcpy(command_ack, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_COMMAND_ACK_LEN);
00232 #endif
00233 }


dji_sdk_dji2mav
Author(s):
autogenerated on Thu Jun 6 2019 17:55:35