NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_mid_lvl_cmds.h
Go to the documentation of this file.
1 // MESSAGE MID_LVL_CMDS PACKING
2 
3 #define MAVLINK_MSG_ID_MID_LVL_CMDS 180
4 
6 {
7  float hCommand;
8  float uCommand;
9  float rCommand;
10  uint8_t target;
12 
13 #define MAVLINK_MSG_ID_MID_LVL_CMDS_LEN 13
14 #define MAVLINK_MSG_ID_180_LEN 13
15 
16 #define MAVLINK_MSG_ID_MID_LVL_CMDS_CRC 146
17 #define MAVLINK_MSG_ID_180_CRC 146
18 
19 
20 
21 #define MAVLINK_MESSAGE_INFO_MID_LVL_CMDS { \
22  "MID_LVL_CMDS", \
23  4, \
24  { { "hCommand", NULL, MAVLINK_TYPE_FLOAT, 0, 0, offsetof(mavlink_mid_lvl_cmds_t, hCommand) }, \
25  { "uCommand", NULL, MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_mid_lvl_cmds_t, uCommand) }, \
26  { "rCommand", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_mid_lvl_cmds_t, rCommand) }, \
27  { "target", NULL, MAVLINK_TYPE_UINT8_T, 0, 12, offsetof(mavlink_mid_lvl_cmds_t, target) }, \
28  } \
29 }
30 
31 
44 static inline uint16_t mavlink_msg_mid_lvl_cmds_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
45  uint8_t target, float hCommand, float uCommand, float rCommand)
46 {
47 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
49  _mav_put_float(buf, 0, hCommand);
50  _mav_put_float(buf, 4, uCommand);
51  _mav_put_float(buf, 8, rCommand);
52  _mav_put_uint8_t(buf, 12, target);
53 
55 #else
57  packet.hCommand = hCommand;
58  packet.uCommand = uCommand;
59  packet.rCommand = rCommand;
60  packet.target = target;
61 
63 #endif
64 
65  msg->msgid = MAVLINK_MSG_ID_MID_LVL_CMDS;
66 #if MAVLINK_CRC_EXTRA
68 #else
69  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_MID_LVL_CMDS_LEN);
70 #endif
71 }
72 
85 static inline uint16_t mavlink_msg_mid_lvl_cmds_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
86  mavlink_message_t* msg,
87  uint8_t target,float hCommand,float uCommand,float rCommand)
88 {
89 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
91  _mav_put_float(buf, 0, hCommand);
92  _mav_put_float(buf, 4, uCommand);
93  _mav_put_float(buf, 8, rCommand);
94  _mav_put_uint8_t(buf, 12, target);
95 
97 #else
99  packet.hCommand = hCommand;
100  packet.uCommand = uCommand;
101  packet.rCommand = rCommand;
102  packet.target = target;
103 
105 #endif
106 
107  msg->msgid = MAVLINK_MSG_ID_MID_LVL_CMDS;
108 #if MAVLINK_CRC_EXTRA
110 #else
111  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_MID_LVL_CMDS_LEN);
112 #endif
113 }
114 
123 static inline uint16_t mavlink_msg_mid_lvl_cmds_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_mid_lvl_cmds_t* mid_lvl_cmds)
124 {
125  return mavlink_msg_mid_lvl_cmds_pack(system_id, component_id, msg, mid_lvl_cmds->target, mid_lvl_cmds->hCommand, mid_lvl_cmds->uCommand, mid_lvl_cmds->rCommand);
126 }
127 
137 static inline uint16_t mavlink_msg_mid_lvl_cmds_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_mid_lvl_cmds_t* mid_lvl_cmds)
138 {
139  return mavlink_msg_mid_lvl_cmds_pack_chan(system_id, component_id, chan, msg, mid_lvl_cmds->target, mid_lvl_cmds->hCommand, mid_lvl_cmds->uCommand, mid_lvl_cmds->rCommand);
140 }
141 
151 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
152 
153 static inline void mavlink_msg_mid_lvl_cmds_send(mavlink_channel_t chan, uint8_t target, float hCommand, float uCommand, float rCommand)
154 {
155 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
157  _mav_put_float(buf, 0, hCommand);
158  _mav_put_float(buf, 4, uCommand);
159  _mav_put_float(buf, 8, rCommand);
160  _mav_put_uint8_t(buf, 12, target);
161 
162 #if MAVLINK_CRC_EXTRA
164 #else
165  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MID_LVL_CMDS, buf, MAVLINK_MSG_ID_MID_LVL_CMDS_LEN);
166 #endif
167 #else
168  mavlink_mid_lvl_cmds_t packet;
169  packet.hCommand = hCommand;
170  packet.uCommand = uCommand;
171  packet.rCommand = rCommand;
172  packet.target = target;
173 
174 #if MAVLINK_CRC_EXTRA
175  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MID_LVL_CMDS, (const char *)&packet, MAVLINK_MSG_ID_MID_LVL_CMDS_LEN, MAVLINK_MSG_ID_MID_LVL_CMDS_CRC);
176 #else
177  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MID_LVL_CMDS, (const char *)&packet, MAVLINK_MSG_ID_MID_LVL_CMDS_LEN);
178 #endif
179 #endif
180 }
181 
182 #if MAVLINK_MSG_ID_MID_LVL_CMDS_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_mid_lvl_cmds_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t target, float hCommand, float uCommand, float rCommand)
191 {
192 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
193  char *buf = (char *)msgbuf;
194  _mav_put_float(buf, 0, hCommand);
195  _mav_put_float(buf, 4, uCommand);
196  _mav_put_float(buf, 8, rCommand);
197  _mav_put_uint8_t(buf, 12, target);
198 
199 #if MAVLINK_CRC_EXTRA
201 #else
202  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MID_LVL_CMDS, buf, MAVLINK_MSG_ID_MID_LVL_CMDS_LEN);
203 #endif
204 #else
206  packet->hCommand = hCommand;
207  packet->uCommand = uCommand;
208  packet->rCommand = rCommand;
209  packet->target = target;
210 
211 #if MAVLINK_CRC_EXTRA
212  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MID_LVL_CMDS, (const char *)packet, MAVLINK_MSG_ID_MID_LVL_CMDS_LEN, MAVLINK_MSG_ID_MID_LVL_CMDS_CRC);
213 #else
214  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MID_LVL_CMDS, (const char *)packet, MAVLINK_MSG_ID_MID_LVL_CMDS_LEN);
215 #endif
216 #endif
217 }
218 #endif
219 
220 #endif
221 
222 // MESSAGE MID_LVL_CMDS UNPACKING
223 
224 
230 static inline uint8_t mavlink_msg_mid_lvl_cmds_get_target(const mavlink_message_t* msg)
231 {
232  return _MAV_RETURN_uint8_t(msg, 12);
233 }
234 
240 static inline float mavlink_msg_mid_lvl_cmds_get_hCommand(const mavlink_message_t* msg)
241 {
242  return _MAV_RETURN_float(msg, 0);
243 }
244 
250 static inline float mavlink_msg_mid_lvl_cmds_get_uCommand(const mavlink_message_t* msg)
251 {
252  return _MAV_RETURN_float(msg, 4);
253 }
254 
260 static inline float mavlink_msg_mid_lvl_cmds_get_rCommand(const mavlink_message_t* msg)
261 {
262  return _MAV_RETURN_float(msg, 8);
263 }
264 
271 static inline void mavlink_msg_mid_lvl_cmds_decode(const mavlink_message_t* msg, mavlink_mid_lvl_cmds_t* mid_lvl_cmds)
272 {
273 #if MAVLINK_NEED_BYTE_SWAP
274  mid_lvl_cmds->hCommand = mavlink_msg_mid_lvl_cmds_get_hCommand(msg);
275  mid_lvl_cmds->uCommand = mavlink_msg_mid_lvl_cmds_get_uCommand(msg);
276  mid_lvl_cmds->rCommand = mavlink_msg_mid_lvl_cmds_get_rCommand(msg);
277  mid_lvl_cmds->target = mavlink_msg_mid_lvl_cmds_get_target(msg);
278 #else
279  memcpy(mid_lvl_cmds, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_MID_LVL_CMDS_LEN);
280 #endif
281 }
#define _mav_put_float(buf, wire_offset, b)
Definition: protocol.h:145
#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