mavlink_msg_attitude.h 8.29 KB
Newer Older
James Goppert's avatar
James Goppert committed
1 2
// MESSAGE ATTITUDE PACKING

3
#define MAVLINK_MSG_ID_ATTITUDE 31
James Goppert's avatar
James Goppert committed
4

lm's avatar
lm committed
5
typedef struct __mavlink_attitude_t
James Goppert's avatar
James Goppert committed
6
{
7
 uint32_t time_boot_ms; ///< Timestamp (milliseconds since system boot)
lm's avatar
lm committed
8 9 10 11 12 13
 float roll; ///< Roll angle (rad)
 float pitch; ///< Pitch angle (rad)
 float yaw; ///< Yaw angle (rad)
 float rollspeed; ///< Roll angular speed (rad/s)
 float pitchspeed; ///< Pitch angular speed (rad/s)
 float yawspeed; ///< Yaw angular speed (rad/s)
James Goppert's avatar
James Goppert committed
14 15
} mavlink_attitude_t;

16 17
#define MAVLINK_MSG_ID_ATTITUDE_LEN 28
#define MAVLINK_MSG_ID_31_LEN 28
lm's avatar
lm committed
18 19 20 21 22 23



#define MAVLINK_MESSAGE_INFO_ATTITUDE { \
	"ATTITUDE", \
	7, \
24 25 26 27 28 29 30
	{  { "time_boot_ms", MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_attitude_t, time_boot_ms) }, \
         { "roll", MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_attitude_t, roll) }, \
         { "pitch", MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_attitude_t, pitch) }, \
         { "yaw", MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_attitude_t, yaw) }, \
         { "rollspeed", MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_attitude_t, rollspeed) }, \
         { "pitchspeed", MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_attitude_t, pitchspeed) }, \
         { "yawspeed", MAVLINK_TYPE_FLOAT, 0, 24, offsetof(mavlink_attitude_t, yawspeed) }, \
lm's avatar
lm committed
31 32 33 34
         } \
}


James Goppert's avatar
James Goppert committed
35 36 37 38 39 40
/**
 * @brief Pack a attitude 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
 *
41
 * @param time_boot_ms Timestamp (milliseconds since system boot)
James Goppert's avatar
James Goppert committed
42 43 44 45 46 47 48 49
 * @param roll Roll angle (rad)
 * @param pitch Pitch angle (rad)
 * @param yaw Yaw angle (rad)
 * @param rollspeed Roll angular speed (rad/s)
 * @param pitchspeed Pitch angular speed (rad/s)
 * @param yawspeed Yaw angular speed (rad/s)
 * @return length of the message in bytes (excluding serial stream start sign)
 */
lm's avatar
lm committed
50
static inline uint16_t mavlink_msg_attitude_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
51
						       uint32_t time_boot_ms, float roll, float pitch, float yaw, float rollspeed, float pitchspeed, float yawspeed)
James Goppert's avatar
James Goppert committed
52 53 54
{
	msg->msgid = MAVLINK_MSG_ID_ATTITUDE;

55 56 57 58 59 60 61
	put_uint32_t_by_index(msg, 0, time_boot_ms); // Timestamp (milliseconds since system boot)
	put_float_by_index(msg, 4, roll); // Roll angle (rad)
	put_float_by_index(msg, 8, pitch); // Pitch angle (rad)
	put_float_by_index(msg, 12, yaw); // Yaw angle (rad)
	put_float_by_index(msg, 16, rollspeed); // Roll angular speed (rad/s)
	put_float_by_index(msg, 20, pitchspeed); // Pitch angular speed (rad/s)
	put_float_by_index(msg, 24, yawspeed); // Yaw angular speed (rad/s)
James Goppert's avatar
James Goppert committed
62

63
	return mavlink_finalize_message(msg, system_id, component_id, 28, 39);
James Goppert's avatar
James Goppert committed
64 65 66
}

/**
lm's avatar
lm committed
67
 * @brief Pack a attitude message on a channel
James Goppert's avatar
James Goppert committed
68 69 70 71
 * @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
72
 * @param time_boot_ms Timestamp (milliseconds since system boot)
James Goppert's avatar
James Goppert committed
73 74 75 76 77 78 79 80
 * @param roll Roll angle (rad)
 * @param pitch Pitch angle (rad)
 * @param yaw Yaw angle (rad)
 * @param rollspeed Roll angular speed (rad/s)
 * @param pitchspeed Pitch angular speed (rad/s)
 * @param yawspeed Yaw angular speed (rad/s)
 * @return length of the message in bytes (excluding serial stream start sign)
 */
lm's avatar
lm committed
81 82
static inline uint16_t mavlink_msg_attitude_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
							   mavlink_message_t* msg,
83
						           uint32_t time_boot_ms,float roll,float pitch,float yaw,float rollspeed,float pitchspeed,float yawspeed)
James Goppert's avatar
James Goppert committed
84 85 86
{
	msg->msgid = MAVLINK_MSG_ID_ATTITUDE;

87 88 89 90 91 92 93
	put_uint32_t_by_index(msg, 0, time_boot_ms); // Timestamp (milliseconds since system boot)
	put_float_by_index(msg, 4, roll); // Roll angle (rad)
	put_float_by_index(msg, 8, pitch); // Pitch angle (rad)
	put_float_by_index(msg, 12, yaw); // Yaw angle (rad)
	put_float_by_index(msg, 16, rollspeed); // Roll angular speed (rad/s)
	put_float_by_index(msg, 20, pitchspeed); // Pitch angular speed (rad/s)
	put_float_by_index(msg, 24, yawspeed); // Yaw angular speed (rad/s)
James Goppert's avatar
James Goppert committed
94

95
	return mavlink_finalize_message_chan(msg, system_id, component_id, chan, 28, 39);
James Goppert's avatar
James Goppert committed
96 97 98 99 100 101 102 103 104 105 106 107
}

/**
 * @brief Encode a attitude 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 attitude C-struct to read the message contents from
 */
static inline uint16_t mavlink_msg_attitude_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_attitude_t* attitude)
{
108
	return mavlink_msg_attitude_pack(system_id, component_id, msg, attitude->time_boot_ms, attitude->roll, attitude->pitch, attitude->yaw, attitude->rollspeed, attitude->pitchspeed, attitude->yawspeed);
James Goppert's avatar
James Goppert committed
109 110 111 112 113 114
}

/**
 * @brief Send a attitude message
 * @param chan MAVLink channel to send the message
 *
115
 * @param time_boot_ms Timestamp (milliseconds since system boot)
James Goppert's avatar
James Goppert committed
116 117 118 119 120 121 122
 * @param roll Roll angle (rad)
 * @param pitch Pitch angle (rad)
 * @param yaw Yaw angle (rad)
 * @param rollspeed Roll angular speed (rad/s)
 * @param pitchspeed Pitch angular speed (rad/s)
 * @param yawspeed Yaw angular speed (rad/s)
 */
lm's avatar
lm committed
123 124
#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS

125
static inline void mavlink_msg_attitude_send(mavlink_channel_t chan, uint32_t time_boot_ms, float roll, float pitch, float yaw, float rollspeed, float pitchspeed, float yawspeed)
lm's avatar
lm committed
126
{
127
	MAVLINK_ALIGNED_MESSAGE(msg, 28);
LM's avatar
LM committed
128 129
	msg->msgid = MAVLINK_MSG_ID_ATTITUDE;

130 131 132 133 134 135 136
	put_uint32_t_by_index(msg, 0, time_boot_ms); // Timestamp (milliseconds since system boot)
	put_float_by_index(msg, 4, roll); // Roll angle (rad)
	put_float_by_index(msg, 8, pitch); // Pitch angle (rad)
	put_float_by_index(msg, 12, yaw); // Yaw angle (rad)
	put_float_by_index(msg, 16, rollspeed); // Roll angular speed (rad/s)
	put_float_by_index(msg, 20, pitchspeed); // Pitch angular speed (rad/s)
	put_float_by_index(msg, 24, yawspeed); // Yaw angular speed (rad/s)
LM's avatar
LM committed
137

138
	mavlink_finalize_message_chan_send(msg, chan, 28, 39);
James Goppert's avatar
James Goppert committed
139 140 141
}

#endif
lm's avatar
lm committed
142

James Goppert's avatar
James Goppert committed
143 144
// MESSAGE ATTITUDE UNPACKING

lm's avatar
lm committed
145

James Goppert's avatar
James Goppert committed
146
/**
147
 * @brief Get field time_boot_ms from attitude message
James Goppert's avatar
James Goppert committed
148
 *
149
 * @return Timestamp (milliseconds since system boot)
James Goppert's avatar
James Goppert committed
150
 */
151
static inline uint32_t mavlink_msg_attitude_get_time_boot_ms(const mavlink_message_t* msg)
James Goppert's avatar
James Goppert committed
152
{
153
	return MAVLINK_MSG_RETURN_uint32_t(msg,  0);
James Goppert's avatar
James Goppert committed
154 155 156 157 158 159 160 161 162
}

/**
 * @brief Get field roll from attitude message
 *
 * @return Roll angle (rad)
 */
static inline float mavlink_msg_attitude_get_roll(const mavlink_message_t* msg)
{
163
	return MAVLINK_MSG_RETURN_float(msg,  4);
James Goppert's avatar
James Goppert committed
164 165 166 167 168 169 170 171 172
}

/**
 * @brief Get field pitch from attitude message
 *
 * @return Pitch angle (rad)
 */
static inline float mavlink_msg_attitude_get_pitch(const mavlink_message_t* msg)
{
173
	return MAVLINK_MSG_RETURN_float(msg,  8);
James Goppert's avatar
James Goppert committed
174 175 176 177 178 179 180 181 182
}

/**
 * @brief Get field yaw from attitude message
 *
 * @return Yaw angle (rad)
 */
static inline float mavlink_msg_attitude_get_yaw(const mavlink_message_t* msg)
{
183
	return MAVLINK_MSG_RETURN_float(msg,  12);
James Goppert's avatar
James Goppert committed
184 185 186 187 188 189 190 191 192
}

/**
 * @brief Get field rollspeed from attitude message
 *
 * @return Roll angular speed (rad/s)
 */
static inline float mavlink_msg_attitude_get_rollspeed(const mavlink_message_t* msg)
{
193
	return MAVLINK_MSG_RETURN_float(msg,  16);
James Goppert's avatar
James Goppert committed
194 195 196 197 198 199 200 201 202
}

/**
 * @brief Get field pitchspeed from attitude message
 *
 * @return Pitch angular speed (rad/s)
 */
static inline float mavlink_msg_attitude_get_pitchspeed(const mavlink_message_t* msg)
{
203
	return MAVLINK_MSG_RETURN_float(msg,  20);
James Goppert's avatar
James Goppert committed
204 205 206 207 208 209 210 211 212
}

/**
 * @brief Get field yawspeed from attitude message
 *
 * @return Yaw angular speed (rad/s)
 */
static inline float mavlink_msg_attitude_get_yawspeed(const mavlink_message_t* msg)
{
213
	return MAVLINK_MSG_RETURN_float(msg,  24);
James Goppert's avatar
James Goppert committed
214 215 216 217 218 219 220 221 222 223
}

/**
 * @brief Decode a attitude message into a struct
 *
 * @param msg The message to decode
 * @param attitude C-struct to decode the message contents into
 */
static inline void mavlink_msg_attitude_decode(const mavlink_message_t* msg, mavlink_attitude_t* attitude)
{
lm's avatar
lm committed
224
#if MAVLINK_NEED_BYTE_SWAP
225
	attitude->time_boot_ms = mavlink_msg_attitude_get_time_boot_ms(msg);
lm's avatar
lm committed
226 227 228 229 230 231 232
	attitude->roll = mavlink_msg_attitude_get_roll(msg);
	attitude->pitch = mavlink_msg_attitude_get_pitch(msg);
	attitude->yaw = mavlink_msg_attitude_get_yaw(msg);
	attitude->rollspeed = mavlink_msg_attitude_get_rollspeed(msg);
	attitude->pitchspeed = mavlink_msg_attitude_get_pitchspeed(msg);
	attitude->yawspeed = mavlink_msg_attitude_get_yawspeed(msg);
#else
233
	memcpy(attitude, MAVLINK_PAYLOAD(msg), 28);
lm's avatar
lm committed
234
#endif
James Goppert's avatar
James Goppert committed
235
}