before merging master
[inav.git] / lib / main / MAVLink / common / mavlink_msg_open_drone_id_message_pack.h
blob16407cfb3581f449e5545937364cd694912e1286
1 #pragma once
2 // MESSAGE OPEN_DRONE_ID_MESSAGE_PACK PACKING
4 #define MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK 12915
7 typedef struct __mavlink_open_drone_id_message_pack_t {
8 uint8_t target_system; /*< System ID (0 for broadcast).*/
9 uint8_t target_component; /*< Component ID (0 for broadcast).*/
10 uint8_t single_message_size; /*< [bytes] This field must currently always be equal to 25 (bytes), since all encoded OpenDroneID messages are specificed to have this length.*/
11 uint8_t msg_pack_size; /*< Number of encoded messages in the pack (not the number of bytes). Allowed range is 1 - 10.*/
12 uint8_t messages[250]; /*< Concatenation of encoded OpenDroneID messages. Shall be filled with nulls in the unused portion of the field.*/
13 } mavlink_open_drone_id_message_pack_t;
15 #define MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN 254
16 #define MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_MIN_LEN 254
17 #define MAVLINK_MSG_ID_12915_LEN 254
18 #define MAVLINK_MSG_ID_12915_MIN_LEN 254
20 #define MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_CRC 62
21 #define MAVLINK_MSG_ID_12915_CRC 62
23 #define MAVLINK_MSG_OPEN_DRONE_ID_MESSAGE_PACK_FIELD_MESSAGES_LEN 250
25 #if MAVLINK_COMMAND_24BIT
26 #define MAVLINK_MESSAGE_INFO_OPEN_DRONE_ID_MESSAGE_PACK { \
27 12915, \
28 "OPEN_DRONE_ID_MESSAGE_PACK", \
29 5, \
30 { { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_open_drone_id_message_pack_t, target_system) }, \
31 { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_open_drone_id_message_pack_t, target_component) }, \
32 { "single_message_size", NULL, MAVLINK_TYPE_UINT8_T, 0, 2, offsetof(mavlink_open_drone_id_message_pack_t, single_message_size) }, \
33 { "msg_pack_size", NULL, MAVLINK_TYPE_UINT8_T, 0, 3, offsetof(mavlink_open_drone_id_message_pack_t, msg_pack_size) }, \
34 { "messages", NULL, MAVLINK_TYPE_UINT8_T, 250, 4, offsetof(mavlink_open_drone_id_message_pack_t, messages) }, \
35 } \
37 #else
38 #define MAVLINK_MESSAGE_INFO_OPEN_DRONE_ID_MESSAGE_PACK { \
39 "OPEN_DRONE_ID_MESSAGE_PACK", \
40 5, \
41 { { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_open_drone_id_message_pack_t, target_system) }, \
42 { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_open_drone_id_message_pack_t, target_component) }, \
43 { "single_message_size", NULL, MAVLINK_TYPE_UINT8_T, 0, 2, offsetof(mavlink_open_drone_id_message_pack_t, single_message_size) }, \
44 { "msg_pack_size", NULL, MAVLINK_TYPE_UINT8_T, 0, 3, offsetof(mavlink_open_drone_id_message_pack_t, msg_pack_size) }, \
45 { "messages", NULL, MAVLINK_TYPE_UINT8_T, 250, 4, offsetof(mavlink_open_drone_id_message_pack_t, messages) }, \
46 } \
48 #endif
50 /**
51 * @brief Pack a open_drone_id_message_pack message
52 * @param system_id ID of this system
53 * @param component_id ID of this component (e.g. 200 for IMU)
54 * @param msg The MAVLink message to compress the data into
56 * @param target_system System ID (0 for broadcast).
57 * @param target_component Component ID (0 for broadcast).
58 * @param single_message_size [bytes] This field must currently always be equal to 25 (bytes), since all encoded OpenDroneID messages are specificed to have this length.
59 * @param msg_pack_size Number of encoded messages in the pack (not the number of bytes). Allowed range is 1 - 10.
60 * @param messages Concatenation of encoded OpenDroneID messages. Shall be filled with nulls in the unused portion of the field.
61 * @return length of the message in bytes (excluding serial stream start sign)
63 static inline uint16_t mavlink_msg_open_drone_id_message_pack_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
64 uint8_t target_system, uint8_t target_component, uint8_t single_message_size, uint8_t msg_pack_size, const uint8_t *messages)
66 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
67 char buf[MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN];
68 _mav_put_uint8_t(buf, 0, target_system);
69 _mav_put_uint8_t(buf, 1, target_component);
70 _mav_put_uint8_t(buf, 2, single_message_size);
71 _mav_put_uint8_t(buf, 3, msg_pack_size);
72 _mav_put_uint8_t_array(buf, 4, messages, 250);
73 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN);
74 #else
75 mavlink_open_drone_id_message_pack_t packet;
76 packet.target_system = target_system;
77 packet.target_component = target_component;
78 packet.single_message_size = single_message_size;
79 packet.msg_pack_size = msg_pack_size;
80 mav_array_memcpy(packet.messages, messages, sizeof(uint8_t)*250);
81 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN);
82 #endif
84 msg->msgid = MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK;
85 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_MIN_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_CRC);
88 /**
89 * @brief Pack a open_drone_id_message_pack message on a channel
90 * @param system_id ID of this system
91 * @param component_id ID of this component (e.g. 200 for IMU)
92 * @param chan The MAVLink channel this message will be sent over
93 * @param msg The MAVLink message to compress the data into
94 * @param target_system System ID (0 for broadcast).
95 * @param target_component Component ID (0 for broadcast).
96 * @param single_message_size [bytes] This field must currently always be equal to 25 (bytes), since all encoded OpenDroneID messages are specificed to have this length.
97 * @param msg_pack_size Number of encoded messages in the pack (not the number of bytes). Allowed range is 1 - 10.
98 * @param messages Concatenation of encoded OpenDroneID messages. Shall be filled with nulls in the unused portion of the field.
99 * @return length of the message in bytes (excluding serial stream start sign)
101 static inline uint16_t mavlink_msg_open_drone_id_message_pack_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
102 mavlink_message_t* msg,
103 uint8_t target_system,uint8_t target_component,uint8_t single_message_size,uint8_t msg_pack_size,const uint8_t *messages)
105 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
106 char buf[MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN];
107 _mav_put_uint8_t(buf, 0, target_system);
108 _mav_put_uint8_t(buf, 1, target_component);
109 _mav_put_uint8_t(buf, 2, single_message_size);
110 _mav_put_uint8_t(buf, 3, msg_pack_size);
111 _mav_put_uint8_t_array(buf, 4, messages, 250);
112 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN);
113 #else
114 mavlink_open_drone_id_message_pack_t packet;
115 packet.target_system = target_system;
116 packet.target_component = target_component;
117 packet.single_message_size = single_message_size;
118 packet.msg_pack_size = msg_pack_size;
119 mav_array_memcpy(packet.messages, messages, sizeof(uint8_t)*250);
120 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN);
121 #endif
123 msg->msgid = MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK;
124 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_MIN_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_CRC);
128 * @brief Encode a open_drone_id_message_pack struct
130 * @param system_id ID of this system
131 * @param component_id ID of this component (e.g. 200 for IMU)
132 * @param msg The MAVLink message to compress the data into
133 * @param open_drone_id_message_pack C-struct to read the message contents from
135 static inline uint16_t mavlink_msg_open_drone_id_message_pack_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_open_drone_id_message_pack_t* open_drone_id_message_pack)
137 return mavlink_msg_open_drone_id_message_pack_pack(system_id, component_id, msg, open_drone_id_message_pack->target_system, open_drone_id_message_pack->target_component, open_drone_id_message_pack->single_message_size, open_drone_id_message_pack->msg_pack_size, open_drone_id_message_pack->messages);
141 * @brief Encode a open_drone_id_message_pack struct on a channel
143 * @param system_id ID of this system
144 * @param component_id ID of this component (e.g. 200 for IMU)
145 * @param chan The MAVLink channel this message will be sent over
146 * @param msg The MAVLink message to compress the data into
147 * @param open_drone_id_message_pack C-struct to read the message contents from
149 static inline uint16_t mavlink_msg_open_drone_id_message_pack_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_open_drone_id_message_pack_t* open_drone_id_message_pack)
151 return mavlink_msg_open_drone_id_message_pack_pack_chan(system_id, component_id, chan, msg, open_drone_id_message_pack->target_system, open_drone_id_message_pack->target_component, open_drone_id_message_pack->single_message_size, open_drone_id_message_pack->msg_pack_size, open_drone_id_message_pack->messages);
155 * @brief Send a open_drone_id_message_pack message
156 * @param chan MAVLink channel to send the message
158 * @param target_system System ID (0 for broadcast).
159 * @param target_component Component ID (0 for broadcast).
160 * @param single_message_size [bytes] This field must currently always be equal to 25 (bytes), since all encoded OpenDroneID messages are specificed to have this length.
161 * @param msg_pack_size Number of encoded messages in the pack (not the number of bytes). Allowed range is 1 - 10.
162 * @param messages Concatenation of encoded OpenDroneID messages. Shall be filled with nulls in the unused portion of the field.
164 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
166 static inline void mavlink_msg_open_drone_id_message_pack_send(mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, uint8_t single_message_size, uint8_t msg_pack_size, const uint8_t *messages)
168 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
169 char buf[MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN];
170 _mav_put_uint8_t(buf, 0, target_system);
171 _mav_put_uint8_t(buf, 1, target_component);
172 _mav_put_uint8_t(buf, 2, single_message_size);
173 _mav_put_uint8_t(buf, 3, msg_pack_size);
174 _mav_put_uint8_t_array(buf, 4, messages, 250);
175 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK, buf, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_MIN_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_CRC);
176 #else
177 mavlink_open_drone_id_message_pack_t packet;
178 packet.target_system = target_system;
179 packet.target_component = target_component;
180 packet.single_message_size = single_message_size;
181 packet.msg_pack_size = msg_pack_size;
182 mav_array_memcpy(packet.messages, messages, sizeof(uint8_t)*250);
183 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK, (const char *)&packet, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_MIN_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_CRC);
184 #endif
188 * @brief Send a open_drone_id_message_pack message
189 * @param chan MAVLink channel to send the message
190 * @param struct The MAVLink struct to serialize
192 static inline void mavlink_msg_open_drone_id_message_pack_send_struct(mavlink_channel_t chan, const mavlink_open_drone_id_message_pack_t* open_drone_id_message_pack)
194 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
195 mavlink_msg_open_drone_id_message_pack_send(chan, open_drone_id_message_pack->target_system, open_drone_id_message_pack->target_component, open_drone_id_message_pack->single_message_size, open_drone_id_message_pack->msg_pack_size, open_drone_id_message_pack->messages);
196 #else
197 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK, (const char *)open_drone_id_message_pack, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_MIN_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_CRC);
198 #endif
201 #if MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN <= MAVLINK_MAX_PAYLOAD_LEN
203 This varient of _send() can be used to save stack space by re-using
204 memory from the receive buffer. The caller provides a
205 mavlink_message_t which is the size of a full mavlink message. This
206 is usually the receive buffer for the channel, and allows a reply to an
207 incoming message with minimum stack space usage.
209 static inline void mavlink_msg_open_drone_id_message_pack_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, uint8_t single_message_size, uint8_t msg_pack_size, const uint8_t *messages)
211 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
212 char *buf = (char *)msgbuf;
213 _mav_put_uint8_t(buf, 0, target_system);
214 _mav_put_uint8_t(buf, 1, target_component);
215 _mav_put_uint8_t(buf, 2, single_message_size);
216 _mav_put_uint8_t(buf, 3, msg_pack_size);
217 _mav_put_uint8_t_array(buf, 4, messages, 250);
218 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK, buf, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_MIN_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_CRC);
219 #else
220 mavlink_open_drone_id_message_pack_t *packet = (mavlink_open_drone_id_message_pack_t *)msgbuf;
221 packet->target_system = target_system;
222 packet->target_component = target_component;
223 packet->single_message_size = single_message_size;
224 packet->msg_pack_size = msg_pack_size;
225 mav_array_memcpy(packet->messages, messages, sizeof(uint8_t)*250);
226 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK, (const char *)packet, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_MIN_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_CRC);
227 #endif
229 #endif
231 #endif
233 // MESSAGE OPEN_DRONE_ID_MESSAGE_PACK UNPACKING
237 * @brief Get field target_system from open_drone_id_message_pack message
239 * @return System ID (0 for broadcast).
241 static inline uint8_t mavlink_msg_open_drone_id_message_pack_get_target_system(const mavlink_message_t* msg)
243 return _MAV_RETURN_uint8_t(msg, 0);
247 * @brief Get field target_component from open_drone_id_message_pack message
249 * @return Component ID (0 for broadcast).
251 static inline uint8_t mavlink_msg_open_drone_id_message_pack_get_target_component(const mavlink_message_t* msg)
253 return _MAV_RETURN_uint8_t(msg, 1);
257 * @brief Get field single_message_size from open_drone_id_message_pack message
259 * @return [bytes] This field must currently always be equal to 25 (bytes), since all encoded OpenDroneID messages are specificed to have this length.
261 static inline uint8_t mavlink_msg_open_drone_id_message_pack_get_single_message_size(const mavlink_message_t* msg)
263 return _MAV_RETURN_uint8_t(msg, 2);
267 * @brief Get field msg_pack_size from open_drone_id_message_pack message
269 * @return Number of encoded messages in the pack (not the number of bytes). Allowed range is 1 - 10.
271 static inline uint8_t mavlink_msg_open_drone_id_message_pack_get_msg_pack_size(const mavlink_message_t* msg)
273 return _MAV_RETURN_uint8_t(msg, 3);
277 * @brief Get field messages from open_drone_id_message_pack message
279 * @return Concatenation of encoded OpenDroneID messages. Shall be filled with nulls in the unused portion of the field.
281 static inline uint16_t mavlink_msg_open_drone_id_message_pack_get_messages(const mavlink_message_t* msg, uint8_t *messages)
283 return _MAV_RETURN_uint8_t_array(msg, messages, 250, 4);
287 * @brief Decode a open_drone_id_message_pack message into a struct
289 * @param msg The message to decode
290 * @param open_drone_id_message_pack C-struct to decode the message contents into
292 static inline void mavlink_msg_open_drone_id_message_pack_decode(const mavlink_message_t* msg, mavlink_open_drone_id_message_pack_t* open_drone_id_message_pack)
294 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
295 open_drone_id_message_pack->target_system = mavlink_msg_open_drone_id_message_pack_get_target_system(msg);
296 open_drone_id_message_pack->target_component = mavlink_msg_open_drone_id_message_pack_get_target_component(msg);
297 open_drone_id_message_pack->single_message_size = mavlink_msg_open_drone_id_message_pack_get_single_message_size(msg);
298 open_drone_id_message_pack->msg_pack_size = mavlink_msg_open_drone_id_message_pack_get_msg_pack_size(msg);
299 mavlink_msg_open_drone_id_message_pack_get_messages(msg, open_drone_id_message_pack->messages);
300 #else
301 uint8_t len = msg->len < MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN? msg->len : MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN;
302 memset(open_drone_id_message_pack, 0, MAVLINK_MSG_ID_OPEN_DRONE_ID_MESSAGE_PACK_LEN);
303 memcpy(open_drone_id_message_pack, _MAV_PAYLOAD(msg), len);
304 #endif