1 | // MESSAGE EXTENDED_SYS_STATE PACKING |
---|
2 | |
---|
3 | #define MAVLINK_MSG_ID_EXTENDED_SYS_STATE 245 |
---|
4 | |
---|
5 | MAVPACKED( |
---|
6 | typedef struct __mavlink_extended_sys_state_t { |
---|
7 | uint8_t vtol_state; /*< The VTOL state if applicable. Is set to MAV_VTOL_STATE_UNDEFINED if UAV is not in VTOL configuration.*/ |
---|
8 | uint8_t landed_state; /*< The landed state. Is set to MAV_LANDED_STATE_UNDEFINED if landed state is unknown.*/ |
---|
9 | }) mavlink_extended_sys_state_t; |
---|
10 | |
---|
11 | #define MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN 2 |
---|
12 | #define MAVLINK_MSG_ID_EXTENDED_SYS_STATE_MIN_LEN 2 |
---|
13 | #define MAVLINK_MSG_ID_245_LEN 2 |
---|
14 | #define MAVLINK_MSG_ID_245_MIN_LEN 2 |
---|
15 | |
---|
16 | #define MAVLINK_MSG_ID_EXTENDED_SYS_STATE_CRC 130 |
---|
17 | #define MAVLINK_MSG_ID_245_CRC 130 |
---|
18 | |
---|
19 | |
---|
20 | |
---|
21 | #if MAVLINK_COMMAND_24BIT |
---|
22 | #define MAVLINK_MESSAGE_INFO_EXTENDED_SYS_STATE { \ |
---|
23 | 245, \ |
---|
24 | "EXTENDED_SYS_STATE", \ |
---|
25 | 2, \ |
---|
26 | { { "vtol_state", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_extended_sys_state_t, vtol_state) }, \ |
---|
27 | { "landed_state", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_extended_sys_state_t, landed_state) }, \ |
---|
28 | } \ |
---|
29 | } |
---|
30 | #else |
---|
31 | #define MAVLINK_MESSAGE_INFO_EXTENDED_SYS_STATE { \ |
---|
32 | "EXTENDED_SYS_STATE", \ |
---|
33 | 2, \ |
---|
34 | { { "vtol_state", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_extended_sys_state_t, vtol_state) }, \ |
---|
35 | { "landed_state", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_extended_sys_state_t, landed_state) }, \ |
---|
36 | } \ |
---|
37 | } |
---|
38 | #endif |
---|
39 | |
---|
40 | /** |
---|
41 | * @brief Pack a extended_sys_state message |
---|
42 | * @param system_id ID of this system |
---|
43 | * @param component_id ID of this component (e.g. 200 for IMU) |
---|
44 | * @param msg The MAVLink message to compress the data into |
---|
45 | * |
---|
46 | * @param vtol_state The VTOL state if applicable. Is set to MAV_VTOL_STATE_UNDEFINED if UAV is not in VTOL configuration. |
---|
47 | * @param landed_state The landed state. Is set to MAV_LANDED_STATE_UNDEFINED if landed state is unknown. |
---|
48 | * @return length of the message in bytes (excluding serial stream start sign) |
---|
49 | */ |
---|
50 | static inline uint16_t mavlink_msg_extended_sys_state_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, |
---|
51 | uint8_t vtol_state, uint8_t landed_state) |
---|
52 | { |
---|
53 | #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS |
---|
54 | char buf[MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN]; |
---|
55 | _mav_put_uint8_t(buf, 0, vtol_state); |
---|
56 | _mav_put_uint8_t(buf, 1, landed_state); |
---|
57 | |
---|
58 | memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN); |
---|
59 | #else |
---|
60 | mavlink_extended_sys_state_t packet; |
---|
61 | packet.vtol_state = vtol_state; |
---|
62 | packet.landed_state = landed_state; |
---|
63 | |
---|
64 | memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN); |
---|
65 | #endif |
---|
66 | |
---|
67 | msg->msgid = MAVLINK_MSG_ID_EXTENDED_SYS_STATE; |
---|
68 | return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_MIN_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_CRC); |
---|
69 | } |
---|
70 | |
---|
71 | /** |
---|
72 | * @brief Pack a extended_sys_state message on a channel |
---|
73 | * @param system_id ID of this system |
---|
74 | * @param component_id ID of this component (e.g. 200 for IMU) |
---|
75 | * @param chan The MAVLink channel this message will be sent over |
---|
76 | * @param msg The MAVLink message to compress the data into |
---|
77 | * @param vtol_state The VTOL state if applicable. Is set to MAV_VTOL_STATE_UNDEFINED if UAV is not in VTOL configuration. |
---|
78 | * @param landed_state The landed state. Is set to MAV_LANDED_STATE_UNDEFINED if landed state is unknown. |
---|
79 | * @return length of the message in bytes (excluding serial stream start sign) |
---|
80 | */ |
---|
81 | static inline uint16_t mavlink_msg_extended_sys_state_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, |
---|
82 | mavlink_message_t* msg, |
---|
83 | uint8_t vtol_state,uint8_t landed_state) |
---|
84 | { |
---|
85 | #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS |
---|
86 | char buf[MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN]; |
---|
87 | _mav_put_uint8_t(buf, 0, vtol_state); |
---|
88 | _mav_put_uint8_t(buf, 1, landed_state); |
---|
89 | |
---|
90 | memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN); |
---|
91 | #else |
---|
92 | mavlink_extended_sys_state_t packet; |
---|
93 | packet.vtol_state = vtol_state; |
---|
94 | packet.landed_state = landed_state; |
---|
95 | |
---|
96 | memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN); |
---|
97 | #endif |
---|
98 | |
---|
99 | msg->msgid = MAVLINK_MSG_ID_EXTENDED_SYS_STATE; |
---|
100 | return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_MIN_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_CRC); |
---|
101 | } |
---|
102 | |
---|
103 | /** |
---|
104 | * @brief Encode a extended_sys_state struct |
---|
105 | * |
---|
106 | * @param system_id ID of this system |
---|
107 | * @param component_id ID of this component (e.g. 200 for IMU) |
---|
108 | * @param msg The MAVLink message to compress the data into |
---|
109 | * @param extended_sys_state C-struct to read the message contents from |
---|
110 | */ |
---|
111 | static inline uint16_t mavlink_msg_extended_sys_state_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_extended_sys_state_t* extended_sys_state) |
---|
112 | { |
---|
113 | return mavlink_msg_extended_sys_state_pack(system_id, component_id, msg, extended_sys_state->vtol_state, extended_sys_state->landed_state); |
---|
114 | } |
---|
115 | |
---|
116 | /** |
---|
117 | * @brief Encode a extended_sys_state struct on a channel |
---|
118 | * |
---|
119 | * @param system_id ID of this system |
---|
120 | * @param component_id ID of this component (e.g. 200 for IMU) |
---|
121 | * @param chan The MAVLink channel this message will be sent over |
---|
122 | * @param msg The MAVLink message to compress the data into |
---|
123 | * @param extended_sys_state C-struct to read the message contents from |
---|
124 | */ |
---|
125 | static inline uint16_t mavlink_msg_extended_sys_state_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_extended_sys_state_t* extended_sys_state) |
---|
126 | { |
---|
127 | return mavlink_msg_extended_sys_state_pack_chan(system_id, component_id, chan, msg, extended_sys_state->vtol_state, extended_sys_state->landed_state); |
---|
128 | } |
---|
129 | |
---|
130 | /** |
---|
131 | * @brief Send a extended_sys_state message |
---|
132 | * @param chan MAVLink channel to send the message |
---|
133 | * |
---|
134 | * @param vtol_state The VTOL state if applicable. Is set to MAV_VTOL_STATE_UNDEFINED if UAV is not in VTOL configuration. |
---|
135 | * @param landed_state The landed state. Is set to MAV_LANDED_STATE_UNDEFINED if landed state is unknown. |
---|
136 | */ |
---|
137 | #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS |
---|
138 | |
---|
139 | static inline void mavlink_msg_extended_sys_state_send(mavlink_channel_t chan, uint8_t vtol_state, uint8_t landed_state) |
---|
140 | { |
---|
141 | #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS |
---|
142 | char buf[MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN]; |
---|
143 | _mav_put_uint8_t(buf, 0, vtol_state); |
---|
144 | _mav_put_uint8_t(buf, 1, landed_state); |
---|
145 | |
---|
146 | _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_EXTENDED_SYS_STATE, buf, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_MIN_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_CRC); |
---|
147 | #else |
---|
148 | mavlink_extended_sys_state_t packet; |
---|
149 | packet.vtol_state = vtol_state; |
---|
150 | packet.landed_state = landed_state; |
---|
151 | |
---|
152 | _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_EXTENDED_SYS_STATE, (const char *)&packet, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_MIN_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_CRC); |
---|
153 | #endif |
---|
154 | } |
---|
155 | |
---|
156 | /** |
---|
157 | * @brief Send a extended_sys_state message |
---|
158 | * @param chan MAVLink channel to send the message |
---|
159 | * @param struct The MAVLink struct to serialize |
---|
160 | */ |
---|
161 | static inline void mavlink_msg_extended_sys_state_send_struct(mavlink_channel_t chan, const mavlink_extended_sys_state_t* extended_sys_state) |
---|
162 | { |
---|
163 | #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS |
---|
164 | mavlink_msg_extended_sys_state_send(chan, extended_sys_state->vtol_state, extended_sys_state->landed_state); |
---|
165 | #else |
---|
166 | _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_EXTENDED_SYS_STATE, (const char *)extended_sys_state, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_MIN_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_CRC); |
---|
167 | #endif |
---|
168 | } |
---|
169 | |
---|
170 | #if MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN <= MAVLINK_MAX_PAYLOAD_LEN |
---|
171 | /* |
---|
172 | This varient of _send() can be used to save stack space by re-using |
---|
173 | memory from the receive buffer. The caller provides a |
---|
174 | mavlink_message_t which is the size of a full mavlink message. This |
---|
175 | is usually the receive buffer for the channel, and allows a reply to an |
---|
176 | incoming message with minimum stack space usage. |
---|
177 | */ |
---|
178 | static inline void mavlink_msg_extended_sys_state_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t vtol_state, uint8_t landed_state) |
---|
179 | { |
---|
180 | #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS |
---|
181 | char *buf = (char *)msgbuf; |
---|
182 | _mav_put_uint8_t(buf, 0, vtol_state); |
---|
183 | _mav_put_uint8_t(buf, 1, landed_state); |
---|
184 | |
---|
185 | _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_EXTENDED_SYS_STATE, buf, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_MIN_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_CRC); |
---|
186 | #else |
---|
187 | mavlink_extended_sys_state_t *packet = (mavlink_extended_sys_state_t *)msgbuf; |
---|
188 | packet->vtol_state = vtol_state; |
---|
189 | packet->landed_state = landed_state; |
---|
190 | |
---|
191 | _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_EXTENDED_SYS_STATE, (const char *)packet, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_MIN_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_CRC); |
---|
192 | #endif |
---|
193 | } |
---|
194 | #endif |
---|
195 | |
---|
196 | #endif |
---|
197 | |
---|
198 | // MESSAGE EXTENDED_SYS_STATE UNPACKING |
---|
199 | |
---|
200 | |
---|
201 | /** |
---|
202 | * @brief Get field vtol_state from extended_sys_state message |
---|
203 | * |
---|
204 | * @return The VTOL state if applicable. Is set to MAV_VTOL_STATE_UNDEFINED if UAV is not in VTOL configuration. |
---|
205 | */ |
---|
206 | static inline uint8_t mavlink_msg_extended_sys_state_get_vtol_state(const mavlink_message_t* msg) |
---|
207 | { |
---|
208 | return _MAV_RETURN_uint8_t(msg, 0); |
---|
209 | } |
---|
210 | |
---|
211 | /** |
---|
212 | * @brief Get field landed_state from extended_sys_state message |
---|
213 | * |
---|
214 | * @return The landed state. Is set to MAV_LANDED_STATE_UNDEFINED if landed state is unknown. |
---|
215 | */ |
---|
216 | static inline uint8_t mavlink_msg_extended_sys_state_get_landed_state(const mavlink_message_t* msg) |
---|
217 | { |
---|
218 | return _MAV_RETURN_uint8_t(msg, 1); |
---|
219 | } |
---|
220 | |
---|
221 | /** |
---|
222 | * @brief Decode a extended_sys_state message into a struct |
---|
223 | * |
---|
224 | * @param msg The message to decode |
---|
225 | * @param extended_sys_state C-struct to decode the message contents into |
---|
226 | */ |
---|
227 | static inline void mavlink_msg_extended_sys_state_decode(const mavlink_message_t* msg, mavlink_extended_sys_state_t* extended_sys_state) |
---|
228 | { |
---|
229 | #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS |
---|
230 | extended_sys_state->vtol_state = mavlink_msg_extended_sys_state_get_vtol_state(msg); |
---|
231 | extended_sys_state->landed_state = mavlink_msg_extended_sys_state_get_landed_state(msg); |
---|
232 | #else |
---|
233 | uint8_t len = msg->len < MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN? msg->len : MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN; |
---|
234 | memset(extended_sys_state, 0, MAVLINK_MSG_ID_EXTENDED_SYS_STATE_LEN); |
---|
235 | memcpy(extended_sys_state, _MAV_PAYLOAD(msg), len); |
---|
236 | #endif |
---|
237 | } |
---|