mavlink_msg_pattern_detected.h 7.04 KB
Newer Older
James Goppert's avatar
James Goppert committed
1 2
// MESSAGE PATTERN_DETECTED PACKING

lm's avatar
lm committed
3
#define MAVLINK_MSG_ID_PATTERN_DETECTED 190
James Goppert's avatar
James Goppert committed
4

lm's avatar
lm committed
5
typedef struct __mavlink_pattern_detected_t
James Goppert's avatar
James Goppert committed
6
{
lm's avatar
lm committed
7
 uint8_t type; ///< 0: Pattern, 1: Letter
Lorenz Meier's avatar
Lorenz Meier committed
8
 float confidence; ///< Confidence of detection
lm's avatar
lm committed
9 10
 char file[100]; ///< Pattern file name
 uint8_t detected; ///< Accepted as true detection, 0 no, 1 yes
James Goppert's avatar
James Goppert committed
11
} mavlink_pattern_detected_t;
lm's avatar
lm committed
12 13 14 15

#define MAVLINK_MSG_ID_PATTERN_DETECTED_LEN 106
#define MAVLINK_MSG_ID_190_LEN 106

James Goppert's avatar
James Goppert committed
16 17
#define MAVLINK_MSG_PATTERN_DETECTED_FIELD_FILE_LEN 100

lm's avatar
lm committed
18 19 20
#define MAVLINK_MESSAGE_INFO_PATTERN_DETECTED { \
	"PATTERN_DETECTED", \
	4, \
Lorenz Meier's avatar
Lorenz Meier committed
21 22
	{  { "type", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_pattern_detected_t, type) }, \
         { "confidence", NULL, MAVLINK_TYPE_FLOAT, 0, 1, offsetof(mavlink_pattern_detected_t, confidence) }, \
lm's avatar
lm committed
23 24
         { "file", NULL, MAVLINK_TYPE_CHAR, 100, 5, offsetof(mavlink_pattern_detected_t, file) }, \
         { "detected", NULL, MAVLINK_TYPE_UINT8_T, 0, 105, offsetof(mavlink_pattern_detected_t, detected) }, \
lm's avatar
lm committed
25 26 27 28
         } \
}


James Goppert's avatar
James Goppert committed
29 30 31 32 33 34 35 36 37 38 39 40
/**
 * @brief Pack a pattern_detected message
 * @param system_id ID of this system
 * @param component_id ID of this component (e.g. 200 for IMU)
 * @param msg The MAVLink message to compress the data into
 *
 * @param type 0: Pattern, 1: Letter
 * @param confidence Confidence of detection
 * @param file Pattern file name
 * @param detected Accepted as true detection, 0 no, 1 yes
 * @return length of the message in bytes (excluding serial stream start sign)
 */
lm's avatar
lm committed
41 42
static inline uint16_t mavlink_msg_pattern_detected_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
						       uint8_t type, float confidence, const char *file, uint8_t detected)
James Goppert's avatar
James Goppert committed
43
{
LM's avatar
LM committed
44 45
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
	char buf[106];
Lorenz Meier's avatar
Lorenz Meier committed
46 47
	_mav_put_uint8_t(buf, 0, type);
	_mav_put_float(buf, 1, confidence);
LM's avatar
LM committed
48 49
	_mav_put_uint8_t(buf, 105, detected);
	_mav_put_char_array(buf, 5, file, 100);
50
        memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, 106);
LM's avatar
LM committed
51 52 53
#else
	mavlink_pattern_detected_t packet;
	packet.type = type;
Lorenz Meier's avatar
Lorenz Meier committed
54
	packet.confidence = confidence;
LM's avatar
LM committed
55
	packet.detected = detected;
56
	mav_array_memcpy(packet.file, file, sizeof(char)*100);
57
        memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, 106);
LM's avatar
LM committed
58
#endif
James Goppert's avatar
James Goppert committed
59

LM's avatar
LM committed
60
	msg->msgid = MAVLINK_MSG_ID_PATTERN_DETECTED;
Lorenz Meier's avatar
Lorenz Meier committed
61
	return mavlink_finalize_message(msg, system_id, component_id, 106);
James Goppert's avatar
James Goppert committed
62 63 64
}

/**
lm's avatar
lm committed
65
 * @brief Pack a pattern_detected message on a channel
James Goppert's avatar
James Goppert committed
66 67 68 69 70 71 72 73 74 75
 * @param system_id ID of this system
 * @param component_id ID of this component (e.g. 200 for IMU)
 * @param chan The MAVLink channel this message was sent over
 * @param msg The MAVLink message to compress the data into
 * @param type 0: Pattern, 1: Letter
 * @param confidence Confidence of detection
 * @param file Pattern file name
 * @param detected Accepted as true detection, 0 no, 1 yes
 * @return length of the message in bytes (excluding serial stream start sign)
 */
lm's avatar
lm committed
76 77 78 79
static inline uint16_t mavlink_msg_pattern_detected_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
							   mavlink_message_t* msg,
						           uint8_t type,float confidence,const char *file,uint8_t detected)
{
LM's avatar
LM committed
80 81
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
	char buf[106];
Lorenz Meier's avatar
Lorenz Meier committed
82 83
	_mav_put_uint8_t(buf, 0, type);
	_mav_put_float(buf, 1, confidence);
LM's avatar
LM committed
84 85
	_mav_put_uint8_t(buf, 105, detected);
	_mav_put_char_array(buf, 5, file, 100);
86
        memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, 106);
LM's avatar
LM committed
87 88 89
#else
	mavlink_pattern_detected_t packet;
	packet.type = type;
Lorenz Meier's avatar
Lorenz Meier committed
90
	packet.confidence = confidence;
LM's avatar
LM committed
91
	packet.detected = detected;
92
	mav_array_memcpy(packet.file, file, sizeof(char)*100);
93
        memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, 106);
LM's avatar
LM committed
94
#endif
lm's avatar
lm committed
95

LM's avatar
LM committed
96
	msg->msgid = MAVLINK_MSG_ID_PATTERN_DETECTED;
Lorenz Meier's avatar
Lorenz Meier committed
97
	return mavlink_finalize_message_chan(msg, system_id, component_id, chan, 106);
lm's avatar
lm committed
98 99
}

James Goppert's avatar
James Goppert committed
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
/**
 * @brief Encode a pattern_detected struct into a message
 *
 * @param system_id ID of this system
 * @param component_id ID of this component (e.g. 200 for IMU)
 * @param msg The MAVLink message to compress the data into
 * @param pattern_detected C-struct to read the message contents from
 */
static inline uint16_t mavlink_msg_pattern_detected_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_pattern_detected_t* pattern_detected)
{
	return mavlink_msg_pattern_detected_pack(system_id, component_id, msg, pattern_detected->type, pattern_detected->confidence, pattern_detected->file, pattern_detected->detected);
}

/**
 * @brief Send a pattern_detected message
 * @param chan MAVLink channel to send the message
 *
 * @param type 0: Pattern, 1: Letter
 * @param confidence Confidence of detection
 * @param file Pattern file name
 * @param detected Accepted as true detection, 0 no, 1 yes
 */
lm's avatar
lm committed
122 123 124
#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS

static inline void mavlink_msg_pattern_detected_send(mavlink_channel_t chan, uint8_t type, float confidence, const char *file, uint8_t detected)
lm's avatar
lm committed
125
{
LM's avatar
LM committed
126 127
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
	char buf[106];
Lorenz Meier's avatar
Lorenz Meier committed
128 129
	_mav_put_uint8_t(buf, 0, type);
	_mav_put_float(buf, 1, confidence);
LM's avatar
LM committed
130 131
	_mav_put_uint8_t(buf, 105, detected);
	_mav_put_char_array(buf, 5, file, 100);
Lorenz Meier's avatar
Lorenz Meier committed
132
	_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_PATTERN_DETECTED, buf, 106);
LM's avatar
LM committed
133 134 135
#else
	mavlink_pattern_detected_t packet;
	packet.type = type;
Lorenz Meier's avatar
Lorenz Meier committed
136
	packet.confidence = confidence;
LM's avatar
LM committed
137
	packet.detected = detected;
138
	mav_array_memcpy(packet.file, file, sizeof(char)*100);
Lorenz Meier's avatar
Lorenz Meier committed
139
	_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_PATTERN_DETECTED, (const char *)&packet, 106);
LM's avatar
LM committed
140
#endif
James Goppert's avatar
James Goppert committed
141 142 143
}

#endif
lm's avatar
lm committed
144

James Goppert's avatar
James Goppert committed
145 146
// MESSAGE PATTERN_DETECTED UNPACKING

lm's avatar
lm committed
147

James Goppert's avatar
James Goppert committed
148 149 150 151 152 153 154
/**
 * @brief Get field type from pattern_detected message
 *
 * @return 0: Pattern, 1: Letter
 */
static inline uint8_t mavlink_msg_pattern_detected_get_type(const mavlink_message_t* msg)
{
Lorenz Meier's avatar
Lorenz Meier committed
155
	return _MAV_RETURN_uint8_t(msg,  0);
James Goppert's avatar
James Goppert committed
156 157 158 159 160 161 162 163 164
}

/**
 * @brief Get field confidence from pattern_detected message
 *
 * @return Confidence of detection
 */
static inline float mavlink_msg_pattern_detected_get_confidence(const mavlink_message_t* msg)
{
Lorenz Meier's avatar
Lorenz Meier committed
165
	return _MAV_RETURN_float(msg,  1);
James Goppert's avatar
James Goppert committed
166 167 168 169 170 171 172
}

/**
 * @brief Get field file from pattern_detected message
 *
 * @return Pattern file name
 */
lm's avatar
lm committed
173
static inline uint16_t mavlink_msg_pattern_detected_get_file(const mavlink_message_t* msg, char *file)
James Goppert's avatar
James Goppert committed
174
{
LM's avatar
LM committed
175
	return _MAV_RETURN_char_array(msg, file, 100,  5);
James Goppert's avatar
James Goppert committed
176 177 178 179 180 181 182 183 184
}

/**
 * @brief Get field detected from pattern_detected message
 *
 * @return Accepted as true detection, 0 no, 1 yes
 */
static inline uint8_t mavlink_msg_pattern_detected_get_detected(const mavlink_message_t* msg)
{
LM's avatar
LM committed
185
	return _MAV_RETURN_uint8_t(msg,  105);
James Goppert's avatar
James Goppert committed
186 187 188 189 190 191 192 193 194 195
}

/**
 * @brief Decode a pattern_detected message into a struct
 *
 * @param msg The message to decode
 * @param pattern_detected C-struct to decode the message contents into
 */
static inline void mavlink_msg_pattern_detected_decode(const mavlink_message_t* msg, mavlink_pattern_detected_t* pattern_detected)
{
lm's avatar
lm committed
196 197
#if MAVLINK_NEED_BYTE_SWAP
	pattern_detected->type = mavlink_msg_pattern_detected_get_type(msg);
Lorenz Meier's avatar
Lorenz Meier committed
198
	pattern_detected->confidence = mavlink_msg_pattern_detected_get_confidence(msg);
lm's avatar
lm committed
199 200 201
	mavlink_msg_pattern_detected_get_file(msg, pattern_detected->file);
	pattern_detected->detected = mavlink_msg_pattern_detected_get_detected(msg);
#else
LM's avatar
LM committed
202
	memcpy(pattern_detected, _MAV_PAYLOAD(msg), 106);
lm's avatar
lm committed
203
#endif
James Goppert's avatar
James Goppert committed
204
}