3 #define MAVLINK_MSG_ID_LOG_REQUEST_DATA 119
14 #define MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN 12
15 #define MAVLINK_MSG_ID_119_LEN 12
17 #define MAVLINK_MSG_ID_LOG_REQUEST_DATA_CRC 116
18 #define MAVLINK_MSG_ID_119_CRC 116
22 #define MAVLINK_MESSAGE_INFO_LOG_REQUEST_DATA { \
25 { { "ofs", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_log_request_data_t, ofs) }, \
26 { "count", NULL, MAVLINK_TYPE_UINT32_T, 0, 4, offsetof(mavlink_log_request_data_t, count) }, \
27 { "id", NULL, MAVLINK_TYPE_UINT16_T, 0, 8, offsetof(mavlink_log_request_data_t, id) }, \
28 { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 10, offsetof(mavlink_log_request_data_t, target_system) }, \
29 { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 11, offsetof(mavlink_log_request_data_t, target_component) }, \
47 static inline uint16_t mavlink_msg_log_request_data_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
48 uint8_t target_system, uint8_t target_component, uint16_t
id, uint32_t ofs, uint32_t count)
50 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
51 char buf[MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN];
52 _mav_put_uint32_t(buf, 0, ofs);
53 _mav_put_uint32_t(buf, 4, count);
54 _mav_put_uint16_t(buf, 8,
id);
55 _mav_put_uint8_t(buf, 10, target_system);
56 _mav_put_uint8_t(buf, 11, target_component);
58 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN);
67 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN);
70 msg->msgid = MAVLINK_MSG_ID_LOG_REQUEST_DATA;
72 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN, MAVLINK_MSG_ID_LOG_REQUEST_DATA_CRC);
74 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN);
91 static inline uint16_t mavlink_msg_log_request_data_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
92 mavlink_message_t* msg,
93 uint8_t target_system,uint8_t target_component,uint16_t
id,uint32_t ofs,uint32_t count)
95 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
96 char buf[MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN];
97 _mav_put_uint32_t(buf, 0, ofs);
98 _mav_put_uint32_t(buf, 4, count);
99 _mav_put_uint16_t(buf, 8,
id);
100 _mav_put_uint8_t(buf, 10, target_system);
101 _mav_put_uint8_t(buf, 11, target_component);
103 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN);
107 packet.
count = count;
112 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN);
115 msg->msgid = MAVLINK_MSG_ID_LOG_REQUEST_DATA;
116 #if MAVLINK_CRC_EXTRA
117 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN, MAVLINK_MSG_ID_LOG_REQUEST_DATA_CRC);
119 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN);
131 static inline uint16_t mavlink_msg_log_request_data_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
const mavlink_log_request_data_t* log_request_data)
133 return mavlink_msg_log_request_data_pack(system_id, component_id, msg, log_request_data->
target_system, log_request_data->
target_component, log_request_data->
id, log_request_data->
ofs, log_request_data->
count);
145 static inline uint16_t mavlink_msg_log_request_data_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg,
const mavlink_log_request_data_t* log_request_data)
147 return mavlink_msg_log_request_data_pack_chan(system_id, component_id, chan, msg, log_request_data->
target_system, log_request_data->
target_component, log_request_data->
id, log_request_data->
ofs, log_request_data->
count);
160 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
162 static inline void mavlink_msg_log_request_data_send(mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, uint16_t
id, uint32_t ofs, uint32_t count)
164 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
165 char buf[MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN];
166 _mav_put_uint32_t(buf, 0, ofs);
167 _mav_put_uint32_t(buf, 4, count);
168 _mav_put_uint16_t(buf, 8,
id);
169 _mav_put_uint8_t(buf, 10, target_system);
170 _mav_put_uint8_t(buf, 11, target_component);
172 #if MAVLINK_CRC_EXTRA
173 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_DATA, buf, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN, MAVLINK_MSG_ID_LOG_REQUEST_DATA_CRC);
175 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_DATA, buf, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN);
180 packet.
count = count;
185 #if MAVLINK_CRC_EXTRA
186 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_DATA, (
const char *)&packet, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN, MAVLINK_MSG_ID_LOG_REQUEST_DATA_CRC);
188 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_DATA, (
const char *)&packet, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN);
193 #if MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN <= MAVLINK_MAX_PAYLOAD_LEN
201 static inline void mavlink_msg_log_request_data_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, uint16_t
id, uint32_t ofs, uint32_t count)
203 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
204 char *buf = (
char *)msgbuf;
205 _mav_put_uint32_t(buf, 0, ofs);
206 _mav_put_uint32_t(buf, 4, count);
207 _mav_put_uint16_t(buf, 8,
id);
208 _mav_put_uint8_t(buf, 10, target_system);
209 _mav_put_uint8_t(buf, 11, target_component);
211 #if MAVLINK_CRC_EXTRA
212 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_DATA, buf, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN, MAVLINK_MSG_ID_LOG_REQUEST_DATA_CRC);
214 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_DATA, buf, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN);
219 packet->
count = count;
224 #if MAVLINK_CRC_EXTRA
225 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_DATA, (
const char *)packet, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN, MAVLINK_MSG_ID_LOG_REQUEST_DATA_CRC);
227 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOG_REQUEST_DATA, (
const char *)packet, MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN);
243 static inline uint8_t mavlink_msg_log_request_data_get_target_system(
const mavlink_message_t* msg)
245 return _MAV_RETURN_uint8_t(msg, 10);
253 static inline uint8_t mavlink_msg_log_request_data_get_target_component(
const mavlink_message_t* msg)
255 return _MAV_RETURN_uint8_t(msg, 11);
263 static inline uint16_t mavlink_msg_log_request_data_get_id(
const mavlink_message_t* msg)
265 return _MAV_RETURN_uint16_t(msg, 8);
273 static inline uint32_t mavlink_msg_log_request_data_get_ofs(
const mavlink_message_t* msg)
275 return _MAV_RETURN_uint32_t(msg, 0);
283 static inline uint32_t mavlink_msg_log_request_data_get_count(
const mavlink_message_t* msg)
285 return _MAV_RETURN_uint32_t(msg, 4);
294 static inline void mavlink_msg_log_request_data_decode(
const mavlink_message_t* msg,
mavlink_log_request_data_t* log_request_data)
296 #if MAVLINK_NEED_BYTE_SWAP
297 log_request_data->
ofs = mavlink_msg_log_request_data_get_ofs(msg);
298 log_request_data->
count = mavlink_msg_log_request_data_get_count(msg);
299 log_request_data->
id = mavlink_msg_log_request_data_get_id(msg);
300 log_request_data->
target_system = mavlink_msg_log_request_data_get_target_system(msg);
301 log_request_data->
target_component = mavlink_msg_log_request_data_get_target_component(msg);
303 memcpy(log_request_data, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_LOG_REQUEST_DATA_LEN);
Definition: mavlink_msg_log_request_data.h:5
uint8_t target_component
Component ID.
Definition: mavlink_msg_log_request_data.h:11
uint16_t id
Log id (from LOG_ENTRY reply)
Definition: mavlink_msg_log_request_data.h:9
uint8_t target_system
System ID.
Definition: mavlink_msg_log_request_data.h:10
uint32_t ofs
Offset into the log.
Definition: mavlink_msg_log_request_data.h:7
uint32_t count
Number of bytes.
Definition: mavlink_msg_log_request_data.h:8