NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_flexifunction_read_req.h
Go to the documentation of this file.
1 // MESSAGE FLEXIFUNCTION_READ_REQ PACKING
2 
3 #define MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ 151
4 
6 {
7  int16_t read_req_type;
8  int16_t data_index;
9  uint8_t target_system;
10  uint8_t target_component;
12 
13 #define MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ_LEN 6
14 #define MAVLINK_MSG_ID_151_LEN 6
15 
16 #define MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ_CRC 26
17 #define MAVLINK_MSG_ID_151_CRC 26
18 
19 
20 
21 #define MAVLINK_MESSAGE_INFO_FLEXIFUNCTION_READ_REQ { \
22  "FLEXIFUNCTION_READ_REQ", \
23  4, \
24  { { "read_req_type", NULL, MAVLINK_TYPE_INT16_T, 0, 0, offsetof(mavlink_flexifunction_read_req_t, read_req_type) }, \
25  { "data_index", NULL, MAVLINK_TYPE_INT16_T, 0, 2, offsetof(mavlink_flexifunction_read_req_t, data_index) }, \
26  { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 4, offsetof(mavlink_flexifunction_read_req_t, target_system) }, \
27  { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 5, offsetof(mavlink_flexifunction_read_req_t, target_component) }, \
28  } \
29 }
30 
31 
44 static inline uint16_t mavlink_msg_flexifunction_read_req_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
45  uint8_t target_system, uint8_t target_component, int16_t read_req_type, int16_t data_index)
46 {
47 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
49  _mav_put_int16_t(buf, 0, read_req_type);
50  _mav_put_int16_t(buf, 2, data_index);
51  _mav_put_uint8_t(buf, 4, target_system);
52  _mav_put_uint8_t(buf, 5, target_component);
53 
55 #else
57  packet.read_req_type = read_req_type;
58  packet.data_index = data_index;
59  packet.target_system = target_system;
60  packet.target_component = target_component;
61 
63 #endif
64 
66 #if MAVLINK_CRC_EXTRA
68 #else
69  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ_LEN);
70 #endif
71 }
72 
85 static inline uint16_t mavlink_msg_flexifunction_read_req_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
86  mavlink_message_t* msg,
87  uint8_t target_system,uint8_t target_component,int16_t read_req_type,int16_t data_index)
88 {
89 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
91  _mav_put_int16_t(buf, 0, read_req_type);
92  _mav_put_int16_t(buf, 2, data_index);
93  _mav_put_uint8_t(buf, 4, target_system);
94  _mav_put_uint8_t(buf, 5, target_component);
95 
97 #else
99  packet.read_req_type = read_req_type;
100  packet.data_index = data_index;
101  packet.target_system = target_system;
102  packet.target_component = target_component;
103 
105 #endif
106 
108 #if MAVLINK_CRC_EXTRA
110 #else
111  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ_LEN);
112 #endif
113 }
114 
123 static inline uint16_t mavlink_msg_flexifunction_read_req_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_flexifunction_read_req_t* flexifunction_read_req)
124 {
125  return mavlink_msg_flexifunction_read_req_pack(system_id, component_id, msg, flexifunction_read_req->target_system, flexifunction_read_req->target_component, flexifunction_read_req->read_req_type, flexifunction_read_req->data_index);
126 }
127 
137 static inline uint16_t mavlink_msg_flexifunction_read_req_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_flexifunction_read_req_t* flexifunction_read_req)
138 {
139  return mavlink_msg_flexifunction_read_req_pack_chan(system_id, component_id, chan, msg, flexifunction_read_req->target_system, flexifunction_read_req->target_component, flexifunction_read_req->read_req_type, flexifunction_read_req->data_index);
140 }
141 
151 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
152 
153 static inline void mavlink_msg_flexifunction_read_req_send(mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, int16_t read_req_type, int16_t data_index)
154 {
155 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
157  _mav_put_int16_t(buf, 0, read_req_type);
158  _mav_put_int16_t(buf, 2, data_index);
159  _mav_put_uint8_t(buf, 4, target_system);
160  _mav_put_uint8_t(buf, 5, target_component);
161 
162 #if MAVLINK_CRC_EXTRA
164 #else
165  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ, buf, MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ_LEN);
166 #endif
167 #else
169  packet.read_req_type = read_req_type;
170  packet.data_index = data_index;
171  packet.target_system = target_system;
172  packet.target_component = target_component;
173 
174 #if MAVLINK_CRC_EXTRA
176 #else
177  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ, (const char *)&packet, MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ_LEN);
178 #endif
179 #endif
180 }
181 
182 #if MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ_LEN <= MAVLINK_MAX_PAYLOAD_LEN
183 /*
184  This varient of _send() can be used to save stack space by re-using
185  memory from the receive buffer. The caller provides a
186  mavlink_message_t which is the size of a full mavlink message. This
187  is usually the receive buffer for the channel, and allows a reply to an
188  incoming message with minimum stack space usage.
189  */
190 static inline void mavlink_msg_flexifunction_read_req_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, int16_t read_req_type, int16_t data_index)
191 {
192 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
193  char *buf = (char *)msgbuf;
194  _mav_put_int16_t(buf, 0, read_req_type);
195  _mav_put_int16_t(buf, 2, data_index);
196  _mav_put_uint8_t(buf, 4, target_system);
197  _mav_put_uint8_t(buf, 5, target_component);
198 
199 #if MAVLINK_CRC_EXTRA
201 #else
202  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ, buf, MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ_LEN);
203 #endif
204 #else
206  packet->read_req_type = read_req_type;
207  packet->data_index = data_index;
208  packet->target_system = target_system;
209  packet->target_component = target_component;
210 
211 #if MAVLINK_CRC_EXTRA
213 #else
214  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ, (const char *)packet, MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ_LEN);
215 #endif
216 #endif
217 }
218 #endif
219 
220 #endif
221 
222 // MESSAGE FLEXIFUNCTION_READ_REQ UNPACKING
223 
224 
230 static inline uint8_t mavlink_msg_flexifunction_read_req_get_target_system(const mavlink_message_t* msg)
231 {
232  return _MAV_RETURN_uint8_t(msg, 4);
233 }
234 
240 static inline uint8_t mavlink_msg_flexifunction_read_req_get_target_component(const mavlink_message_t* msg)
241 {
242  return _MAV_RETURN_uint8_t(msg, 5);
243 }
244 
250 static inline int16_t mavlink_msg_flexifunction_read_req_get_read_req_type(const mavlink_message_t* msg)
251 {
252  return _MAV_RETURN_int16_t(msg, 0);
253 }
254 
260 static inline int16_t mavlink_msg_flexifunction_read_req_get_data_index(const mavlink_message_t* msg)
261 {
262  return _MAV_RETURN_int16_t(msg, 2);
263 }
264 
271 static inline void mavlink_msg_flexifunction_read_req_decode(const mavlink_message_t* msg, mavlink_flexifunction_read_req_t* flexifunction_read_req)
272 {
273 #if MAVLINK_NEED_BYTE_SWAP
274  flexifunction_read_req->read_req_type = mavlink_msg_flexifunction_read_req_get_read_req_type(msg);
275  flexifunction_read_req->data_index = mavlink_msg_flexifunction_read_req_get_data_index(msg);
276  flexifunction_read_req->target_system = mavlink_msg_flexifunction_read_req_get_target_system(msg);
277  flexifunction_read_req->target_component = mavlink_msg_flexifunction_read_req_get_target_component(msg);
278 #else
279  memcpy(flexifunction_read_req, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_FLEXIFUNCTION_READ_REQ_LEN);
280 #endif
281 }
#define _MAV_RETURN_uint8_t(msg, wire_offset)
Definition: protocol.h:238
#define _mav_put_uint8_t(buf, wire_offset, b)
Definition: protocol.h:134
#define _mav_put_int16_t(buf, wire_offset, b)
Definition: protocol.h:140