Move telemetry displayport init and cms device registering
[betaflight.git] / lib / main / MAVLink / common / mavlink_msg_manual_setpoint.h
blobb2762672699938f3e2ef39a48ef84fd627e8bb45
1 // MESSAGE MANUAL_SETPOINT PACKING
3 #define MAVLINK_MSG_ID_MANUAL_SETPOINT 81
5 typedef struct __mavlink_manual_setpoint_t
7 uint32_t time_boot_ms; ///< Timestamp in milliseconds since system boot
8 float roll; ///< Desired roll rate in radians per second
9 float pitch; ///< Desired pitch rate in radians per second
10 float yaw; ///< Desired yaw rate in radians per second
11 float thrust; ///< Collective thrust, normalized to 0 .. 1
12 uint8_t mode_switch; ///< Flight mode switch position, 0.. 255
13 uint8_t manual_override_switch; ///< Override mode switch position, 0.. 255
14 } mavlink_manual_setpoint_t;
16 #define MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN 22
17 #define MAVLINK_MSG_ID_81_LEN 22
19 #define MAVLINK_MSG_ID_MANUAL_SETPOINT_CRC 106
20 #define MAVLINK_MSG_ID_81_CRC 106
24 #define MAVLINK_MESSAGE_INFO_MANUAL_SETPOINT { \
25 "MANUAL_SETPOINT", \
26 7, \
27 { { "time_boot_ms", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_manual_setpoint_t, time_boot_ms) }, \
28 { "roll", NULL, MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_manual_setpoint_t, roll) }, \
29 { "pitch", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_manual_setpoint_t, pitch) }, \
30 { "yaw", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_manual_setpoint_t, yaw) }, \
31 { "thrust", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_manual_setpoint_t, thrust) }, \
32 { "mode_switch", NULL, MAVLINK_TYPE_UINT8_T, 0, 20, offsetof(mavlink_manual_setpoint_t, mode_switch) }, \
33 { "manual_override_switch", NULL, MAVLINK_TYPE_UINT8_T, 0, 21, offsetof(mavlink_manual_setpoint_t, manual_override_switch) }, \
34 } \
38 /**
39 * @brief Pack a manual_setpoint message
40 * @param system_id ID of this system
41 * @param component_id ID of this component (e.g. 200 for IMU)
42 * @param msg The MAVLink message to compress the data into
44 * @param time_boot_ms Timestamp in milliseconds since system boot
45 * @param roll Desired roll rate in radians per second
46 * @param pitch Desired pitch rate in radians per second
47 * @param yaw Desired yaw rate in radians per second
48 * @param thrust Collective thrust, normalized to 0 .. 1
49 * @param mode_switch Flight mode switch position, 0.. 255
50 * @param manual_override_switch Override mode switch position, 0.. 255
51 * @return length of the message in bytes (excluding serial stream start sign)
53 static inline uint16_t mavlink_msg_manual_setpoint_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
54 uint32_t time_boot_ms, float roll, float pitch, float yaw, float thrust, uint8_t mode_switch, uint8_t manual_override_switch)
56 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
57 char buf[MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN];
58 _mav_put_uint32_t(buf, 0, time_boot_ms);
59 _mav_put_float(buf, 4, roll);
60 _mav_put_float(buf, 8, pitch);
61 _mav_put_float(buf, 12, yaw);
62 _mav_put_float(buf, 16, thrust);
63 _mav_put_uint8_t(buf, 20, mode_switch);
64 _mav_put_uint8_t(buf, 21, manual_override_switch);
66 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN);
67 #else
68 mavlink_manual_setpoint_t packet;
69 packet.time_boot_ms = time_boot_ms;
70 packet.roll = roll;
71 packet.pitch = pitch;
72 packet.yaw = yaw;
73 packet.thrust = thrust;
74 packet.mode_switch = mode_switch;
75 packet.manual_override_switch = manual_override_switch;
77 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN);
78 #endif
80 msg->msgid = MAVLINK_MSG_ID_MANUAL_SETPOINT;
81 #if MAVLINK_CRC_EXTRA
82 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN, MAVLINK_MSG_ID_MANUAL_SETPOINT_CRC);
83 #else
84 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN);
85 #endif
88 /**
89 * @brief Pack a manual_setpoint message on a channel
90 * @param system_id ID of this system
91 * @param component_id ID of this component (e.g. 200 for IMU)
92 * @param chan The MAVLink channel this message will be sent over
93 * @param msg The MAVLink message to compress the data into
94 * @param time_boot_ms Timestamp in milliseconds since system boot
95 * @param roll Desired roll rate in radians per second
96 * @param pitch Desired pitch rate in radians per second
97 * @param yaw Desired yaw rate in radians per second
98 * @param thrust Collective thrust, normalized to 0 .. 1
99 * @param mode_switch Flight mode switch position, 0.. 255
100 * @param manual_override_switch Override mode switch position, 0.. 255
101 * @return length of the message in bytes (excluding serial stream start sign)
103 static inline uint16_t mavlink_msg_manual_setpoint_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
104 mavlink_message_t* msg,
105 uint32_t time_boot_ms,float roll,float pitch,float yaw,float thrust,uint8_t mode_switch,uint8_t manual_override_switch)
107 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
108 char buf[MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN];
109 _mav_put_uint32_t(buf, 0, time_boot_ms);
110 _mav_put_float(buf, 4, roll);
111 _mav_put_float(buf, 8, pitch);
112 _mav_put_float(buf, 12, yaw);
113 _mav_put_float(buf, 16, thrust);
114 _mav_put_uint8_t(buf, 20, mode_switch);
115 _mav_put_uint8_t(buf, 21, manual_override_switch);
117 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN);
118 #else
119 mavlink_manual_setpoint_t packet;
120 packet.time_boot_ms = time_boot_ms;
121 packet.roll = roll;
122 packet.pitch = pitch;
123 packet.yaw = yaw;
124 packet.thrust = thrust;
125 packet.mode_switch = mode_switch;
126 packet.manual_override_switch = manual_override_switch;
128 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN);
129 #endif
131 msg->msgid = MAVLINK_MSG_ID_MANUAL_SETPOINT;
132 #if MAVLINK_CRC_EXTRA
133 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN, MAVLINK_MSG_ID_MANUAL_SETPOINT_CRC);
134 #else
135 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN);
136 #endif
140 * @brief Encode a manual_setpoint struct
142 * @param system_id ID of this system
143 * @param component_id ID of this component (e.g. 200 for IMU)
144 * @param msg The MAVLink message to compress the data into
145 * @param manual_setpoint C-struct to read the message contents from
147 static inline uint16_t mavlink_msg_manual_setpoint_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_manual_setpoint_t* manual_setpoint)
149 return mavlink_msg_manual_setpoint_pack(system_id, component_id, msg, manual_setpoint->time_boot_ms, manual_setpoint->roll, manual_setpoint->pitch, manual_setpoint->yaw, manual_setpoint->thrust, manual_setpoint->mode_switch, manual_setpoint->manual_override_switch);
153 * @brief Encode a manual_setpoint struct on a channel
155 * @param system_id ID of this system
156 * @param component_id ID of this component (e.g. 200 for IMU)
157 * @param chan The MAVLink channel this message will be sent over
158 * @param msg The MAVLink message to compress the data into
159 * @param manual_setpoint C-struct to read the message contents from
161 static inline uint16_t mavlink_msg_manual_setpoint_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_manual_setpoint_t* manual_setpoint)
163 return mavlink_msg_manual_setpoint_pack_chan(system_id, component_id, chan, msg, manual_setpoint->time_boot_ms, manual_setpoint->roll, manual_setpoint->pitch, manual_setpoint->yaw, manual_setpoint->thrust, manual_setpoint->mode_switch, manual_setpoint->manual_override_switch);
167 * @brief Send a manual_setpoint message
168 * @param chan MAVLink channel to send the message
170 * @param time_boot_ms Timestamp in milliseconds since system boot
171 * @param roll Desired roll rate in radians per second
172 * @param pitch Desired pitch rate in radians per second
173 * @param yaw Desired yaw rate in radians per second
174 * @param thrust Collective thrust, normalized to 0 .. 1
175 * @param mode_switch Flight mode switch position, 0.. 255
176 * @param manual_override_switch Override mode switch position, 0.. 255
178 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
180 static inline void mavlink_msg_manual_setpoint_send(mavlink_channel_t chan, uint32_t time_boot_ms, float roll, float pitch, float yaw, float thrust, uint8_t mode_switch, uint8_t manual_override_switch)
182 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
183 char buf[MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN];
184 _mav_put_uint32_t(buf, 0, time_boot_ms);
185 _mav_put_float(buf, 4, roll);
186 _mav_put_float(buf, 8, pitch);
187 _mav_put_float(buf, 12, yaw);
188 _mav_put_float(buf, 16, thrust);
189 _mav_put_uint8_t(buf, 20, mode_switch);
190 _mav_put_uint8_t(buf, 21, manual_override_switch);
192 #if MAVLINK_CRC_EXTRA
193 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MANUAL_SETPOINT, buf, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN, MAVLINK_MSG_ID_MANUAL_SETPOINT_CRC);
194 #else
195 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MANUAL_SETPOINT, buf, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN);
196 #endif
197 #else
198 mavlink_manual_setpoint_t packet;
199 packet.time_boot_ms = time_boot_ms;
200 packet.roll = roll;
201 packet.pitch = pitch;
202 packet.yaw = yaw;
203 packet.thrust = thrust;
204 packet.mode_switch = mode_switch;
205 packet.manual_override_switch = manual_override_switch;
207 #if MAVLINK_CRC_EXTRA
208 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MANUAL_SETPOINT, (const char *)&packet, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN, MAVLINK_MSG_ID_MANUAL_SETPOINT_CRC);
209 #else
210 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MANUAL_SETPOINT, (const char *)&packet, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN);
211 #endif
212 #endif
215 #if MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN <= MAVLINK_MAX_PAYLOAD_LEN
217 This varient of _send() can be used to save stack space by re-using
218 memory from the receive buffer. The caller provides a
219 mavlink_message_t which is the size of a full mavlink message. This
220 is usually the receive buffer for the channel, and allows a reply to an
221 incoming message with minimum stack space usage.
223 static inline void mavlink_msg_manual_setpoint_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint32_t time_boot_ms, float roll, float pitch, float yaw, float thrust, uint8_t mode_switch, uint8_t manual_override_switch)
225 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
226 char *buf = (char *)msgbuf;
227 _mav_put_uint32_t(buf, 0, time_boot_ms);
228 _mav_put_float(buf, 4, roll);
229 _mav_put_float(buf, 8, pitch);
230 _mav_put_float(buf, 12, yaw);
231 _mav_put_float(buf, 16, thrust);
232 _mav_put_uint8_t(buf, 20, mode_switch);
233 _mav_put_uint8_t(buf, 21, manual_override_switch);
235 #if MAVLINK_CRC_EXTRA
236 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MANUAL_SETPOINT, buf, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN, MAVLINK_MSG_ID_MANUAL_SETPOINT_CRC);
237 #else
238 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MANUAL_SETPOINT, buf, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN);
239 #endif
240 #else
241 mavlink_manual_setpoint_t *packet = (mavlink_manual_setpoint_t *)msgbuf;
242 packet->time_boot_ms = time_boot_ms;
243 packet->roll = roll;
244 packet->pitch = pitch;
245 packet->yaw = yaw;
246 packet->thrust = thrust;
247 packet->mode_switch = mode_switch;
248 packet->manual_override_switch = manual_override_switch;
250 #if MAVLINK_CRC_EXTRA
251 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MANUAL_SETPOINT, (const char *)packet, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN, MAVLINK_MSG_ID_MANUAL_SETPOINT_CRC);
252 #else
253 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MANUAL_SETPOINT, (const char *)packet, MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN);
254 #endif
255 #endif
257 #endif
259 #endif
261 // MESSAGE MANUAL_SETPOINT UNPACKING
265 * @brief Get field time_boot_ms from manual_setpoint message
267 * @return Timestamp in milliseconds since system boot
269 static inline uint32_t mavlink_msg_manual_setpoint_get_time_boot_ms(const mavlink_message_t* msg)
271 return _MAV_RETURN_uint32_t(msg, 0);
275 * @brief Get field roll from manual_setpoint message
277 * @return Desired roll rate in radians per second
279 static inline float mavlink_msg_manual_setpoint_get_roll(const mavlink_message_t* msg)
281 return _MAV_RETURN_float(msg, 4);
285 * @brief Get field pitch from manual_setpoint message
287 * @return Desired pitch rate in radians per second
289 static inline float mavlink_msg_manual_setpoint_get_pitch(const mavlink_message_t* msg)
291 return _MAV_RETURN_float(msg, 8);
295 * @brief Get field yaw from manual_setpoint message
297 * @return Desired yaw rate in radians per second
299 static inline float mavlink_msg_manual_setpoint_get_yaw(const mavlink_message_t* msg)
301 return _MAV_RETURN_float(msg, 12);
305 * @brief Get field thrust from manual_setpoint message
307 * @return Collective thrust, normalized to 0 .. 1
309 static inline float mavlink_msg_manual_setpoint_get_thrust(const mavlink_message_t* msg)
311 return _MAV_RETURN_float(msg, 16);
315 * @brief Get field mode_switch from manual_setpoint message
317 * @return Flight mode switch position, 0.. 255
319 static inline uint8_t mavlink_msg_manual_setpoint_get_mode_switch(const mavlink_message_t* msg)
321 return _MAV_RETURN_uint8_t(msg, 20);
325 * @brief Get field manual_override_switch from manual_setpoint message
327 * @return Override mode switch position, 0.. 255
329 static inline uint8_t mavlink_msg_manual_setpoint_get_manual_override_switch(const mavlink_message_t* msg)
331 return _MAV_RETURN_uint8_t(msg, 21);
335 * @brief Decode a manual_setpoint message into a struct
337 * @param msg The message to decode
338 * @param manual_setpoint C-struct to decode the message contents into
340 static inline void mavlink_msg_manual_setpoint_decode(const mavlink_message_t* msg, mavlink_manual_setpoint_t* manual_setpoint)
342 #if MAVLINK_NEED_BYTE_SWAP
343 manual_setpoint->time_boot_ms = mavlink_msg_manual_setpoint_get_time_boot_ms(msg);
344 manual_setpoint->roll = mavlink_msg_manual_setpoint_get_roll(msg);
345 manual_setpoint->pitch = mavlink_msg_manual_setpoint_get_pitch(msg);
346 manual_setpoint->yaw = mavlink_msg_manual_setpoint_get_yaw(msg);
347 manual_setpoint->thrust = mavlink_msg_manual_setpoint_get_thrust(msg);
348 manual_setpoint->mode_switch = mavlink_msg_manual_setpoint_get_mode_switch(msg);
349 manual_setpoint->manual_override_switch = mavlink_msg_manual_setpoint_get_manual_override_switch(msg);
350 #else
351 memcpy(manual_setpoint, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_MANUAL_SETPOINT_LEN);
352 #endif