mavlink_msg_set_position_control_offset.h 8.94 KB
Newer Older
1
// MESSAGE SET_POSITION_CONTROL_OFFSET PACKING
James Goppert's avatar
James Goppert committed
2

3
#define MAVLINK_MSG_ID_SET_POSITION_CONTROL_OFFSET 160
James Goppert's avatar
James Goppert committed
4

5
typedef struct __mavlink_set_position_control_offset_t
James Goppert's avatar
James Goppert committed
6
{
lm's avatar
lm committed
7 8 9 10 11 12
 float x; ///< x position offset
 float y; ///< y position offset
 float z; ///< z position offset
 float yaw; ///< yaw orientation offset in radians, 0 = NORTH
 uint8_t target_system; ///< System ID
 uint8_t target_component; ///< Component ID
13
} mavlink_set_position_control_offset_t;
James Goppert's avatar
James Goppert committed
14

15
#define MAVLINK_MSG_ID_SET_POSITION_CONTROL_OFFSET_LEN 18
lm's avatar
lm committed
16 17 18 19
#define MAVLINK_MSG_ID_160_LEN 18



20 21
#define MAVLINK_MESSAGE_INFO_SET_POSITION_CONTROL_OFFSET { \
	"SET_POSITION_CONTROL_OFFSET", \
lm's avatar
lm committed
22
	6, \
23 24 25 26 27 28
	{  { "x", NULL, MAVLINK_TYPE_FLOAT, 0, 0, offsetof(mavlink_set_position_control_offset_t, x) }, \
         { "y", NULL, MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_set_position_control_offset_t, y) }, \
         { "z", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_set_position_control_offset_t, z) }, \
         { "yaw", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_set_position_control_offset_t, yaw) }, \
         { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 16, offsetof(mavlink_set_position_control_offset_t, target_system) }, \
         { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 17, offsetof(mavlink_set_position_control_offset_t, target_component) }, \
lm's avatar
lm committed
29 30 31 32
         } \
}


James Goppert's avatar
James Goppert committed
33
/**
34
 * @brief Pack a set_position_control_offset message
James Goppert's avatar
James Goppert committed
35 36 37 38 39 40 41 42 43 44 45 46
 * @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 target_system System ID
 * @param target_component Component ID
 * @param x x position offset
 * @param y y position offset
 * @param z z position offset
 * @param yaw yaw orientation offset in radians, 0 = NORTH
 * @return length of the message in bytes (excluding serial stream start sign)
 */
47
static inline uint16_t mavlink_msg_set_position_control_offset_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
lm's avatar
lm committed
48
						       uint8_t target_system, uint8_t target_component, float x, float y, float z, float yaw)
James Goppert's avatar
James Goppert committed
49
{
LM's avatar
LM committed
50 51 52 53 54 55 56 57 58
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
	char buf[18];
	_mav_put_float(buf, 0, x);
	_mav_put_float(buf, 4, y);
	_mav_put_float(buf, 8, z);
	_mav_put_float(buf, 12, yaw);
	_mav_put_uint8_t(buf, 16, target_system);
	_mav_put_uint8_t(buf, 17, target_component);

59
        memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, 18);
LM's avatar
LM committed
60
#else
61
	mavlink_set_position_control_offset_t packet;
LM's avatar
LM committed
62 63 64 65 66 67 68
	packet.x = x;
	packet.y = y;
	packet.z = z;
	packet.yaw = yaw;
	packet.target_system = target_system;
	packet.target_component = target_component;

69
        memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, 18);
LM's avatar
LM committed
70
#endif
James Goppert's avatar
James Goppert committed
71

72 73
	msg->msgid = MAVLINK_MSG_ID_SET_POSITION_CONTROL_OFFSET;
	return mavlink_finalize_message(msg, system_id, component_id, 18, 22);
James Goppert's avatar
James Goppert committed
74 75 76
}

/**
77
 * @brief Pack a set_position_control_offset message on a channel
James Goppert's avatar
James Goppert committed
78 79 80 81 82 83 84 85 86 87 88 89
 * @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 target_system System ID
 * @param target_component Component ID
 * @param x x position offset
 * @param y y position offset
 * @param z z position offset
 * @param yaw yaw orientation offset in radians, 0 = NORTH
 * @return length of the message in bytes (excluding serial stream start sign)
 */
90
static inline uint16_t mavlink_msg_set_position_control_offset_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
lm's avatar
lm committed
91 92 93
							   mavlink_message_t* msg,
						           uint8_t target_system,uint8_t target_component,float x,float y,float z,float yaw)
{
LM's avatar
LM committed
94 95 96 97 98 99 100 101 102
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
	char buf[18];
	_mav_put_float(buf, 0, x);
	_mav_put_float(buf, 4, y);
	_mav_put_float(buf, 8, z);
	_mav_put_float(buf, 12, yaw);
	_mav_put_uint8_t(buf, 16, target_system);
	_mav_put_uint8_t(buf, 17, target_component);

103
        memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, 18);
LM's avatar
LM committed
104
#else
105
	mavlink_set_position_control_offset_t packet;
LM's avatar
LM committed
106 107 108 109 110 111 112
	packet.x = x;
	packet.y = y;
	packet.z = z;
	packet.yaw = yaw;
	packet.target_system = target_system;
	packet.target_component = target_component;

113
        memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, 18);
LM's avatar
LM committed
114
#endif
lm's avatar
lm committed
115

116 117
	msg->msgid = MAVLINK_MSG_ID_SET_POSITION_CONTROL_OFFSET;
	return mavlink_finalize_message_chan(msg, system_id, component_id, chan, 18, 22);
lm's avatar
lm committed
118 119
}

James Goppert's avatar
James Goppert committed
120
/**
121
 * @brief Encode a set_position_control_offset struct into a message
James Goppert's avatar
James Goppert committed
122 123 124 125
 *
 * @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
126
 * @param set_position_control_offset C-struct to read the message contents from
James Goppert's avatar
James Goppert committed
127
 */
128
static inline uint16_t mavlink_msg_set_position_control_offset_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_set_position_control_offset_t* set_position_control_offset)
James Goppert's avatar
James Goppert committed
129
{
130
	return mavlink_msg_set_position_control_offset_pack(system_id, component_id, msg, set_position_control_offset->target_system, set_position_control_offset->target_component, set_position_control_offset->x, set_position_control_offset->y, set_position_control_offset->z, set_position_control_offset->yaw);
James Goppert's avatar
James Goppert committed
131 132 133
}

/**
134
 * @brief Send a set_position_control_offset message
James Goppert's avatar
James Goppert committed
135 136 137 138 139 140 141 142 143
 * @param chan MAVLink channel to send the message
 *
 * @param target_system System ID
 * @param target_component Component ID
 * @param x x position offset
 * @param y y position offset
 * @param z z position offset
 * @param yaw yaw orientation offset in radians, 0 = NORTH
 */
lm's avatar
lm committed
144 145
#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS

146
static inline void mavlink_msg_set_position_control_offset_send(mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, float x, float y, float z, float yaw)
lm's avatar
lm committed
147
{
LM's avatar
LM committed
148 149 150 151 152 153 154 155 156
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
	char buf[18];
	_mav_put_float(buf, 0, x);
	_mav_put_float(buf, 4, y);
	_mav_put_float(buf, 8, z);
	_mav_put_float(buf, 12, yaw);
	_mav_put_uint8_t(buf, 16, target_system);
	_mav_put_uint8_t(buf, 17, target_component);

157
	_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_SET_POSITION_CONTROL_OFFSET, buf, 18, 22);
LM's avatar
LM committed
158
#else
159
	mavlink_set_position_control_offset_t packet;
LM's avatar
LM committed
160 161 162 163 164 165 166
	packet.x = x;
	packet.y = y;
	packet.z = z;
	packet.yaw = yaw;
	packet.target_system = target_system;
	packet.target_component = target_component;

167
	_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_SET_POSITION_CONTROL_OFFSET, (const char *)&packet, 18, 22);
LM's avatar
LM committed
168
#endif
James Goppert's avatar
James Goppert committed
169 170 171
}

#endif
lm's avatar
lm committed
172

173
// MESSAGE SET_POSITION_CONTROL_OFFSET UNPACKING
James Goppert's avatar
James Goppert committed
174

lm's avatar
lm committed
175

James Goppert's avatar
James Goppert committed
176
/**
177
 * @brief Get field target_system from set_position_control_offset message
James Goppert's avatar
James Goppert committed
178 179 180
 *
 * @return System ID
 */
181
static inline uint8_t mavlink_msg_set_position_control_offset_get_target_system(const mavlink_message_t* msg)
James Goppert's avatar
James Goppert committed
182
{
LM's avatar
LM committed
183
	return _MAV_RETURN_uint8_t(msg,  16);
James Goppert's avatar
James Goppert committed
184 185 186
}

/**
187
 * @brief Get field target_component from set_position_control_offset message
James Goppert's avatar
James Goppert committed
188 189 190
 *
 * @return Component ID
 */
191
static inline uint8_t mavlink_msg_set_position_control_offset_get_target_component(const mavlink_message_t* msg)
James Goppert's avatar
James Goppert committed
192
{
LM's avatar
LM committed
193
	return _MAV_RETURN_uint8_t(msg,  17);
James Goppert's avatar
James Goppert committed
194 195 196
}

/**
197
 * @brief Get field x from set_position_control_offset message
James Goppert's avatar
James Goppert committed
198 199 200
 *
 * @return x position offset
 */
201
static inline float mavlink_msg_set_position_control_offset_get_x(const mavlink_message_t* msg)
James Goppert's avatar
James Goppert committed
202
{
LM's avatar
LM committed
203
	return _MAV_RETURN_float(msg,  0);
James Goppert's avatar
James Goppert committed
204 205 206
}

/**
207
 * @brief Get field y from set_position_control_offset message
James Goppert's avatar
James Goppert committed
208 209 210
 *
 * @return y position offset
 */
211
static inline float mavlink_msg_set_position_control_offset_get_y(const mavlink_message_t* msg)
James Goppert's avatar
James Goppert committed
212
{
LM's avatar
LM committed
213
	return _MAV_RETURN_float(msg,  4);
James Goppert's avatar
James Goppert committed
214 215 216
}

/**
217
 * @brief Get field z from set_position_control_offset message
James Goppert's avatar
James Goppert committed
218 219 220
 *
 * @return z position offset
 */
221
static inline float mavlink_msg_set_position_control_offset_get_z(const mavlink_message_t* msg)
James Goppert's avatar
James Goppert committed
222
{
LM's avatar
LM committed
223
	return _MAV_RETURN_float(msg,  8);
James Goppert's avatar
James Goppert committed
224 225 226
}

/**
227
 * @brief Get field yaw from set_position_control_offset message
James Goppert's avatar
James Goppert committed
228 229 230
 *
 * @return yaw orientation offset in radians, 0 = NORTH
 */
231
static inline float mavlink_msg_set_position_control_offset_get_yaw(const mavlink_message_t* msg)
James Goppert's avatar
James Goppert committed
232
{
LM's avatar
LM committed
233
	return _MAV_RETURN_float(msg,  12);
James Goppert's avatar
James Goppert committed
234 235 236
}

/**
237
 * @brief Decode a set_position_control_offset message into a struct
James Goppert's avatar
James Goppert committed
238 239
 *
 * @param msg The message to decode
240
 * @param set_position_control_offset C-struct to decode the message contents into
James Goppert's avatar
James Goppert committed
241
 */
242
static inline void mavlink_msg_set_position_control_offset_decode(const mavlink_message_t* msg, mavlink_set_position_control_offset_t* set_position_control_offset)
James Goppert's avatar
James Goppert committed
243
{
lm's avatar
lm committed
244
#if MAVLINK_NEED_BYTE_SWAP
245 246 247 248 249 250
	set_position_control_offset->x = mavlink_msg_set_position_control_offset_get_x(msg);
	set_position_control_offset->y = mavlink_msg_set_position_control_offset_get_y(msg);
	set_position_control_offset->z = mavlink_msg_set_position_control_offset_get_z(msg);
	set_position_control_offset->yaw = mavlink_msg_set_position_control_offset_get_yaw(msg);
	set_position_control_offset->target_system = mavlink_msg_set_position_control_offset_get_target_system(msg);
	set_position_control_offset->target_component = mavlink_msg_set_position_control_offset_get_target_component(msg);
lm's avatar
lm committed
251
#else
252
	memcpy(set_position_control_offset, _MAV_PAYLOAD(msg), 18);
lm's avatar
lm committed
253
#endif
James Goppert's avatar
James Goppert committed
254
}