NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_attitude_control.h
Go to the documentation of this file.
1 // MESSAGE ATTITUDE_CONTROL PACKING
2 
3 #define MAVLINK_MSG_ID_ATTITUDE_CONTROL 200
4 
6 {
7  float roll;
8  float pitch;
9  float yaw;
10  float thrust;
11  uint8_t target;
12  uint8_t roll_manual;
13  uint8_t pitch_manual;
14  uint8_t yaw_manual;
15  uint8_t thrust_manual;
17 
18 #define MAVLINK_MSG_ID_ATTITUDE_CONTROL_LEN 21
19 #define MAVLINK_MSG_ID_200_LEN 21
20 
21 #define MAVLINK_MSG_ID_ATTITUDE_CONTROL_CRC 254
22 #define MAVLINK_MSG_ID_200_CRC 254
23 
24 
25 
26 #define MAVLINK_MESSAGE_INFO_ATTITUDE_CONTROL { \
27  "ATTITUDE_CONTROL", \
28  9, \
29  { { "roll", NULL, MAVLINK_TYPE_FLOAT, 0, 0, offsetof(mavlink_attitude_control_t, roll) }, \
30  { "pitch", NULL, MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_attitude_control_t, pitch) }, \
31  { "yaw", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_attitude_control_t, yaw) }, \
32  { "thrust", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_attitude_control_t, thrust) }, \
33  { "target", NULL, MAVLINK_TYPE_UINT8_T, 0, 16, offsetof(mavlink_attitude_control_t, target) }, \
34  { "roll_manual", NULL, MAVLINK_TYPE_UINT8_T, 0, 17, offsetof(mavlink_attitude_control_t, roll_manual) }, \
35  { "pitch_manual", NULL, MAVLINK_TYPE_UINT8_T, 0, 18, offsetof(mavlink_attitude_control_t, pitch_manual) }, \
36  { "yaw_manual", NULL, MAVLINK_TYPE_UINT8_T, 0, 19, offsetof(mavlink_attitude_control_t, yaw_manual) }, \
37  { "thrust_manual", NULL, MAVLINK_TYPE_UINT8_T, 0, 20, offsetof(mavlink_attitude_control_t, thrust_manual) }, \
38  } \
39 }
40 
41 
59 static inline uint16_t mavlink_msg_attitude_control_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
60  uint8_t target, float roll, float pitch, float yaw, float thrust, uint8_t roll_manual, uint8_t pitch_manual, uint8_t yaw_manual, uint8_t thrust_manual)
61 {
62 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
64  _mav_put_float(buf, 0, roll);
65  _mav_put_float(buf, 4, pitch);
66  _mav_put_float(buf, 8, yaw);
67  _mav_put_float(buf, 12, thrust);
68  _mav_put_uint8_t(buf, 16, target);
69  _mav_put_uint8_t(buf, 17, roll_manual);
70  _mav_put_uint8_t(buf, 18, pitch_manual);
71  _mav_put_uint8_t(buf, 19, yaw_manual);
72  _mav_put_uint8_t(buf, 20, thrust_manual);
73 
75 #else
77  packet.roll = roll;
78  packet.pitch = pitch;
79  packet.yaw = yaw;
80  packet.thrust = thrust;
81  packet.target = target;
82  packet.roll_manual = roll_manual;
83  packet.pitch_manual = pitch_manual;
84  packet.yaw_manual = yaw_manual;
85  packet.thrust_manual = thrust_manual;
86 
88 #endif
89 
91 #if MAVLINK_CRC_EXTRA
93 #else
94  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_ATTITUDE_CONTROL_LEN);
95 #endif
96 }
97 
115 static inline uint16_t mavlink_msg_attitude_control_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
116  mavlink_message_t* msg,
117  uint8_t target,float roll,float pitch,float yaw,float thrust,uint8_t roll_manual,uint8_t pitch_manual,uint8_t yaw_manual,uint8_t thrust_manual)
118 {
119 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
121  _mav_put_float(buf, 0, roll);
122  _mav_put_float(buf, 4, pitch);
123  _mav_put_float(buf, 8, yaw);
124  _mav_put_float(buf, 12, thrust);
125  _mav_put_uint8_t(buf, 16, target);
126  _mav_put_uint8_t(buf, 17, roll_manual);
127  _mav_put_uint8_t(buf, 18, pitch_manual);
128  _mav_put_uint8_t(buf, 19, yaw_manual);
129  _mav_put_uint8_t(buf, 20, thrust_manual);
130 
132 #else
134  packet.roll = roll;
135  packet.pitch = pitch;
136  packet.yaw = yaw;
137  packet.thrust = thrust;
138  packet.target = target;
139  packet.roll_manual = roll_manual;
140  packet.pitch_manual = pitch_manual;
141  packet.yaw_manual = yaw_manual;
142  packet.thrust_manual = thrust_manual;
143 
145 #endif
146 
147  msg->msgid = MAVLINK_MSG_ID_ATTITUDE_CONTROL;
148 #if MAVLINK_CRC_EXTRA
150 #else
151  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_ATTITUDE_CONTROL_LEN);
152 #endif
153 }
154 
163 static inline uint16_t mavlink_msg_attitude_control_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_attitude_control_t* attitude_control)
164 {
165  return mavlink_msg_attitude_control_pack(system_id, component_id, msg, attitude_control->target, attitude_control->roll, attitude_control->pitch, attitude_control->yaw, attitude_control->thrust, attitude_control->roll_manual, attitude_control->pitch_manual, attitude_control->yaw_manual, attitude_control->thrust_manual);
166 }
167 
177 static inline uint16_t mavlink_msg_attitude_control_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_attitude_control_t* attitude_control)
178 {
179  return mavlink_msg_attitude_control_pack_chan(system_id, component_id, chan, msg, attitude_control->target, attitude_control->roll, attitude_control->pitch, attitude_control->yaw, attitude_control->thrust, attitude_control->roll_manual, attitude_control->pitch_manual, attitude_control->yaw_manual, attitude_control->thrust_manual);
180 }
181 
196 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
197 
198 static inline void mavlink_msg_attitude_control_send(mavlink_channel_t chan, uint8_t target, float roll, float pitch, float yaw, float thrust, uint8_t roll_manual, uint8_t pitch_manual, uint8_t yaw_manual, uint8_t thrust_manual)
199 {
200 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
202  _mav_put_float(buf, 0, roll);
203  _mav_put_float(buf, 4, pitch);
204  _mav_put_float(buf, 8, yaw);
205  _mav_put_float(buf, 12, thrust);
206  _mav_put_uint8_t(buf, 16, target);
207  _mav_put_uint8_t(buf, 17, roll_manual);
208  _mav_put_uint8_t(buf, 18, pitch_manual);
209  _mav_put_uint8_t(buf, 19, yaw_manual);
210  _mav_put_uint8_t(buf, 20, thrust_manual);
211 
212 #if MAVLINK_CRC_EXTRA
214 #else
215  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ATTITUDE_CONTROL, buf, MAVLINK_MSG_ID_ATTITUDE_CONTROL_LEN);
216 #endif
217 #else
219  packet.roll = roll;
220  packet.pitch = pitch;
221  packet.yaw = yaw;
222  packet.thrust = thrust;
223  packet.target = target;
224  packet.roll_manual = roll_manual;
225  packet.pitch_manual = pitch_manual;
226  packet.yaw_manual = yaw_manual;
227  packet.thrust_manual = thrust_manual;
228 
229 #if MAVLINK_CRC_EXTRA
230  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ATTITUDE_CONTROL, (const char *)&packet, MAVLINK_MSG_ID_ATTITUDE_CONTROL_LEN, MAVLINK_MSG_ID_ATTITUDE_CONTROL_CRC);
231 #else
232  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ATTITUDE_CONTROL, (const char *)&packet, MAVLINK_MSG_ID_ATTITUDE_CONTROL_LEN);
233 #endif
234 #endif
235 }
236 
237 #if MAVLINK_MSG_ID_ATTITUDE_CONTROL_LEN <= MAVLINK_MAX_PAYLOAD_LEN
238 /*
239  This varient of _send() can be used to save stack space by re-using
240  memory from the receive buffer. The caller provides a
241  mavlink_message_t which is the size of a full mavlink message. This
242  is usually the receive buffer for the channel, and allows a reply to an
243  incoming message with minimum stack space usage.
244  */
245 static inline void mavlink_msg_attitude_control_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t target, float roll, float pitch, float yaw, float thrust, uint8_t roll_manual, uint8_t pitch_manual, uint8_t yaw_manual, uint8_t thrust_manual)
246 {
247 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
248  char *buf = (char *)msgbuf;
249  _mav_put_float(buf, 0, roll);
250  _mav_put_float(buf, 4, pitch);
251  _mav_put_float(buf, 8, yaw);
252  _mav_put_float(buf, 12, thrust);
253  _mav_put_uint8_t(buf, 16, target);
254  _mav_put_uint8_t(buf, 17, roll_manual);
255  _mav_put_uint8_t(buf, 18, pitch_manual);
256  _mav_put_uint8_t(buf, 19, yaw_manual);
257  _mav_put_uint8_t(buf, 20, thrust_manual);
258 
259 #if MAVLINK_CRC_EXTRA
261 #else
262  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ATTITUDE_CONTROL, buf, MAVLINK_MSG_ID_ATTITUDE_CONTROL_LEN);
263 #endif
264 #else
266  packet->roll = roll;
267  packet->pitch = pitch;
268  packet->yaw = yaw;
269  packet->thrust = thrust;
270  packet->target = target;
271  packet->roll_manual = roll_manual;
272  packet->pitch_manual = pitch_manual;
273  packet->yaw_manual = yaw_manual;
274  packet->thrust_manual = thrust_manual;
275 
276 #if MAVLINK_CRC_EXTRA
277  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ATTITUDE_CONTROL, (const char *)packet, MAVLINK_MSG_ID_ATTITUDE_CONTROL_LEN, MAVLINK_MSG_ID_ATTITUDE_CONTROL_CRC);
278 #else
279  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ATTITUDE_CONTROL, (const char *)packet, MAVLINK_MSG_ID_ATTITUDE_CONTROL_LEN);
280 #endif
281 #endif
282 }
283 #endif
284 
285 #endif
286 
287 // MESSAGE ATTITUDE_CONTROL UNPACKING
288 
289 
295 static inline uint8_t mavlink_msg_attitude_control_get_target(const mavlink_message_t* msg)
296 {
297  return _MAV_RETURN_uint8_t(msg, 16);
298 }
299 
305 static inline float mavlink_msg_attitude_control_get_roll(const mavlink_message_t* msg)
306 {
307  return _MAV_RETURN_float(msg, 0);
308 }
309 
315 static inline float mavlink_msg_attitude_control_get_pitch(const mavlink_message_t* msg)
316 {
317  return _MAV_RETURN_float(msg, 4);
318 }
319 
325 static inline float mavlink_msg_attitude_control_get_yaw(const mavlink_message_t* msg)
326 {
327  return _MAV_RETURN_float(msg, 8);
328 }
329 
335 static inline float mavlink_msg_attitude_control_get_thrust(const mavlink_message_t* msg)
336 {
337  return _MAV_RETURN_float(msg, 12);
338 }
339 
345 static inline uint8_t mavlink_msg_attitude_control_get_roll_manual(const mavlink_message_t* msg)
346 {
347  return _MAV_RETURN_uint8_t(msg, 17);
348 }
349 
355 static inline uint8_t mavlink_msg_attitude_control_get_pitch_manual(const mavlink_message_t* msg)
356 {
357  return _MAV_RETURN_uint8_t(msg, 18);
358 }
359 
365 static inline uint8_t mavlink_msg_attitude_control_get_yaw_manual(const mavlink_message_t* msg)
366 {
367  return _MAV_RETURN_uint8_t(msg, 19);
368 }
369 
375 static inline uint8_t mavlink_msg_attitude_control_get_thrust_manual(const mavlink_message_t* msg)
376 {
377  return _MAV_RETURN_uint8_t(msg, 20);
378 }
379 
386 static inline void mavlink_msg_attitude_control_decode(const mavlink_message_t* msg, mavlink_attitude_control_t* attitude_control)
387 {
388 #if MAVLINK_NEED_BYTE_SWAP
389  attitude_control->roll = mavlink_msg_attitude_control_get_roll(msg);
390  attitude_control->pitch = mavlink_msg_attitude_control_get_pitch(msg);
391  attitude_control->yaw = mavlink_msg_attitude_control_get_yaw(msg);
392  attitude_control->thrust = mavlink_msg_attitude_control_get_thrust(msg);
393  attitude_control->target = mavlink_msg_attitude_control_get_target(msg);
394  attitude_control->roll_manual = mavlink_msg_attitude_control_get_roll_manual(msg);
395  attitude_control->pitch_manual = mavlink_msg_attitude_control_get_pitch_manual(msg);
396  attitude_control->yaw_manual = mavlink_msg_attitude_control_get_yaw_manual(msg);
397  attitude_control->thrust_manual = mavlink_msg_attitude_control_get_thrust_manual(msg);
398 #else
399  memcpy(attitude_control, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_ATTITUDE_CONTROL_LEN);
400 #endif
401 }
#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
int16_t pitch
Definition: accelerometer.h:52
int16_t yaw
Definition: sensors.h:31
int16_t roll
Definition: accelerometer.h:51