NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_radio.h
Go to the documentation of this file.
1 // MESSAGE RADIO PACKING
2 
3 #define MAVLINK_MSG_ID_RADIO 166
4 
5 typedef struct __mavlink_radio_t
6 {
7  uint16_t rxerrors;
8  uint16_t fixed;
9  uint8_t rssi;
10  uint8_t remrssi;
11  uint8_t txbuf;
12  uint8_t noise;
13  uint8_t remnoise;
15 
16 #define MAVLINK_MSG_ID_RADIO_LEN 9
17 #define MAVLINK_MSG_ID_166_LEN 9
18 
19 #define MAVLINK_MSG_ID_RADIO_CRC 21
20 #define MAVLINK_MSG_ID_166_CRC 21
21 
22 
23 
24 #define MAVLINK_MESSAGE_INFO_RADIO { \
25  "RADIO", \
26  7, \
27  { { "rxerrors", NULL, MAVLINK_TYPE_UINT16_T, 0, 0, offsetof(mavlink_radio_t, rxerrors) }, \
28  { "fixed", NULL, MAVLINK_TYPE_UINT16_T, 0, 2, offsetof(mavlink_radio_t, fixed) }, \
29  { "rssi", NULL, MAVLINK_TYPE_UINT8_T, 0, 4, offsetof(mavlink_radio_t, rssi) }, \
30  { "remrssi", NULL, MAVLINK_TYPE_UINT8_T, 0, 5, offsetof(mavlink_radio_t, remrssi) }, \
31  { "txbuf", NULL, MAVLINK_TYPE_UINT8_T, 0, 6, offsetof(mavlink_radio_t, txbuf) }, \
32  { "noise", NULL, MAVLINK_TYPE_UINT8_T, 0, 7, offsetof(mavlink_radio_t, noise) }, \
33  { "remnoise", NULL, MAVLINK_TYPE_UINT8_T, 0, 8, offsetof(mavlink_radio_t, remnoise) }, \
34  } \
35 }
36 
37 
53 static inline uint16_t mavlink_msg_radio_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
54  uint8_t rssi, uint8_t remrssi, uint8_t txbuf, uint8_t noise, uint8_t remnoise, uint16_t rxerrors, uint16_t fixed)
55 {
56 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
57  char buf[MAVLINK_MSG_ID_RADIO_LEN];
58  _mav_put_uint16_t(buf, 0, rxerrors);
59  _mav_put_uint16_t(buf, 2, fixed);
60  _mav_put_uint8_t(buf, 4, rssi);
61  _mav_put_uint8_t(buf, 5, remrssi);
62  _mav_put_uint8_t(buf, 6, txbuf);
63  _mav_put_uint8_t(buf, 7, noise);
64  _mav_put_uint8_t(buf, 8, remnoise);
65 
67 #else
68  mavlink_radio_t packet;
69  packet.rxerrors = rxerrors;
70  packet.fixed = fixed;
71  packet.rssi = rssi;
72  packet.remrssi = remrssi;
73  packet.txbuf = txbuf;
74  packet.noise = noise;
75  packet.remnoise = remnoise;
76 
77  memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_RADIO_LEN);
78 #endif
79 
80  msg->msgid = MAVLINK_MSG_ID_RADIO;
81 #if MAVLINK_CRC_EXTRA
82  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_RADIO_LEN, MAVLINK_MSG_ID_RADIO_CRC);
83 #else
84  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_RADIO_LEN);
85 #endif
86 }
87 
103 static inline uint16_t mavlink_msg_radio_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
104  mavlink_message_t* msg,
105  uint8_t rssi,uint8_t remrssi,uint8_t txbuf,uint8_t noise,uint8_t remnoise,uint16_t rxerrors,uint16_t fixed)
106 {
107 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
108  char buf[MAVLINK_MSG_ID_RADIO_LEN];
109  _mav_put_uint16_t(buf, 0, rxerrors);
110  _mav_put_uint16_t(buf, 2, fixed);
111  _mav_put_uint8_t(buf, 4, rssi);
112  _mav_put_uint8_t(buf, 5, remrssi);
113  _mav_put_uint8_t(buf, 6, txbuf);
114  _mav_put_uint8_t(buf, 7, noise);
115  _mav_put_uint8_t(buf, 8, remnoise);
116 
118 #else
119  mavlink_radio_t packet;
120  packet.rxerrors = rxerrors;
121  packet.fixed = fixed;
122  packet.rssi = rssi;
123  packet.remrssi = remrssi;
124  packet.txbuf = txbuf;
125  packet.noise = noise;
126  packet.remnoise = remnoise;
127 
128  memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_RADIO_LEN);
129 #endif
130 
131  msg->msgid = MAVLINK_MSG_ID_RADIO;
132 #if MAVLINK_CRC_EXTRA
133  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_RADIO_LEN, MAVLINK_MSG_ID_RADIO_CRC);
134 #else
135  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_RADIO_LEN);
136 #endif
137 }
138 
147 static inline uint16_t mavlink_msg_radio_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_radio_t* radio)
148 {
149  return mavlink_msg_radio_pack(system_id, component_id, msg, radio->rssi, radio->remrssi, radio->txbuf, radio->noise, radio->remnoise, radio->rxerrors, radio->fixed);
150 }
151 
161 static inline uint16_t mavlink_msg_radio_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_radio_t* radio)
162 {
163  return mavlink_msg_radio_pack_chan(system_id, component_id, chan, msg, radio->rssi, radio->remrssi, radio->txbuf, radio->noise, radio->remnoise, radio->rxerrors, radio->fixed);
164 }
165 
178 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
179 
180 static inline void mavlink_msg_radio_send(mavlink_channel_t chan, uint8_t rssi, uint8_t remrssi, uint8_t txbuf, uint8_t noise, uint8_t remnoise, uint16_t rxerrors, uint16_t fixed)
181 {
182 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
183  char buf[MAVLINK_MSG_ID_RADIO_LEN];
184  _mav_put_uint16_t(buf, 0, rxerrors);
185  _mav_put_uint16_t(buf, 2, fixed);
186  _mav_put_uint8_t(buf, 4, rssi);
187  _mav_put_uint8_t(buf, 5, remrssi);
188  _mav_put_uint8_t(buf, 6, txbuf);
189  _mav_put_uint8_t(buf, 7, noise);
190  _mav_put_uint8_t(buf, 8, remnoise);
191 
192 #if MAVLINK_CRC_EXTRA
193  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RADIO, buf, MAVLINK_MSG_ID_RADIO_LEN, MAVLINK_MSG_ID_RADIO_CRC);
194 #else
195  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RADIO, buf, MAVLINK_MSG_ID_RADIO_LEN);
196 #endif
197 #else
198  mavlink_radio_t packet;
199  packet.rxerrors = rxerrors;
200  packet.fixed = fixed;
201  packet.rssi = rssi;
202  packet.remrssi = remrssi;
203  packet.txbuf = txbuf;
204  packet.noise = noise;
205  packet.remnoise = remnoise;
206 
207 #if MAVLINK_CRC_EXTRA
208  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RADIO, (const char *)&packet, MAVLINK_MSG_ID_RADIO_LEN, MAVLINK_MSG_ID_RADIO_CRC);
209 #else
210  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RADIO, (const char *)&packet, MAVLINK_MSG_ID_RADIO_LEN);
211 #endif
212 #endif
213 }
214 
215 #if MAVLINK_MSG_ID_RADIO_LEN <= MAVLINK_MAX_PAYLOAD_LEN
216 /*
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.
222  */
223 static inline void mavlink_msg_radio_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t rssi, uint8_t remrssi, uint8_t txbuf, uint8_t noise, uint8_t remnoise, uint16_t rxerrors, uint16_t fixed)
224 {
225 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
226  char *buf = (char *)msgbuf;
227  _mav_put_uint16_t(buf, 0, rxerrors);
228  _mav_put_uint16_t(buf, 2, fixed);
229  _mav_put_uint8_t(buf, 4, rssi);
230  _mav_put_uint8_t(buf, 5, remrssi);
231  _mav_put_uint8_t(buf, 6, txbuf);
232  _mav_put_uint8_t(buf, 7, noise);
233  _mav_put_uint8_t(buf, 8, remnoise);
234 
235 #if MAVLINK_CRC_EXTRA
236  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RADIO, buf, MAVLINK_MSG_ID_RADIO_LEN, MAVLINK_MSG_ID_RADIO_CRC);
237 #else
238  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RADIO, buf, MAVLINK_MSG_ID_RADIO_LEN);
239 #endif
240 #else
241  mavlink_radio_t *packet = (mavlink_radio_t *)msgbuf;
242  packet->rxerrors = rxerrors;
243  packet->fixed = fixed;
244  packet->rssi = rssi;
245  packet->remrssi = remrssi;
246  packet->txbuf = txbuf;
247  packet->noise = noise;
248  packet->remnoise = remnoise;
249 
250 #if MAVLINK_CRC_EXTRA
251  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RADIO, (const char *)packet, MAVLINK_MSG_ID_RADIO_LEN, MAVLINK_MSG_ID_RADIO_CRC);
252 #else
253  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RADIO, (const char *)packet, MAVLINK_MSG_ID_RADIO_LEN);
254 #endif
255 #endif
256 }
257 #endif
258 
259 #endif
260 
261 // MESSAGE RADIO UNPACKING
262 
263 
269 static inline uint8_t mavlink_msg_radio_get_rssi(const mavlink_message_t* msg)
270 {
271  return _MAV_RETURN_uint8_t(msg, 4);
272 }
273 
279 static inline uint8_t mavlink_msg_radio_get_remrssi(const mavlink_message_t* msg)
280 {
281  return _MAV_RETURN_uint8_t(msg, 5);
282 }
283 
289 static inline uint8_t mavlink_msg_radio_get_txbuf(const mavlink_message_t* msg)
290 {
291  return _MAV_RETURN_uint8_t(msg, 6);
292 }
293 
299 static inline uint8_t mavlink_msg_radio_get_noise(const mavlink_message_t* msg)
300 {
301  return _MAV_RETURN_uint8_t(msg, 7);
302 }
303 
309 static inline uint8_t mavlink_msg_radio_get_remnoise(const mavlink_message_t* msg)
310 {
311  return _MAV_RETURN_uint8_t(msg, 8);
312 }
313 
319 static inline uint16_t mavlink_msg_radio_get_rxerrors(const mavlink_message_t* msg)
320 {
321  return _MAV_RETURN_uint16_t(msg, 0);
322 }
323 
329 static inline uint16_t mavlink_msg_radio_get_fixed(const mavlink_message_t* msg)
330 {
331  return _MAV_RETURN_uint16_t(msg, 2);
332 }
333 
340 static inline void mavlink_msg_radio_decode(const mavlink_message_t* msg, mavlink_radio_t* radio)
341 {
342 #if MAVLINK_NEED_BYTE_SWAP
343  radio->rxerrors = mavlink_msg_radio_get_rxerrors(msg);
344  radio->fixed = mavlink_msg_radio_get_fixed(msg);
345  radio->rssi = mavlink_msg_radio_get_rssi(msg);
346  radio->remrssi = mavlink_msg_radio_get_remrssi(msg);
347  radio->txbuf = mavlink_msg_radio_get_txbuf(msg);
348  radio->noise = mavlink_msg_radio_get_noise(msg);
349  radio->remnoise = mavlink_msg_radio_get_remnoise(msg);
350 #else
351  memcpy(radio, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_RADIO_LEN);
352 #endif
353 }
#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
#define _mav_put_uint16_t(buf, wire_offset, b)
Definition: protocol.h:139