NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_gimbal_factory_parameters_loaded.h
Go to the documentation of this file.
1 // MESSAGE GIMBAL_FACTORY_PARAMETERS_LOADED PACKING
2 
3 #define MAVLINK_MSG_ID_GIMBAL_FACTORY_PARAMETERS_LOADED 207
4 
6 {
7  uint8_t dummy;
9 
10 #define MAVLINK_MSG_ID_GIMBAL_FACTORY_PARAMETERS_LOADED_LEN 1
11 #define MAVLINK_MSG_ID_207_LEN 1
12 
13 #define MAVLINK_MSG_ID_GIMBAL_FACTORY_PARAMETERS_LOADED_CRC 201
14 #define MAVLINK_MSG_ID_207_CRC 201
15 
16 
17 
18 #define MAVLINK_MESSAGE_INFO_GIMBAL_FACTORY_PARAMETERS_LOADED { \
19  "GIMBAL_FACTORY_PARAMETERS_LOADED", \
20  1, \
21  { { "dummy", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_gimbal_factory_parameters_loaded_t, dummy) }, \
22  } \
23 }
24 
25 
35 static inline uint16_t mavlink_msg_gimbal_factory_parameters_loaded_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
36  uint8_t dummy)
37 {
38 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
40  _mav_put_uint8_t(buf, 0, dummy);
41 
43 #else
45  packet.dummy = dummy;
46 
48 #endif
49 
51 #if MAVLINK_CRC_EXTRA
53 #else
55 #endif
56 }
57 
67 static inline uint16_t mavlink_msg_gimbal_factory_parameters_loaded_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
68  mavlink_message_t* msg,
69  uint8_t dummy)
70 {
71 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
73  _mav_put_uint8_t(buf, 0, dummy);
74 
76 #else
78  packet.dummy = dummy;
79 
81 #endif
82 
84 #if MAVLINK_CRC_EXTRA
86 #else
88 #endif
89 }
90 
99 static inline uint16_t mavlink_msg_gimbal_factory_parameters_loaded_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_gimbal_factory_parameters_loaded_t* gimbal_factory_parameters_loaded)
100 {
101  return mavlink_msg_gimbal_factory_parameters_loaded_pack(system_id, component_id, msg, gimbal_factory_parameters_loaded->dummy);
102 }
103 
113 static inline uint16_t mavlink_msg_gimbal_factory_parameters_loaded_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_gimbal_factory_parameters_loaded_t* gimbal_factory_parameters_loaded)
114 {
115  return mavlink_msg_gimbal_factory_parameters_loaded_pack_chan(system_id, component_id, chan, msg, gimbal_factory_parameters_loaded->dummy);
116 }
117 
124 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
125 
126 static inline void mavlink_msg_gimbal_factory_parameters_loaded_send(mavlink_channel_t chan, uint8_t dummy)
127 {
128 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
130  _mav_put_uint8_t(buf, 0, dummy);
131 
132 #if MAVLINK_CRC_EXTRA
134 #else
136 #endif
137 #else
139  packet.dummy = dummy;
140 
141 #if MAVLINK_CRC_EXTRA
143 #else
144  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GIMBAL_FACTORY_PARAMETERS_LOADED, (const char *)&packet, MAVLINK_MSG_ID_GIMBAL_FACTORY_PARAMETERS_LOADED_LEN);
145 #endif
146 #endif
147 }
148 
149 #if MAVLINK_MSG_ID_GIMBAL_FACTORY_PARAMETERS_LOADED_LEN <= MAVLINK_MAX_PAYLOAD_LEN
150 /*
151  This varient of _send() can be used to save stack space by re-using
152  memory from the receive buffer. The caller provides a
153  mavlink_message_t which is the size of a full mavlink message. This
154  is usually the receive buffer for the channel, and allows a reply to an
155  incoming message with minimum stack space usage.
156  */
157 static inline void mavlink_msg_gimbal_factory_parameters_loaded_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t dummy)
158 {
159 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
160  char *buf = (char *)msgbuf;
161  _mav_put_uint8_t(buf, 0, dummy);
162 
163 #if MAVLINK_CRC_EXTRA
165 #else
167 #endif
168 #else
170  packet->dummy = dummy;
171 
172 #if MAVLINK_CRC_EXTRA
174 #else
175  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GIMBAL_FACTORY_PARAMETERS_LOADED, (const char *)packet, MAVLINK_MSG_ID_GIMBAL_FACTORY_PARAMETERS_LOADED_LEN);
176 #endif
177 #endif
178 }
179 #endif
180 
181 #endif
182 
183 // MESSAGE GIMBAL_FACTORY_PARAMETERS_LOADED UNPACKING
184 
185 
191 static inline uint8_t mavlink_msg_gimbal_factory_parameters_loaded_get_dummy(const mavlink_message_t* msg)
192 {
193  return _MAV_RETURN_uint8_t(msg, 0);
194 }
195 
202 static inline void mavlink_msg_gimbal_factory_parameters_loaded_decode(const mavlink_message_t* msg, mavlink_gimbal_factory_parameters_loaded_t* gimbal_factory_parameters_loaded)
203 {
204 #if MAVLINK_NEED_BYTE_SWAP
205  gimbal_factory_parameters_loaded->dummy = mavlink_msg_gimbal_factory_parameters_loaded_get_dummy(msg);
206 #else
207  memcpy(gimbal_factory_parameters_loaded, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_GIMBAL_FACTORY_PARAMETERS_LOADED_LEN);
208 #endif
209 }
#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