NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_hwstatus.h
Go to the documentation of this file.
1 // MESSAGE HWSTATUS PACKING
2 
3 #define MAVLINK_MSG_ID_HWSTATUS 165
4 
5 typedef struct __mavlink_hwstatus_t
6 {
7  uint16_t Vcc;
8  uint8_t I2Cerr;
10 
11 #define MAVLINK_MSG_ID_HWSTATUS_LEN 3
12 #define MAVLINK_MSG_ID_165_LEN 3
13 
14 #define MAVLINK_MSG_ID_HWSTATUS_CRC 21
15 #define MAVLINK_MSG_ID_165_CRC 21
16 
17 
18 
19 #define MAVLINK_MESSAGE_INFO_HWSTATUS { \
20  "HWSTATUS", \
21  2, \
22  { { "Vcc", NULL, MAVLINK_TYPE_UINT16_T, 0, 0, offsetof(mavlink_hwstatus_t, Vcc) }, \
23  { "I2Cerr", NULL, MAVLINK_TYPE_UINT8_T, 0, 2, offsetof(mavlink_hwstatus_t, I2Cerr) }, \
24  } \
25 }
26 
27 
38 static inline uint16_t mavlink_msg_hwstatus_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
39  uint16_t Vcc, uint8_t I2Cerr)
40 {
41 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
43  _mav_put_uint16_t(buf, 0, Vcc);
44  _mav_put_uint8_t(buf, 2, I2Cerr);
45 
47 #else
48  mavlink_hwstatus_t packet;
49  packet.Vcc = Vcc;
50  packet.I2Cerr = I2Cerr;
51 
53 #endif
54 
55  msg->msgid = MAVLINK_MSG_ID_HWSTATUS;
56 #if MAVLINK_CRC_EXTRA
58 #else
59  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_HWSTATUS_LEN);
60 #endif
61 }
62 
73 static inline uint16_t mavlink_msg_hwstatus_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
74  mavlink_message_t* msg,
75  uint16_t Vcc,uint8_t I2Cerr)
76 {
77 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
79  _mav_put_uint16_t(buf, 0, Vcc);
80  _mav_put_uint8_t(buf, 2, I2Cerr);
81 
83 #else
84  mavlink_hwstatus_t packet;
85  packet.Vcc = Vcc;
86  packet.I2Cerr = I2Cerr;
87 
89 #endif
90 
91  msg->msgid = MAVLINK_MSG_ID_HWSTATUS;
92 #if MAVLINK_CRC_EXTRA
94 #else
95  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_HWSTATUS_LEN);
96 #endif
97 }
98 
107 static inline uint16_t mavlink_msg_hwstatus_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_hwstatus_t* hwstatus)
108 {
109  return mavlink_msg_hwstatus_pack(system_id, component_id, msg, hwstatus->Vcc, hwstatus->I2Cerr);
110 }
111 
121 static inline uint16_t mavlink_msg_hwstatus_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_hwstatus_t* hwstatus)
122 {
123  return mavlink_msg_hwstatus_pack_chan(system_id, component_id, chan, msg, hwstatus->Vcc, hwstatus->I2Cerr);
124 }
125 
133 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
134 
135 static inline void mavlink_msg_hwstatus_send(mavlink_channel_t chan, uint16_t Vcc, uint8_t I2Cerr)
136 {
137 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
138  char buf[MAVLINK_MSG_ID_HWSTATUS_LEN];
139  _mav_put_uint16_t(buf, 0, Vcc);
140  _mav_put_uint8_t(buf, 2, I2Cerr);
141 
142 #if MAVLINK_CRC_EXTRA
143  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_HWSTATUS, buf, MAVLINK_MSG_ID_HWSTATUS_LEN, MAVLINK_MSG_ID_HWSTATUS_CRC);
144 #else
145  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_HWSTATUS, buf, MAVLINK_MSG_ID_HWSTATUS_LEN);
146 #endif
147 #else
148  mavlink_hwstatus_t packet;
149  packet.Vcc = Vcc;
150  packet.I2Cerr = I2Cerr;
151 
152 #if MAVLINK_CRC_EXTRA
153  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_HWSTATUS, (const char *)&packet, MAVLINK_MSG_ID_HWSTATUS_LEN, MAVLINK_MSG_ID_HWSTATUS_CRC);
154 #else
155  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_HWSTATUS, (const char *)&packet, MAVLINK_MSG_ID_HWSTATUS_LEN);
156 #endif
157 #endif
158 }
159 
160 #if MAVLINK_MSG_ID_HWSTATUS_LEN <= MAVLINK_MAX_PAYLOAD_LEN
161 /*
162  This varient of _send() can be used to save stack space by re-using
163  memory from the receive buffer. The caller provides a
164  mavlink_message_t which is the size of a full mavlink message. This
165  is usually the receive buffer for the channel, and allows a reply to an
166  incoming message with minimum stack space usage.
167  */
168 static inline void mavlink_msg_hwstatus_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint16_t Vcc, uint8_t I2Cerr)
169 {
170 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
171  char *buf = (char *)msgbuf;
172  _mav_put_uint16_t(buf, 0, Vcc);
173  _mav_put_uint8_t(buf, 2, I2Cerr);
174 
175 #if MAVLINK_CRC_EXTRA
176  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_HWSTATUS, buf, MAVLINK_MSG_ID_HWSTATUS_LEN, MAVLINK_MSG_ID_HWSTATUS_CRC);
177 #else
178  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_HWSTATUS, buf, MAVLINK_MSG_ID_HWSTATUS_LEN);
179 #endif
180 #else
181  mavlink_hwstatus_t *packet = (mavlink_hwstatus_t *)msgbuf;
182  packet->Vcc = Vcc;
183  packet->I2Cerr = I2Cerr;
184 
185 #if MAVLINK_CRC_EXTRA
186  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_HWSTATUS, (const char *)packet, MAVLINK_MSG_ID_HWSTATUS_LEN, MAVLINK_MSG_ID_HWSTATUS_CRC);
187 #else
188  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_HWSTATUS, (const char *)packet, MAVLINK_MSG_ID_HWSTATUS_LEN);
189 #endif
190 #endif
191 }
192 #endif
193 
194 #endif
195 
196 // MESSAGE HWSTATUS UNPACKING
197 
198 
204 static inline uint16_t mavlink_msg_hwstatus_get_Vcc(const mavlink_message_t* msg)
205 {
206  return _MAV_RETURN_uint16_t(msg, 0);
207 }
208 
214 static inline uint8_t mavlink_msg_hwstatus_get_I2Cerr(const mavlink_message_t* msg)
215 {
216  return _MAV_RETURN_uint8_t(msg, 2);
217 }
218 
225 static inline void mavlink_msg_hwstatus_decode(const mavlink_message_t* msg, mavlink_hwstatus_t* hwstatus)
226 {
227 #if MAVLINK_NEED_BYTE_SWAP
228  hwstatus->Vcc = mavlink_msg_hwstatus_get_Vcc(msg);
229  hwstatus->I2Cerr = mavlink_msg_hwstatus_get_I2Cerr(msg);
230 #else
231  memcpy(hwstatus, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_HWSTATUS_LEN);
232 #endif
233 }
#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