3 #define MAVLINK_MSG_ID_FENCE_STATUS 162
13 #define MAVLINK_MSG_ID_FENCE_STATUS_LEN 8
14 #define MAVLINK_MSG_ID_162_LEN 8
16 #define MAVLINK_MSG_ID_FENCE_STATUS_CRC 189
17 #define MAVLINK_MSG_ID_162_CRC 189
21 #define MAVLINK_MESSAGE_INFO_FENCE_STATUS { \
24 { { "breach_time", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_fence_status_t, breach_time) }, \
25 { "breach_count", NULL, MAVLINK_TYPE_UINT16_T, 0, 4, offsetof(mavlink_fence_status_t, breach_count) }, \
26 { "breach_status", NULL, MAVLINK_TYPE_UINT8_T, 0, 6, offsetof(mavlink_fence_status_t, breach_status) }, \
27 { "breach_type", NULL, MAVLINK_TYPE_UINT8_T, 0, 7, offsetof(mavlink_fence_status_t, breach_type) }, \
44 static inline uint16_t mavlink_msg_fence_status_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
45 uint8_t breach_status, uint16_t breach_count, uint8_t breach_type, uint32_t breach_time)
47 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
85 static inline uint16_t mavlink_msg_fence_status_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
86 mavlink_message_t* msg,
87 uint8_t breach_status,uint16_t breach_count,uint8_t breach_type,uint32_t breach_time)
89 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
108 #if MAVLINK_CRC_EXTRA
123 static inline uint16_t mavlink_msg_fence_status_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
const mavlink_fence_status_t* fence_status)
137 static inline uint16_t mavlink_msg_fence_status_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg,
const mavlink_fence_status_t* fence_status)
151 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
153 static inline void mavlink_msg_fence_status_send(
mavlink_channel_t chan, uint8_t breach_status, uint16_t breach_count, uint8_t breach_type, uint32_t breach_time)
155 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
162 #if MAVLINK_CRC_EXTRA
174 #if MAVLINK_CRC_EXTRA
182 #if MAVLINK_MSG_ID_FENCE_STATUS_LEN <= MAVLINK_MAX_PAYLOAD_LEN
190 static inline void mavlink_msg_fence_status_send_buf(mavlink_message_t *msgbuf,
mavlink_channel_t chan, uint8_t breach_status, uint16_t breach_count, uint8_t breach_type, uint32_t breach_time)
192 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
193 char *buf = (
char *)msgbuf;
199 #if MAVLINK_CRC_EXTRA
211 #if MAVLINK_CRC_EXTRA
230 static inline uint8_t mavlink_msg_fence_status_get_breach_status(
const mavlink_message_t* msg)
240 static inline uint16_t mavlink_msg_fence_status_get_breach_count(
const mavlink_message_t* msg)
242 return _MAV_RETURN_uint16_t(msg, 4);
250 static inline uint8_t mavlink_msg_fence_status_get_breach_type(
const mavlink_message_t* msg)
260 static inline uint32_t mavlink_msg_fence_status_get_breach_time(
const mavlink_message_t* msg)
262 return _MAV_RETURN_uint32_t(msg, 0);
271 static inline void mavlink_msg_fence_status_decode(
const mavlink_message_t* msg,
mavlink_fence_status_t* fence_status)
273 #if MAVLINK_NEED_BYTE_SWAP
274 fence_status->
breach_time = mavlink_msg_fence_status_get_breach_time(msg);
275 fence_status->
breach_count = mavlink_msg_fence_status_get_breach_count(msg);
276 fence_status->
breach_status = mavlink_msg_fence_status_get_breach_status(msg);
277 fence_status->
breach_type = mavlink_msg_fence_status_get_breach_type(msg);
Definition: mavlink_msg_fence_status.h:5
#define _MAV_RETURN_uint8_t(msg, wire_offset)
Definition: protocol.h:238
MAVLINK_HELPER uint16_t mavlink_finalize_message(mavlink_message_t *msg, uint8_t system_id, uint8_t component_id, uint8_t length)
Finalize a MAVLink message with MAVLINK_COMM_0 as default channel.
Definition: mavlink_helpers.h:105
#define _mav_put_uint8_t(buf, wire_offset, b)
Definition: protocol.h:134
#define _MAV_PAYLOAD_NON_CONST(msg)
Definition: mavlink_types.h:172
#define MAVLINK_MSG_ID_FENCE_STATUS_CRC
Definition: mavlink_msg_fence_status.h:16
mavlink_channel_t
Definition: mavlink_types.h:178
#define _MAV_PAYLOAD(msg)
Definition: mavlink_types.h:171
uint8_t breach_type
last breach type (see FENCE_BREACH_* enum)
Definition: mavlink_msg_fence_status.h:10
struct __mavlink_fence_status_t mavlink_fence_status_t
uint8_t breach_status
0 if currently inside fence, 1 if outside
Definition: mavlink_msg_fence_status.h:9
uint32_t breach_time
time of last breach in milliseconds since boot
Definition: mavlink_msg_fence_status.h:7
#define MAVLINK_MSG_ID_FENCE_STATUS
Definition: mavlink_msg_fence_status.h:3
uint16_t breach_count
number of fence breaches
Definition: mavlink_msg_fence_status.h:8
#define _mav_put_uint16_t(buf, wire_offset, b)
Definition: protocol.h:139
#define MAVLINK_MSG_ID_FENCE_STATUS_LEN
Definition: mavlink_msg_fence_status.h:13
MAVLINK_HELPER uint16_t mavlink_finalize_message_chan(mavlink_message_t *msg, uint8_t system_id, uint8_t component_id, uint8_t chan, uint8_t length)
Finalize a MAVLink message with channel assignment.
Definition: mavlink_helpers.h:71
#define _mav_put_uint32_t(buf, wire_offset, b)
Definition: protocol.h:141