Move telemetry displayport init and cms device registering
[betaflight.git] / lib / main / MAVLink / common / mavlink_msg_log_entry.h
blob8ecaec3ae25aada35e6e24aae96305dc7a42d24d
1 // MESSAGE LOG_ENTRY PACKING
3 #define MAVLINK_MSG_ID_LOG_ENTRY 118
5 typedef struct __mavlink_log_entry_t
7 uint32_t time_utc; ///< UTC timestamp of log in seconds since 1970, or 0 if not available
8 uint32_t size; ///< Size of the log (may be approximate) in bytes
9 uint16_t id; ///< Log id
10 uint16_t num_logs; ///< Total number of logs
11 uint16_t last_log_num; ///< High log number
12 } mavlink_log_entry_t;
14 #define MAVLINK_MSG_ID_LOG_ENTRY_LEN 14
15 #define MAVLINK_MSG_ID_118_LEN 14
17 #define MAVLINK_MSG_ID_LOG_ENTRY_CRC 56
18 #define MAVLINK_MSG_ID_118_CRC 56
22 #define MAVLINK_MESSAGE_INFO_LOG_ENTRY { \
23 "LOG_ENTRY", \
24 5, \
25 { { "time_utc", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_log_entry_t, time_utc) }, \
26 { "size", NULL, MAVLINK_TYPE_UINT32_T, 0, 4, offsetof(mavlink_log_entry_t, size) }, \
27 { "id", NULL, MAVLINK_TYPE_UINT16_T, 0, 8, offsetof(mavlink_log_entry_t, id) }, \
28 { "num_logs", NULL, MAVLINK_TYPE_UINT16_T, 0, 10, offsetof(mavlink_log_entry_t, num_logs) }, \
29 { "last_log_num", NULL, MAVLINK_TYPE_UINT16_T, 0, 12, offsetof(mavlink_log_entry_t, last_log_num) }, \
30 } \
34 /**
35 * @brief Pack a log_entry message
36 * @param system_id ID of this system
37 * @param component_id ID of this component (e.g. 200 for IMU)
38 * @param msg The MAVLink message to compress the data into
40 * @param id Log id
41 * @param num_logs Total number of logs
42 * @param last_log_num High log number
43 * @param time_utc UTC timestamp of log in seconds since 1970, or 0 if not available
44 * @param size Size of the log (may be approximate) in bytes
45 * @return length of the message in bytes (excluding serial stream start sign)
47 static inline uint16_t mavlink_msg_log_entry_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
48 uint16_t id, uint16_t num_logs, uint16_t last_log_num, uint32_t time_utc, uint32_t size)
50 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
51 char buf[MAVLINK_MSG_ID_LOG_ENTRY_LEN];
52 _mav_put_uint32_t(buf, 0, time_utc);
53 _mav_put_uint32_t(buf, 4, size);
54 _mav_put_uint16_t(buf, 8, id);
55 _mav_put_uint16_t(buf, 10, num_logs);
56 _mav_put_uint16_t(buf, 12, last_log_num);
58 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_LOG_ENTRY_LEN);
59 #else
60 mavlink_log_entry_t packet;
61 packet.time_utc = time_utc;
62 packet.size = size;
63 packet.id = id;
64 packet.num_logs = num_logs;
65 packet.last_log_num = last_log_num;
67 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOG_ENTRY_LEN);
68 #endif
70 msg->msgid = MAVLINK_MSG_ID_LOG_ENTRY;
71 #if MAVLINK_CRC_EXTRA
72 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_LOG_ENTRY_LEN, MAVLINK_MSG_ID_LOG_ENTRY_CRC);
73 #else
74 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_LOG_ENTRY_LEN);
75 #endif
78 /**
79 * @brief Pack a log_entry message on a channel
80 * @param system_id ID of this system
81 * @param component_id ID of this component (e.g. 200 for IMU)
82 * @param chan The MAVLink channel this message will be sent over
83 * @param msg The MAVLink message to compress the data into
84 * @param id Log id
85 * @param num_logs Total number of logs
86 * @param last_log_num High log number
87 * @param time_utc UTC timestamp of log in seconds since 1970, or 0 if not available
88 * @param size Size of the log (may be approximate) in bytes
89 * @return length of the message in bytes (excluding serial stream start sign)
91 static inline uint16_t mavlink_msg_log_entry_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
92 mavlink_message_t* msg,
93 uint16_t id,uint16_t num_logs,uint16_t last_log_num,uint32_t time_utc,uint32_t size)
95 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
96 char buf[MAVLINK_MSG_ID_LOG_ENTRY_LEN];
97 _mav_put_uint32_t(buf, 0, time_utc);
98 _mav_put_uint32_t(buf, 4, size);
99 _mav_put_uint16_t(buf, 8, id);
100 _mav_put_uint16_t(buf, 10, num_logs);
101 _mav_put_uint16_t(buf, 12, last_log_num);
103 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_LOG_ENTRY_LEN);
104 #else
105 mavlink_log_entry_t packet;
106 packet.time_utc = time_utc;
107 packet.size = size;
108 packet.id = id;
109 packet.num_logs = num_logs;
110 packet.last_log_num = last_log_num;
112 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOG_ENTRY_LEN);
113 #endif
115 msg->msgid = MAVLINK_MSG_ID_LOG_ENTRY;
116 #if MAVLINK_CRC_EXTRA
117 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_LOG_ENTRY_LEN, MAVLINK_MSG_ID_LOG_ENTRY_CRC);
118 #else
119 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_LOG_ENTRY_LEN);
120 #endif
124 * @brief Encode a log_entry struct
126 * @param system_id ID of this system
127 * @param component_id ID of this component (e.g. 200 for IMU)
128 * @param msg The MAVLink message to compress the data into
129 * @param log_entry C-struct to read the message contents from
131 static inline uint16_t mavlink_msg_log_entry_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_log_entry_t* log_entry)
133 return mavlink_msg_log_entry_pack(system_id, component_id, msg, log_entry->id, log_entry->num_logs, log_entry->last_log_num, log_entry->time_utc, log_entry->size);
137 * @brief Encode a log_entry struct on a channel
139 * @param system_id ID of this system
140 * @param component_id ID of this component (e.g. 200 for IMU)
141 * @param chan The MAVLink channel this message will be sent over
142 * @param msg The MAVLink message to compress the data into
143 * @param log_entry C-struct to read the message contents from
145 static inline uint16_t mavlink_msg_log_entry_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_log_entry_t* log_entry)
147 return mavlink_msg_log_entry_pack_chan(system_id, component_id, chan, msg, log_entry->id, log_entry->num_logs, log_entry->last_log_num, log_entry->time_utc, log_entry->size);
151 * @brief Send a log_entry message
152 * @param chan MAVLink channel to send the message
154 * @param id Log id
155 * @param num_logs Total number of logs
156 * @param last_log_num High log number
157 * @param time_utc UTC timestamp of log in seconds since 1970, or 0 if not available
158 * @param size Size of the log (may be approximate) in bytes
160 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
162 static inline void mavlink_msg_log_entry_send(mavlink_channel_t chan, uint16_t id, uint16_t num_logs, uint16_t last_log_num, uint32_t time_utc, uint32_t size)
164 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
165 char buf[MAVLINK_MSG_ID_LOG_ENTRY_LEN];
166 _mav_put_uint32_t(buf, 0, time_utc);
167 _mav_put_uint32_t(buf, 4, size);
168 _mav_put_uint16_t(buf, 8, id);
169 _mav_put_uint16_t(buf, 10, num_logs);
170 _mav_put_uint16_t(buf, 12, last_log_num);
172 #if MAVLINK_CRC_EXTRA
173 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_ENTRY, buf, MAVLINK_MSG_ID_LOG_ENTRY_LEN, MAVLINK_MSG_ID_LOG_ENTRY_CRC);
174 #else
175 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_ENTRY, buf, MAVLINK_MSG_ID_LOG_ENTRY_LEN);
176 #endif
177 #else
178 mavlink_log_entry_t packet;
179 packet.time_utc = time_utc;
180 packet.size = size;
181 packet.id = id;
182 packet.num_logs = num_logs;
183 packet.last_log_num = last_log_num;
185 #if MAVLINK_CRC_EXTRA
186 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_ENTRY, (const char *)&packet, MAVLINK_MSG_ID_LOG_ENTRY_LEN, MAVLINK_MSG_ID_LOG_ENTRY_CRC);
187 #else
188 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_ENTRY, (const char *)&packet, MAVLINK_MSG_ID_LOG_ENTRY_LEN);
189 #endif
190 #endif
193 #if MAVLINK_MSG_ID_LOG_ENTRY_LEN <= MAVLINK_MAX_PAYLOAD_LEN
195 This varient of _send() can be used to save stack space by re-using
196 memory from the receive buffer. The caller provides a
197 mavlink_message_t which is the size of a full mavlink message. This
198 is usually the receive buffer for the channel, and allows a reply to an
199 incoming message with minimum stack space usage.
201 static inline void mavlink_msg_log_entry_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint16_t id, uint16_t num_logs, uint16_t last_log_num, uint32_t time_utc, uint32_t size)
203 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
204 char *buf = (char *)msgbuf;
205 _mav_put_uint32_t(buf, 0, time_utc);
206 _mav_put_uint32_t(buf, 4, size);
207 _mav_put_uint16_t(buf, 8, id);
208 _mav_put_uint16_t(buf, 10, num_logs);
209 _mav_put_uint16_t(buf, 12, last_log_num);
211 #if MAVLINK_CRC_EXTRA
212 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_ENTRY, buf, MAVLINK_MSG_ID_LOG_ENTRY_LEN, MAVLINK_MSG_ID_LOG_ENTRY_CRC);
213 #else
214 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_ENTRY, buf, MAVLINK_MSG_ID_LOG_ENTRY_LEN);
215 #endif
216 #else
217 mavlink_log_entry_t *packet = (mavlink_log_entry_t *)msgbuf;
218 packet->time_utc = time_utc;
219 packet->size = size;
220 packet->id = id;
221 packet->num_logs = num_logs;
222 packet->last_log_num = last_log_num;
224 #if MAVLINK_CRC_EXTRA
225 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_ENTRY, (const char *)packet, MAVLINK_MSG_ID_LOG_ENTRY_LEN, MAVLINK_MSG_ID_LOG_ENTRY_CRC);
226 #else
227 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_ENTRY, (const char *)packet, MAVLINK_MSG_ID_LOG_ENTRY_LEN);
228 #endif
229 #endif
231 #endif
233 #endif
235 // MESSAGE LOG_ENTRY UNPACKING
239 * @brief Get field id from log_entry message
241 * @return Log id
243 static inline uint16_t mavlink_msg_log_entry_get_id(const mavlink_message_t* msg)
245 return _MAV_RETURN_uint16_t(msg, 8);
249 * @brief Get field num_logs from log_entry message
251 * @return Total number of logs
253 static inline uint16_t mavlink_msg_log_entry_get_num_logs(const mavlink_message_t* msg)
255 return _MAV_RETURN_uint16_t(msg, 10);
259 * @brief Get field last_log_num from log_entry message
261 * @return High log number
263 static inline uint16_t mavlink_msg_log_entry_get_last_log_num(const mavlink_message_t* msg)
265 return _MAV_RETURN_uint16_t(msg, 12);
269 * @brief Get field time_utc from log_entry message
271 * @return UTC timestamp of log in seconds since 1970, or 0 if not available
273 static inline uint32_t mavlink_msg_log_entry_get_time_utc(const mavlink_message_t* msg)
275 return _MAV_RETURN_uint32_t(msg, 0);
279 * @brief Get field size from log_entry message
281 * @return Size of the log (may be approximate) in bytes
283 static inline uint32_t mavlink_msg_log_entry_get_size(const mavlink_message_t* msg)
285 return _MAV_RETURN_uint32_t(msg, 4);
289 * @brief Decode a log_entry message into a struct
291 * @param msg The message to decode
292 * @param log_entry C-struct to decode the message contents into
294 static inline void mavlink_msg_log_entry_decode(const mavlink_message_t* msg, mavlink_log_entry_t* log_entry)
296 #if MAVLINK_NEED_BYTE_SWAP
297 log_entry->time_utc = mavlink_msg_log_entry_get_time_utc(msg);
298 log_entry->size = mavlink_msg_log_entry_get_size(msg);
299 log_entry->id = mavlink_msg_log_entry_get_id(msg);
300 log_entry->num_logs = mavlink_msg_log_entry_get_num_logs(msg);
301 log_entry->last_log_num = mavlink_msg_log_entry_get_last_log_num(msg);
302 #else
303 memcpy(log_entry, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_LOG_ENTRY_LEN);
304 #endif