NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_asluav_status.h
Go to the documentation of this file.
1 // MESSAGE ASLUAV_STATUS PACKING
2 
3 #define MAVLINK_MSG_ID_ASLUAV_STATUS 205
4 
6 {
7  float Motor_rpm;
8  uint8_t LED_status;
9  uint8_t SATCOM_status;
10  uint8_t Servo_status[8];
12 
13 #define MAVLINK_MSG_ID_ASLUAV_STATUS_LEN 14
14 #define MAVLINK_MSG_ID_205_LEN 14
15 
16 #define MAVLINK_MSG_ID_ASLUAV_STATUS_CRC 97
17 #define MAVLINK_MSG_ID_205_CRC 97
18 
19 #define MAVLINK_MSG_ASLUAV_STATUS_FIELD_SERVO_STATUS_LEN 8
20 
21 #define MAVLINK_MESSAGE_INFO_ASLUAV_STATUS { \
22  "ASLUAV_STATUS", \
23  4, \
24  { { "Motor_rpm", NULL, MAVLINK_TYPE_FLOAT, 0, 0, offsetof(mavlink_asluav_status_t, Motor_rpm) }, \
25  { "LED_status", NULL, MAVLINK_TYPE_UINT8_T, 0, 4, offsetof(mavlink_asluav_status_t, LED_status) }, \
26  { "SATCOM_status", NULL, MAVLINK_TYPE_UINT8_T, 0, 5, offsetof(mavlink_asluav_status_t, SATCOM_status) }, \
27  { "Servo_status", NULL, MAVLINK_TYPE_UINT8_T, 8, 6, offsetof(mavlink_asluav_status_t, Servo_status) }, \
28  } \
29 }
30 
31 
44 static inline uint16_t mavlink_msg_asluav_status_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
45  uint8_t LED_status, uint8_t SATCOM_status, const uint8_t *Servo_status, float Motor_rpm)
46 {
47 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
49  _mav_put_float(buf, 0, Motor_rpm);
50  _mav_put_uint8_t(buf, 4, LED_status);
51  _mav_put_uint8_t(buf, 5, SATCOM_status);
52  _mav_put_uint8_t_array(buf, 6, Servo_status, 8);
54 #else
56  packet.Motor_rpm = Motor_rpm;
57  packet.LED_status = LED_status;
58  packet.SATCOM_status = SATCOM_status;
59  mav_array_memcpy(packet.Servo_status, Servo_status, sizeof(uint8_t)*8);
61 #endif
62 
63  msg->msgid = MAVLINK_MSG_ID_ASLUAV_STATUS;
64 #if MAVLINK_CRC_EXTRA
66 #else
67  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_ASLUAV_STATUS_LEN);
68 #endif
69 }
70 
83 static inline uint16_t mavlink_msg_asluav_status_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
84  mavlink_message_t* msg,
85  uint8_t LED_status,uint8_t SATCOM_status,const uint8_t *Servo_status,float Motor_rpm)
86 {
87 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
89  _mav_put_float(buf, 0, Motor_rpm);
90  _mav_put_uint8_t(buf, 4, LED_status);
91  _mav_put_uint8_t(buf, 5, SATCOM_status);
92  _mav_put_uint8_t_array(buf, 6, Servo_status, 8);
94 #else
96  packet.Motor_rpm = Motor_rpm;
97  packet.LED_status = LED_status;
98  packet.SATCOM_status = SATCOM_status;
99  mav_array_memcpy(packet.Servo_status, Servo_status, sizeof(uint8_t)*8);
101 #endif
102 
103  msg->msgid = MAVLINK_MSG_ID_ASLUAV_STATUS;
104 #if MAVLINK_CRC_EXTRA
106 #else
107  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_ASLUAV_STATUS_LEN);
108 #endif
109 }
110 
119 static inline uint16_t mavlink_msg_asluav_status_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_asluav_status_t* asluav_status)
120 {
121  return mavlink_msg_asluav_status_pack(system_id, component_id, msg, asluav_status->LED_status, asluav_status->SATCOM_status, asluav_status->Servo_status, asluav_status->Motor_rpm);
122 }
123 
133 static inline uint16_t mavlink_msg_asluav_status_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_asluav_status_t* asluav_status)
134 {
135  return mavlink_msg_asluav_status_pack_chan(system_id, component_id, chan, msg, asluav_status->LED_status, asluav_status->SATCOM_status, asluav_status->Servo_status, asluav_status->Motor_rpm);
136 }
137 
147 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
148 
149 static inline void mavlink_msg_asluav_status_send(mavlink_channel_t chan, uint8_t LED_status, uint8_t SATCOM_status, const uint8_t *Servo_status, float Motor_rpm)
150 {
151 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
153  _mav_put_float(buf, 0, Motor_rpm);
154  _mav_put_uint8_t(buf, 4, LED_status);
155  _mav_put_uint8_t(buf, 5, SATCOM_status);
156  _mav_put_uint8_t_array(buf, 6, Servo_status, 8);
157 #if MAVLINK_CRC_EXTRA
159 #else
160  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ASLUAV_STATUS, buf, MAVLINK_MSG_ID_ASLUAV_STATUS_LEN);
161 #endif
162 #else
164  packet.Motor_rpm = Motor_rpm;
165  packet.LED_status = LED_status;
166  packet.SATCOM_status = SATCOM_status;
167  mav_array_memcpy(packet.Servo_status, Servo_status, sizeof(uint8_t)*8);
168 #if MAVLINK_CRC_EXTRA
169  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ASLUAV_STATUS, (const char *)&packet, MAVLINK_MSG_ID_ASLUAV_STATUS_LEN, MAVLINK_MSG_ID_ASLUAV_STATUS_CRC);
170 #else
171  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ASLUAV_STATUS, (const char *)&packet, MAVLINK_MSG_ID_ASLUAV_STATUS_LEN);
172 #endif
173 #endif
174 }
175 
176 #if MAVLINK_MSG_ID_ASLUAV_STATUS_LEN <= MAVLINK_MAX_PAYLOAD_LEN
177 /*
178  This varient of _send() can be used to save stack space by re-using
179  memory from the receive buffer. The caller provides a
180  mavlink_message_t which is the size of a full mavlink message. This
181  is usually the receive buffer for the channel, and allows a reply to an
182  incoming message with minimum stack space usage.
183  */
184 static inline void mavlink_msg_asluav_status_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t LED_status, uint8_t SATCOM_status, const uint8_t *Servo_status, float Motor_rpm)
185 {
186 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
187  char *buf = (char *)msgbuf;
188  _mav_put_float(buf, 0, Motor_rpm);
189  _mav_put_uint8_t(buf, 4, LED_status);
190  _mav_put_uint8_t(buf, 5, SATCOM_status);
191  _mav_put_uint8_t_array(buf, 6, Servo_status, 8);
192 #if MAVLINK_CRC_EXTRA
194 #else
195  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ASLUAV_STATUS, buf, MAVLINK_MSG_ID_ASLUAV_STATUS_LEN);
196 #endif
197 #else
199  packet->Motor_rpm = Motor_rpm;
200  packet->LED_status = LED_status;
201  packet->SATCOM_status = SATCOM_status;
202  mav_array_memcpy(packet->Servo_status, Servo_status, sizeof(uint8_t)*8);
203 #if MAVLINK_CRC_EXTRA
204  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ASLUAV_STATUS, (const char *)packet, MAVLINK_MSG_ID_ASLUAV_STATUS_LEN, MAVLINK_MSG_ID_ASLUAV_STATUS_CRC);
205 #else
206  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ASLUAV_STATUS, (const char *)packet, MAVLINK_MSG_ID_ASLUAV_STATUS_LEN);
207 #endif
208 #endif
209 }
210 #endif
211 
212 #endif
213 
214 // MESSAGE ASLUAV_STATUS UNPACKING
215 
216 
222 static inline uint8_t mavlink_msg_asluav_status_get_LED_status(const mavlink_message_t* msg)
223 {
224  return _MAV_RETURN_uint8_t(msg, 4);
225 }
226 
232 static inline uint8_t mavlink_msg_asluav_status_get_SATCOM_status(const mavlink_message_t* msg)
233 {
234  return _MAV_RETURN_uint8_t(msg, 5);
235 }
236 
242 static inline uint16_t mavlink_msg_asluav_status_get_Servo_status(const mavlink_message_t* msg, uint8_t *Servo_status)
243 {
244  return _MAV_RETURN_uint8_t_array(msg, Servo_status, 8, 6);
245 }
246 
252 static inline float mavlink_msg_asluav_status_get_Motor_rpm(const mavlink_message_t* msg)
253 {
254  return _MAV_RETURN_float(msg, 0);
255 }
256 
263 static inline void mavlink_msg_asluav_status_decode(const mavlink_message_t* msg, mavlink_asluav_status_t* asluav_status)
264 {
265 #if MAVLINK_NEED_BYTE_SWAP
266  asluav_status->Motor_rpm = mavlink_msg_asluav_status_get_Motor_rpm(msg);
267  asluav_status->LED_status = mavlink_msg_asluav_status_get_LED_status(msg);
268  asluav_status->SATCOM_status = mavlink_msg_asluav_status_get_SATCOM_status(msg);
269  mavlink_msg_asluav_status_get_Servo_status(msg, asluav_status->Servo_status);
270 #else
271  memcpy(asluav_status, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_ASLUAV_STATUS_LEN);
272 #endif
273 }
#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