mavlink_msg_mount_status.h 8.16 KB
Newer Older
1 2 3 4 5 6
// MESSAGE MOUNT_STATUS PACKING

#define MAVLINK_MSG_ID_MOUNT_STATUS 158

typedef struct __mavlink_mount_status_t
{
pixhawk's avatar
pixhawk committed
7 8
 uint8_t target_system; ///< System ID
 uint8_t target_component; ///< Component ID
9 10 11 12 13 14 15 16 17 18 19 20 21
 int32_t pointing_a; ///< pitch(deg*100) or lat, depending on mount mode
 int32_t pointing_b; ///< roll(deg*100) or lon depending on mount mode
 int32_t pointing_c; ///< yaw(deg*100) or alt (in cm) depending on mount mode
} mavlink_mount_status_t;

#define MAVLINK_MSG_ID_MOUNT_STATUS_LEN 14
#define MAVLINK_MSG_ID_158_LEN 14



#define MAVLINK_MESSAGE_INFO_MOUNT_STATUS { \
	"MOUNT_STATUS", \
	5, \
pixhawk's avatar
pixhawk committed
22 23 24 25 26
	{  { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_mount_status_t, target_system) }, \
         { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_mount_status_t, target_component) }, \
         { "pointing_a", NULL, MAVLINK_TYPE_INT32_T, 0, 2, offsetof(mavlink_mount_status_t, pointing_a) }, \
         { "pointing_b", NULL, MAVLINK_TYPE_INT32_T, 0, 6, offsetof(mavlink_mount_status_t, pointing_b) }, \
         { "pointing_c", NULL, MAVLINK_TYPE_INT32_T, 0, 10, offsetof(mavlink_mount_status_t, pointing_c) }, \
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
         } \
}


/**
 * @brief Pack a mount_status 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 target_system System ID
 * @param target_component Component ID
 * @param pointing_a pitch(deg*100) or lat, depending on mount mode
 * @param pointing_b roll(deg*100) or lon depending on mount mode
 * @param pointing_c yaw(deg*100) or alt (in cm) depending on mount mode
 * @return length of the message in bytes (excluding serial stream start sign)
 */
static inline uint16_t mavlink_msg_mount_status_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
						       uint8_t target_system, uint8_t target_component, int32_t pointing_a, int32_t pointing_b, int32_t pointing_c)
{
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
	char buf[14];
pixhawk's avatar
pixhawk committed
49 50 51 52 53
	_mav_put_uint8_t(buf, 0, target_system);
	_mav_put_uint8_t(buf, 1, target_component);
	_mav_put_int32_t(buf, 2, pointing_a);
	_mav_put_int32_t(buf, 6, pointing_b);
	_mav_put_int32_t(buf, 10, pointing_c);
54

pixhawk's avatar
pixhawk committed
55
        memcpy(_MAV_PAYLOAD(msg), buf, 14);
56 57
#else
	mavlink_mount_status_t packet;
pixhawk's avatar
pixhawk committed
58 59
	packet.target_system = target_system;
	packet.target_component = target_component;
60 61 62 63
	packet.pointing_a = pointing_a;
	packet.pointing_b = pointing_b;
	packet.pointing_c = pointing_c;

pixhawk's avatar
pixhawk committed
64
        memcpy(_MAV_PAYLOAD(msg), &packet, 14);
65 66 67
#endif

	msg->msgid = MAVLINK_MSG_ID_MOUNT_STATUS;
pixhawk's avatar
pixhawk committed
68
	return mavlink_finalize_message(msg, system_id, component_id, 14);
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
}

/**
 * @brief Pack a mount_status message on a channel
 * @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 pointing_a pitch(deg*100) or lat, depending on mount mode
 * @param pointing_b roll(deg*100) or lon depending on mount mode
 * @param pointing_c yaw(deg*100) or alt (in cm) depending on mount mode
 * @return length of the message in bytes (excluding serial stream start sign)
 */
static inline uint16_t mavlink_msg_mount_status_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
							   mavlink_message_t* msg,
						           uint8_t target_system,uint8_t target_component,int32_t pointing_a,int32_t pointing_b,int32_t pointing_c)
{
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
	char buf[14];
pixhawk's avatar
pixhawk committed
90 91 92 93 94
	_mav_put_uint8_t(buf, 0, target_system);
	_mav_put_uint8_t(buf, 1, target_component);
	_mav_put_int32_t(buf, 2, pointing_a);
	_mav_put_int32_t(buf, 6, pointing_b);
	_mav_put_int32_t(buf, 10, pointing_c);
95

pixhawk's avatar
pixhawk committed
96
        memcpy(_MAV_PAYLOAD(msg), buf, 14);
97 98
#else
	mavlink_mount_status_t packet;
pixhawk's avatar
pixhawk committed
99 100
	packet.target_system = target_system;
	packet.target_component = target_component;
101 102 103 104
	packet.pointing_a = pointing_a;
	packet.pointing_b = pointing_b;
	packet.pointing_c = pointing_c;

pixhawk's avatar
pixhawk committed
105
        memcpy(_MAV_PAYLOAD(msg), &packet, 14);
106 107 108
#endif

	msg->msgid = MAVLINK_MSG_ID_MOUNT_STATUS;
pixhawk's avatar
pixhawk committed
109
	return mavlink_finalize_message_chan(msg, system_id, component_id, chan, 14);
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
}

/**
 * @brief Encode a mount_status 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 mount_status C-struct to read the message contents from
 */
static inline uint16_t mavlink_msg_mount_status_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_mount_status_t* mount_status)
{
	return mavlink_msg_mount_status_pack(system_id, component_id, msg, mount_status->target_system, mount_status->target_component, mount_status->pointing_a, mount_status->pointing_b, mount_status->pointing_c);
}

/**
 * @brief Send a mount_status message
 * @param chan MAVLink channel to send the message
 *
 * @param target_system System ID
 * @param target_component Component ID
 * @param pointing_a pitch(deg*100) or lat, depending on mount mode
 * @param pointing_b roll(deg*100) or lon depending on mount mode
 * @param pointing_c yaw(deg*100) or alt (in cm) depending on mount mode
 */
#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS

static inline void mavlink_msg_mount_status_send(mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, int32_t pointing_a, int32_t pointing_b, int32_t pointing_c)
{
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
	char buf[14];
pixhawk's avatar
pixhawk committed
141 142 143 144 145
	_mav_put_uint8_t(buf, 0, target_system);
	_mav_put_uint8_t(buf, 1, target_component);
	_mav_put_int32_t(buf, 2, pointing_a);
	_mav_put_int32_t(buf, 6, pointing_b);
	_mav_put_int32_t(buf, 10, pointing_c);
146

pixhawk's avatar
pixhawk committed
147
	_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MOUNT_STATUS, buf, 14);
148 149
#else
	mavlink_mount_status_t packet;
pixhawk's avatar
pixhawk committed
150 151
	packet.target_system = target_system;
	packet.target_component = target_component;
152 153 154 155
	packet.pointing_a = pointing_a;
	packet.pointing_b = pointing_b;
	packet.pointing_c = pointing_c;

pixhawk's avatar
pixhawk committed
156
	_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MOUNT_STATUS, (const char *)&packet, 14);
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
#endif
}

#endif

// MESSAGE MOUNT_STATUS UNPACKING


/**
 * @brief Get field target_system from mount_status message
 *
 * @return System ID
 */
static inline uint8_t mavlink_msg_mount_status_get_target_system(const mavlink_message_t* msg)
{
pixhawk's avatar
pixhawk committed
172
	return _MAV_RETURN_uint8_t(msg,  0);
173 174 175 176 177 178 179 180 181
}

/**
 * @brief Get field target_component from mount_status message
 *
 * @return Component ID
 */
static inline uint8_t mavlink_msg_mount_status_get_target_component(const mavlink_message_t* msg)
{
pixhawk's avatar
pixhawk committed
182
	return _MAV_RETURN_uint8_t(msg,  1);
183 184 185 186 187 188 189 190 191
}

/**
 * @brief Get field pointing_a from mount_status message
 *
 * @return pitch(deg*100) or lat, depending on mount mode
 */
static inline int32_t mavlink_msg_mount_status_get_pointing_a(const mavlink_message_t* msg)
{
pixhawk's avatar
pixhawk committed
192
	return _MAV_RETURN_int32_t(msg,  2);
193 194 195 196 197 198 199 200 201
}

/**
 * @brief Get field pointing_b from mount_status message
 *
 * @return roll(deg*100) or lon depending on mount mode
 */
static inline int32_t mavlink_msg_mount_status_get_pointing_b(const mavlink_message_t* msg)
{
pixhawk's avatar
pixhawk committed
202
	return _MAV_RETURN_int32_t(msg,  6);
203 204 205 206 207 208 209 210 211
}

/**
 * @brief Get field pointing_c from mount_status message
 *
 * @return yaw(deg*100) or alt (in cm) depending on mount mode
 */
static inline int32_t mavlink_msg_mount_status_get_pointing_c(const mavlink_message_t* msg)
{
pixhawk's avatar
pixhawk committed
212
	return _MAV_RETURN_int32_t(msg,  10);
213 214 215 216 217 218 219 220 221 222 223
}

/**
 * @brief Decode a mount_status message into a struct
 *
 * @param msg The message to decode
 * @param mount_status C-struct to decode the message contents into
 */
static inline void mavlink_msg_mount_status_decode(const mavlink_message_t* msg, mavlink_mount_status_t* mount_status)
{
#if MAVLINK_NEED_BYTE_SWAP
pixhawk's avatar
pixhawk committed
224 225
	mount_status->target_system = mavlink_msg_mount_status_get_target_system(msg);
	mount_status->target_component = mavlink_msg_mount_status_get_target_component(msg);
226 227 228 229 230 231 232
	mount_status->pointing_a = mavlink_msg_mount_status_get_pointing_a(msg);
	mount_status->pointing_b = mavlink_msg_mount_status_get_pointing_b(msg);
	mount_status->pointing_c = mavlink_msg_mount_status_get_pointing_c(msg);
#else
	memcpy(mount_status, _MAV_PAYLOAD(msg), 14);
#endif
}