mavlink_msg_log_request_end.h
Go to the documentation of this file.
00001 // MESSAGE LOG_REQUEST_END PACKING
00002 
00003 #define MAVLINK_MSG_ID_LOG_REQUEST_END 122
00004 
00005 typedef struct __mavlink_log_request_end_t
00006 {
00007  uint8_t target_system; /*< System ID*/
00008  uint8_t target_component; /*< Component ID*/
00009 } mavlink_log_request_end_t;
00010 
00011 #define MAVLINK_MSG_ID_LOG_REQUEST_END_LEN 2
00012 #define MAVLINK_MSG_ID_122_LEN 2
00013 
00014 #define MAVLINK_MSG_ID_LOG_REQUEST_END_CRC 203
00015 #define MAVLINK_MSG_ID_122_CRC 203
00016 
00017 
00018 
00019 #define MAVLINK_MESSAGE_INFO_LOG_REQUEST_END { \
00020         "LOG_REQUEST_END", \
00021         2, \
00022         {  { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_log_request_end_t, target_system) }, \
00023          { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_log_request_end_t, target_component) }, \
00024          } \
00025 }
00026 
00027 
00038 static inline uint16_t mavlink_msg_log_request_end_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
00039                                                        uint8_t target_system, uint8_t target_component)
00040 {
00041 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00042         char buf[MAVLINK_MSG_ID_LOG_REQUEST_END_LEN];
00043         _mav_put_uint8_t(buf, 0, target_system);
00044         _mav_put_uint8_t(buf, 1, target_component);
00045 
00046         memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
00047 #else
00048         mavlink_log_request_end_t packet;
00049         packet.target_system = target_system;
00050         packet.target_component = target_component;
00051 
00052         memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
00053 #endif
00054 
00055         msg->msgid = MAVLINK_MSG_ID_LOG_REQUEST_END;
00056 #if MAVLINK_CRC_EXTRA
00057     return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
00058 #else
00059     return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
00060 #endif
00061 }
00062 
00073 static inline uint16_t mavlink_msg_log_request_end_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
00074                                                            mavlink_message_t* msg,
00075                                                            uint8_t target_system,uint8_t target_component)
00076 {
00077 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00078         char buf[MAVLINK_MSG_ID_LOG_REQUEST_END_LEN];
00079         _mav_put_uint8_t(buf, 0, target_system);
00080         _mav_put_uint8_t(buf, 1, target_component);
00081 
00082         memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
00083 #else
00084         mavlink_log_request_end_t packet;
00085         packet.target_system = target_system;
00086         packet.target_component = target_component;
00087 
00088         memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
00089 #endif
00090 
00091         msg->msgid = MAVLINK_MSG_ID_LOG_REQUEST_END;
00092 #if MAVLINK_CRC_EXTRA
00093     return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
00094 #else
00095     return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
00096 #endif
00097 }
00098 
00107 static inline uint16_t mavlink_msg_log_request_end_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_log_request_end_t* log_request_end)
00108 {
00109         return mavlink_msg_log_request_end_pack(system_id, component_id, msg, log_request_end->target_system, log_request_end->target_component);
00110 }
00111 
00121 static inline uint16_t mavlink_msg_log_request_end_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_log_request_end_t* log_request_end)
00122 {
00123         return mavlink_msg_log_request_end_pack_chan(system_id, component_id, chan, msg, log_request_end->target_system, log_request_end->target_component);
00124 }
00125 
00133 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
00134 
00135 static inline void mavlink_msg_log_request_end_send(mavlink_channel_t chan, uint8_t target_system, uint8_t target_component)
00136 {
00137 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00138         char buf[MAVLINK_MSG_ID_LOG_REQUEST_END_LEN];
00139         _mav_put_uint8_t(buf, 0, target_system);
00140         _mav_put_uint8_t(buf, 1, target_component);
00141 
00142 #if MAVLINK_CRC_EXTRA
00143     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, buf, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
00144 #else
00145     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, buf, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
00146 #endif
00147 #else
00148         mavlink_log_request_end_t packet;
00149         packet.target_system = target_system;
00150         packet.target_component = target_component;
00151 
00152 #if MAVLINK_CRC_EXTRA
00153     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, (const char *)&packet, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
00154 #else
00155     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, (const char *)&packet, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
00156 #endif
00157 #endif
00158 }
00159 
00160 #if MAVLINK_MSG_ID_LOG_REQUEST_END_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_log_request_end_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan,  uint8_t target_system, uint8_t target_component)
00169 {
00170 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00171         char *buf = (char *)msgbuf;
00172         _mav_put_uint8_t(buf, 0, target_system);
00173         _mav_put_uint8_t(buf, 1, target_component);
00174 
00175 #if MAVLINK_CRC_EXTRA
00176     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, buf, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
00177 #else
00178     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, buf, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
00179 #endif
00180 #else
00181         mavlink_log_request_end_t *packet = (mavlink_log_request_end_t *)msgbuf;
00182         packet->target_system = target_system;
00183         packet->target_component = target_component;
00184 
00185 #if MAVLINK_CRC_EXTRA
00186     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, (const char *)packet, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
00187 #else
00188     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, (const char *)packet, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
00189 #endif
00190 #endif
00191 }
00192 #endif
00193 
00194 #endif
00195 
00196 // MESSAGE LOG_REQUEST_END UNPACKING
00197 
00198 
00204 static inline uint8_t mavlink_msg_log_request_end_get_target_system(const mavlink_message_t* msg)
00205 {
00206         return _MAV_RETURN_uint8_t(msg,  0);
00207 }
00208 
00214 static inline uint8_t mavlink_msg_log_request_end_get_target_component(const mavlink_message_t* msg)
00215 {
00216         return _MAV_RETURN_uint8_t(msg,  1);
00217 }
00218 
00225 static inline void mavlink_msg_log_request_end_decode(const mavlink_message_t* msg, mavlink_log_request_end_t* log_request_end)
00226 {
00227 #if MAVLINK_NEED_BYTE_SWAP
00228         log_request_end->target_system = mavlink_msg_log_request_end_get_target_system(msg);
00229         log_request_end->target_component = mavlink_msg_log_request_end_get_target_component(msg);
00230 #else
00231         memcpy(log_request_end, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
00232 #endif
00233 }


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