mavlink_msg_terrain_check.h
Go to the documentation of this file.
1 // MESSAGE TERRAIN_CHECK PACKING
2 
3 #define MAVLINK_MSG_ID_TERRAIN_CHECK 135
4 
6 {
7  int32_t lat; /*< Latitude (degrees *10^7)*/
8  int32_t lon; /*< Longitude (degrees *10^7)*/
10 
11 #define MAVLINK_MSG_ID_TERRAIN_CHECK_LEN 8
12 #define MAVLINK_MSG_ID_135_LEN 8
13 
14 #define MAVLINK_MSG_ID_TERRAIN_CHECK_CRC 203
15 #define MAVLINK_MSG_ID_135_CRC 203
16 
17 
18 
19 #define MAVLINK_MESSAGE_INFO_TERRAIN_CHECK { \
20  "TERRAIN_CHECK", \
21  2, \
22  { { "lat", NULL, MAVLINK_TYPE_INT32_T, 0, 0, offsetof(mavlink_terrain_check_t, lat) }, \
23  { "lon", NULL, MAVLINK_TYPE_INT32_T, 0, 4, offsetof(mavlink_terrain_check_t, lon) }, \
24  } \
25 }
26 
27 
38 static inline uint16_t mavlink_msg_terrain_check_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
39  int32_t lat, int32_t lon)
40 {
41 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
43  _mav_put_int32_t(buf, 0, lat);
44  _mav_put_int32_t(buf, 4, lon);
45 
47 #else
49  packet.lat = lat;
50  packet.lon = lon;
51 
53 #endif
54 
55  msg->msgid = MAVLINK_MSG_ID_TERRAIN_CHECK;
56 #if MAVLINK_CRC_EXTRA
58 #else
59  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_TERRAIN_CHECK_LEN);
60 #endif
61 }
62 
73 static inline uint16_t mavlink_msg_terrain_check_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
74  mavlink_message_t* msg,
75  int32_t lat,int32_t lon)
76 {
77 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
79  _mav_put_int32_t(buf, 0, lat);
80  _mav_put_int32_t(buf, 4, lon);
81 
83 #else
85  packet.lat = lat;
86  packet.lon = lon;
87 
89 #endif
90 
91  msg->msgid = MAVLINK_MSG_ID_TERRAIN_CHECK;
92 #if MAVLINK_CRC_EXTRA
94 #else
95  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_TERRAIN_CHECK_LEN);
96 #endif
97 }
98 
107 static inline uint16_t mavlink_msg_terrain_check_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_terrain_check_t* terrain_check)
108 {
109  return mavlink_msg_terrain_check_pack(system_id, component_id, msg, terrain_check->lat, terrain_check->lon);
110 }
111 
121 static inline uint16_t mavlink_msg_terrain_check_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_terrain_check_t* terrain_check)
122 {
123  return mavlink_msg_terrain_check_pack_chan(system_id, component_id, chan, msg, terrain_check->lat, terrain_check->lon);
124 }
125 
133 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
134 
135 static inline void mavlink_msg_terrain_check_send(mavlink_channel_t chan, int32_t lat, int32_t lon)
136 {
137 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
139  _mav_put_int32_t(buf, 0, lat);
140  _mav_put_int32_t(buf, 4, lon);
141 
142 #if MAVLINK_CRC_EXTRA
144 #else
145  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_TERRAIN_CHECK, buf, MAVLINK_MSG_ID_TERRAIN_CHECK_LEN);
146 #endif
147 #else
149  packet.lat = lat;
150  packet.lon = lon;
151 
152 #if MAVLINK_CRC_EXTRA
153  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_TERRAIN_CHECK, (const char *)&packet, MAVLINK_MSG_ID_TERRAIN_CHECK_LEN, MAVLINK_MSG_ID_TERRAIN_CHECK_CRC);
154 #else
155  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_TERRAIN_CHECK, (const char *)&packet, MAVLINK_MSG_ID_TERRAIN_CHECK_LEN);
156 #endif
157 #endif
158 }
159 
160 #if MAVLINK_MSG_ID_TERRAIN_CHECK_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_terrain_check_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, int32_t lat, int32_t lon)
169 {
170 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
171  char *buf = (char *)msgbuf;
172  _mav_put_int32_t(buf, 0, lat);
173  _mav_put_int32_t(buf, 4, lon);
174 
175 #if MAVLINK_CRC_EXTRA
177 #else
178  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_TERRAIN_CHECK, buf, MAVLINK_MSG_ID_TERRAIN_CHECK_LEN);
179 #endif
180 #else
182  packet->lat = lat;
183  packet->lon = lon;
184 
185 #if MAVLINK_CRC_EXTRA
186  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_TERRAIN_CHECK, (const char *)packet, MAVLINK_MSG_ID_TERRAIN_CHECK_LEN, MAVLINK_MSG_ID_TERRAIN_CHECK_CRC);
187 #else
188  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_TERRAIN_CHECK, (const char *)packet, MAVLINK_MSG_ID_TERRAIN_CHECK_LEN);
189 #endif
190 #endif
191 }
192 #endif
193 
194 #endif
195 
196 // MESSAGE TERRAIN_CHECK UNPACKING
197 
198 
204 static inline int32_t mavlink_msg_terrain_check_get_lat(const mavlink_message_t* msg)
205 {
206  return _MAV_RETURN_int32_t(msg, 0);
207 }
208 
214 static inline int32_t mavlink_msg_terrain_check_get_lon(const mavlink_message_t* msg)
215 {
216  return _MAV_RETURN_int32_t(msg, 4);
217 }
218 
225 static inline void mavlink_msg_terrain_check_decode(const mavlink_message_t* msg, mavlink_terrain_check_t* terrain_check)
226 {
227 #if MAVLINK_NEED_BYTE_SWAP
228  terrain_check->lat = mavlink_msg_terrain_check_get_lat(msg);
229  terrain_check->lon = mavlink_msg_terrain_check_get_lon(msg);
230 #else
231  memcpy(terrain_check, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_TERRAIN_CHECK_LEN);
232 #endif
233 }
#define _mav_put_int32_t(buf, wire_offset, b)
Definition: protocol.h:148


rosflight_firmware
Author(s): Daniel Koch , James Jackson
autogenerated on Thu Apr 15 2021 05:07:47