Merge remote-tracking branch 'upstream/master' into abo_fw_alt_vel_control
[inav.git] / lib / main / MAVLink / common / mavlink_msg_log_request_end.h
bloba2a7fe361b42cca8ddebbce2523f8a455654be42
1 #pragma once
2 // MESSAGE LOG_REQUEST_END PACKING
4 #define MAVLINK_MSG_ID_LOG_REQUEST_END 122
7 typedef struct __mavlink_log_request_end_t {
8 uint8_t target_system; /*< System ID*/
9 uint8_t target_component; /*< Component ID*/
10 } mavlink_log_request_end_t;
12 #define MAVLINK_MSG_ID_LOG_REQUEST_END_LEN 2
13 #define MAVLINK_MSG_ID_LOG_REQUEST_END_MIN_LEN 2
14 #define MAVLINK_MSG_ID_122_LEN 2
15 #define MAVLINK_MSG_ID_122_MIN_LEN 2
17 #define MAVLINK_MSG_ID_LOG_REQUEST_END_CRC 203
18 #define MAVLINK_MSG_ID_122_CRC 203
22 #if MAVLINK_COMMAND_24BIT
23 #define MAVLINK_MESSAGE_INFO_LOG_REQUEST_END { \
24 122, \
25 "LOG_REQUEST_END", \
26 2, \
27 { { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_log_request_end_t, target_system) }, \
28 { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_log_request_end_t, target_component) }, \
29 } \
31 #else
32 #define MAVLINK_MESSAGE_INFO_LOG_REQUEST_END { \
33 "LOG_REQUEST_END", \
34 2, \
35 { { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_log_request_end_t, target_system) }, \
36 { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_log_request_end_t, target_component) }, \
37 } \
39 #endif
41 /**
42 * @brief Pack a log_request_end message
43 * @param system_id ID of this system
44 * @param component_id ID of this component (e.g. 200 for IMU)
45 * @param msg The MAVLink message to compress the data into
47 * @param target_system System ID
48 * @param target_component Component ID
49 * @return length of the message in bytes (excluding serial stream start sign)
51 static inline uint16_t mavlink_msg_log_request_end_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
52 uint8_t target_system, uint8_t target_component)
54 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
55 char buf[MAVLINK_MSG_ID_LOG_REQUEST_END_LEN];
56 _mav_put_uint8_t(buf, 0, target_system);
57 _mav_put_uint8_t(buf, 1, target_component);
59 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
60 #else
61 mavlink_log_request_end_t packet;
62 packet.target_system = target_system;
63 packet.target_component = target_component;
65 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
66 #endif
68 msg->msgid = MAVLINK_MSG_ID_LOG_REQUEST_END;
69 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_LOG_REQUEST_END_MIN_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
72 /**
73 * @brief Pack a log_request_end message on a channel
74 * @param system_id ID of this system
75 * @param component_id ID of this component (e.g. 200 for IMU)
76 * @param chan The MAVLink channel this message will be sent over
77 * @param msg The MAVLink message to compress the data into
78 * @param target_system System ID
79 * @param target_component Component ID
80 * @return length of the message in bytes (excluding serial stream start sign)
82 static inline uint16_t mavlink_msg_log_request_end_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
83 mavlink_message_t* msg,
84 uint8_t target_system,uint8_t target_component)
86 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
87 char buf[MAVLINK_MSG_ID_LOG_REQUEST_END_LEN];
88 _mav_put_uint8_t(buf, 0, target_system);
89 _mav_put_uint8_t(buf, 1, target_component);
91 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
92 #else
93 mavlink_log_request_end_t packet;
94 packet.target_system = target_system;
95 packet.target_component = target_component;
97 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
98 #endif
100 msg->msgid = MAVLINK_MSG_ID_LOG_REQUEST_END;
101 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_LOG_REQUEST_END_MIN_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
105 * @brief Encode a log_request_end struct
107 * @param system_id ID of this system
108 * @param component_id ID of this component (e.g. 200 for IMU)
109 * @param msg The MAVLink message to compress the data into
110 * @param log_request_end C-struct to read the message contents from
112 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)
114 return mavlink_msg_log_request_end_pack(system_id, component_id, msg, log_request_end->target_system, log_request_end->target_component);
118 * @brief Encode a log_request_end struct on a channel
120 * @param system_id ID of this system
121 * @param component_id ID of this component (e.g. 200 for IMU)
122 * @param chan The MAVLink channel this message will be sent over
123 * @param msg The MAVLink message to compress the data into
124 * @param log_request_end C-struct to read the message contents from
126 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)
128 return mavlink_msg_log_request_end_pack_chan(system_id, component_id, chan, msg, log_request_end->target_system, log_request_end->target_component);
132 * @brief Send a log_request_end message
133 * @param chan MAVLink channel to send the message
135 * @param target_system System ID
136 * @param target_component Component ID
138 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
140 static inline void mavlink_msg_log_request_end_send(mavlink_channel_t chan, uint8_t target_system, uint8_t target_component)
142 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
143 char buf[MAVLINK_MSG_ID_LOG_REQUEST_END_LEN];
144 _mav_put_uint8_t(buf, 0, target_system);
145 _mav_put_uint8_t(buf, 1, target_component);
147 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, buf, MAVLINK_MSG_ID_LOG_REQUEST_END_MIN_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
148 #else
149 mavlink_log_request_end_t packet;
150 packet.target_system = target_system;
151 packet.target_component = target_component;
153 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, (const char *)&packet, MAVLINK_MSG_ID_LOG_REQUEST_END_MIN_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
154 #endif
158 * @brief Send a log_request_end message
159 * @param chan MAVLink channel to send the message
160 * @param struct The MAVLink struct to serialize
162 static inline void mavlink_msg_log_request_end_send_struct(mavlink_channel_t chan, const mavlink_log_request_end_t* log_request_end)
164 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
165 mavlink_msg_log_request_end_send(chan, log_request_end->target_system, log_request_end->target_component);
166 #else
167 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, (const char *)log_request_end, MAVLINK_MSG_ID_LOG_REQUEST_END_MIN_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
168 #endif
171 #if MAVLINK_MSG_ID_LOG_REQUEST_END_LEN <= MAVLINK_MAX_PAYLOAD_LEN
173 This varient of _send() can be used to save stack space by re-using
174 memory from the receive buffer. The caller provides a
175 mavlink_message_t which is the size of a full mavlink message. This
176 is usually the receive buffer for the channel, and allows a reply to an
177 incoming message with minimum stack space usage.
179 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)
181 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
182 char *buf = (char *)msgbuf;
183 _mav_put_uint8_t(buf, 0, target_system);
184 _mav_put_uint8_t(buf, 1, target_component);
186 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, buf, MAVLINK_MSG_ID_LOG_REQUEST_END_MIN_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
187 #else
188 mavlink_log_request_end_t *packet = (mavlink_log_request_end_t *)msgbuf;
189 packet->target_system = target_system;
190 packet->target_component = target_component;
192 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_END, (const char *)packet, MAVLINK_MSG_ID_LOG_REQUEST_END_MIN_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN, MAVLINK_MSG_ID_LOG_REQUEST_END_CRC);
193 #endif
195 #endif
197 #endif
199 // MESSAGE LOG_REQUEST_END UNPACKING
203 * @brief Get field target_system from log_request_end message
205 * @return System ID
207 static inline uint8_t mavlink_msg_log_request_end_get_target_system(const mavlink_message_t* msg)
209 return _MAV_RETURN_uint8_t(msg, 0);
213 * @brief Get field target_component from log_request_end message
215 * @return Component ID
217 static inline uint8_t mavlink_msg_log_request_end_get_target_component(const mavlink_message_t* msg)
219 return _MAV_RETURN_uint8_t(msg, 1);
223 * @brief Decode a log_request_end message into a struct
225 * @param msg The message to decode
226 * @param log_request_end C-struct to decode the message contents into
228 static inline void mavlink_msg_log_request_end_decode(const mavlink_message_t* msg, mavlink_log_request_end_t* log_request_end)
230 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
231 log_request_end->target_system = mavlink_msg_log_request_end_get_target_system(msg);
232 log_request_end->target_component = mavlink_msg_log_request_end_get_target_component(msg);
233 #else
234 uint8_t len = msg->len < MAVLINK_MSG_ID_LOG_REQUEST_END_LEN? msg->len : MAVLINK_MSG_ID_LOG_REQUEST_END_LEN;
235 memset(log_request_end, 0, MAVLINK_MSG_ID_LOG_REQUEST_END_LEN);
236 memcpy(log_request_end, _MAV_PAYLOAD(msg), len);
237 #endif