mavlink_msg_vicon_position_estimate.h
Go to the documentation of this file.
00001 // MESSAGE VICON_POSITION_ESTIMATE PACKING
00002 
00003 #define MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE 104
00004 
00005 typedef struct __mavlink_vicon_position_estimate_t
00006 {
00007  uint64_t usec; /*< Timestamp (microseconds, synced to UNIX time or since system boot)*/
00008  float x; /*< Global X position*/
00009  float y; /*< Global Y position*/
00010  float z; /*< Global Z position*/
00011  float roll; /*< Roll angle in rad*/
00012  float pitch; /*< Pitch angle in rad*/
00013  float yaw; /*< Yaw angle in rad*/
00014 } mavlink_vicon_position_estimate_t;
00015 
00016 #define MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN 32
00017 #define MAVLINK_MSG_ID_104_LEN 32
00018 
00019 #define MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_CRC 56
00020 #define MAVLINK_MSG_ID_104_CRC 56
00021 
00022 
00023 
00024 #define MAVLINK_MESSAGE_INFO_VICON_POSITION_ESTIMATE { \
00025         "VICON_POSITION_ESTIMATE", \
00026         7, \
00027         {  { "usec", NULL, MAVLINK_TYPE_UINT64_T, 0, 0, offsetof(mavlink_vicon_position_estimate_t, usec) }, \
00028          { "x", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_vicon_position_estimate_t, x) }, \
00029          { "y", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_vicon_position_estimate_t, y) }, \
00030          { "z", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_vicon_position_estimate_t, z) }, \
00031          { "roll", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_vicon_position_estimate_t, roll) }, \
00032          { "pitch", NULL, MAVLINK_TYPE_FLOAT, 0, 24, offsetof(mavlink_vicon_position_estimate_t, pitch) }, \
00033          { "yaw", NULL, MAVLINK_TYPE_FLOAT, 0, 28, offsetof(mavlink_vicon_position_estimate_t, yaw) }, \
00034          } \
00035 }
00036 
00037 
00053 static inline uint16_t mavlink_msg_vicon_position_estimate_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
00054                                                        uint64_t usec, float x, float y, float z, float roll, float pitch, float yaw)
00055 {
00056 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00057         char buf[MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN];
00058         _mav_put_uint64_t(buf, 0, usec);
00059         _mav_put_float(buf, 8, x);
00060         _mav_put_float(buf, 12, y);
00061         _mav_put_float(buf, 16, z);
00062         _mav_put_float(buf, 20, roll);
00063         _mav_put_float(buf, 24, pitch);
00064         _mav_put_float(buf, 28, yaw);
00065 
00066         memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN);
00067 #else
00068         mavlink_vicon_position_estimate_t packet;
00069         packet.usec = usec;
00070         packet.x = x;
00071         packet.y = y;
00072         packet.z = z;
00073         packet.roll = roll;
00074         packet.pitch = pitch;
00075         packet.yaw = yaw;
00076 
00077         memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN);
00078 #endif
00079 
00080         msg->msgid = MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE;
00081 #if MAVLINK_CRC_EXTRA
00082     return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_CRC);
00083 #else
00084     return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN);
00085 #endif
00086 }
00087 
00103 static inline uint16_t mavlink_msg_vicon_position_estimate_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
00104                                                            mavlink_message_t* msg,
00105                                                            uint64_t usec,float x,float y,float z,float roll,float pitch,float yaw)
00106 {
00107 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00108         char buf[MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN];
00109         _mav_put_uint64_t(buf, 0, usec);
00110         _mav_put_float(buf, 8, x);
00111         _mav_put_float(buf, 12, y);
00112         _mav_put_float(buf, 16, z);
00113         _mav_put_float(buf, 20, roll);
00114         _mav_put_float(buf, 24, pitch);
00115         _mav_put_float(buf, 28, yaw);
00116 
00117         memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN);
00118 #else
00119         mavlink_vicon_position_estimate_t packet;
00120         packet.usec = usec;
00121         packet.x = x;
00122         packet.y = y;
00123         packet.z = z;
00124         packet.roll = roll;
00125         packet.pitch = pitch;
00126         packet.yaw = yaw;
00127 
00128         memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN);
00129 #endif
00130 
00131         msg->msgid = MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE;
00132 #if MAVLINK_CRC_EXTRA
00133     return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_CRC);
00134 #else
00135     return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN);
00136 #endif
00137 }
00138 
00147 static inline uint16_t mavlink_msg_vicon_position_estimate_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_vicon_position_estimate_t* vicon_position_estimate)
00148 {
00149         return mavlink_msg_vicon_position_estimate_pack(system_id, component_id, msg, vicon_position_estimate->usec, vicon_position_estimate->x, vicon_position_estimate->y, vicon_position_estimate->z, vicon_position_estimate->roll, vicon_position_estimate->pitch, vicon_position_estimate->yaw);
00150 }
00151 
00161 static inline uint16_t mavlink_msg_vicon_position_estimate_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_vicon_position_estimate_t* vicon_position_estimate)
00162 {
00163         return mavlink_msg_vicon_position_estimate_pack_chan(system_id, component_id, chan, msg, vicon_position_estimate->usec, vicon_position_estimate->x, vicon_position_estimate->y, vicon_position_estimate->z, vicon_position_estimate->roll, vicon_position_estimate->pitch, vicon_position_estimate->yaw);
00164 }
00165 
00178 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
00179 
00180 static inline void mavlink_msg_vicon_position_estimate_send(mavlink_channel_t chan, uint64_t usec, float x, float y, float z, float roll, float pitch, float yaw)
00181 {
00182 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00183         char buf[MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN];
00184         _mav_put_uint64_t(buf, 0, usec);
00185         _mav_put_float(buf, 8, x);
00186         _mav_put_float(buf, 12, y);
00187         _mav_put_float(buf, 16, z);
00188         _mav_put_float(buf, 20, roll);
00189         _mav_put_float(buf, 24, pitch);
00190         _mav_put_float(buf, 28, yaw);
00191 
00192 #if MAVLINK_CRC_EXTRA
00193     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_CRC);
00194 #else
00195     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN);
00196 #endif
00197 #else
00198         mavlink_vicon_position_estimate_t packet;
00199         packet.usec = usec;
00200         packet.x = x;
00201         packet.y = y;
00202         packet.z = z;
00203         packet.roll = roll;
00204         packet.pitch = pitch;
00205         packet.yaw = yaw;
00206 
00207 #if MAVLINK_CRC_EXTRA
00208     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE, (const char *)&packet, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_CRC);
00209 #else
00210     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE, (const char *)&packet, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN);
00211 #endif
00212 #endif
00213 }
00214 
00215 #if MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN <= MAVLINK_MAX_PAYLOAD_LEN
00216 /*
00217   This varient of _send() can be used to save stack space by re-using
00218   memory from the receive buffer.  The caller provides a
00219   mavlink_message_t which is the size of a full mavlink message. This
00220   is usually the receive buffer for the channel, and allows a reply to an
00221   incoming message with minimum stack space usage.
00222  */
00223 static inline void mavlink_msg_vicon_position_estimate_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan,  uint64_t usec, float x, float y, float z, float roll, float pitch, float yaw)
00224 {
00225 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
00226         char *buf = (char *)msgbuf;
00227         _mav_put_uint64_t(buf, 0, usec);
00228         _mav_put_float(buf, 8, x);
00229         _mav_put_float(buf, 12, y);
00230         _mav_put_float(buf, 16, z);
00231         _mav_put_float(buf, 20, roll);
00232         _mav_put_float(buf, 24, pitch);
00233         _mav_put_float(buf, 28, yaw);
00234 
00235 #if MAVLINK_CRC_EXTRA
00236     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_CRC);
00237 #else
00238     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN);
00239 #endif
00240 #else
00241         mavlink_vicon_position_estimate_t *packet = (mavlink_vicon_position_estimate_t *)msgbuf;
00242         packet->usec = usec;
00243         packet->x = x;
00244         packet->y = y;
00245         packet->z = z;
00246         packet->roll = roll;
00247         packet->pitch = pitch;
00248         packet->yaw = yaw;
00249 
00250 #if MAVLINK_CRC_EXTRA
00251     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE, (const char *)packet, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_CRC);
00252 #else
00253     _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE, (const char *)packet, MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN);
00254 #endif
00255 #endif
00256 }
00257 #endif
00258 
00259 #endif
00260 
00261 // MESSAGE VICON_POSITION_ESTIMATE UNPACKING
00262 
00263 
00269 static inline uint64_t mavlink_msg_vicon_position_estimate_get_usec(const mavlink_message_t* msg)
00270 {
00271         return _MAV_RETURN_uint64_t(msg,  0);
00272 }
00273 
00279 static inline float mavlink_msg_vicon_position_estimate_get_x(const mavlink_message_t* msg)
00280 {
00281         return _MAV_RETURN_float(msg,  8);
00282 }
00283 
00289 static inline float mavlink_msg_vicon_position_estimate_get_y(const mavlink_message_t* msg)
00290 {
00291         return _MAV_RETURN_float(msg,  12);
00292 }
00293 
00299 static inline float mavlink_msg_vicon_position_estimate_get_z(const mavlink_message_t* msg)
00300 {
00301         return _MAV_RETURN_float(msg,  16);
00302 }
00303 
00309 static inline float mavlink_msg_vicon_position_estimate_get_roll(const mavlink_message_t* msg)
00310 {
00311         return _MAV_RETURN_float(msg,  20);
00312 }
00313 
00319 static inline float mavlink_msg_vicon_position_estimate_get_pitch(const mavlink_message_t* msg)
00320 {
00321         return _MAV_RETURN_float(msg,  24);
00322 }
00323 
00329 static inline float mavlink_msg_vicon_position_estimate_get_yaw(const mavlink_message_t* msg)
00330 {
00331         return _MAV_RETURN_float(msg,  28);
00332 }
00333 
00340 static inline void mavlink_msg_vicon_position_estimate_decode(const mavlink_message_t* msg, mavlink_vicon_position_estimate_t* vicon_position_estimate)
00341 {
00342 #if MAVLINK_NEED_BYTE_SWAP
00343         vicon_position_estimate->usec = mavlink_msg_vicon_position_estimate_get_usec(msg);
00344         vicon_position_estimate->x = mavlink_msg_vicon_position_estimate_get_x(msg);
00345         vicon_position_estimate->y = mavlink_msg_vicon_position_estimate_get_y(msg);
00346         vicon_position_estimate->z = mavlink_msg_vicon_position_estimate_get_z(msg);
00347         vicon_position_estimate->roll = mavlink_msg_vicon_position_estimate_get_roll(msg);
00348         vicon_position_estimate->pitch = mavlink_msg_vicon_position_estimate_get_pitch(msg);
00349         vicon_position_estimate->yaw = mavlink_msg_vicon_position_estimate_get_yaw(msg);
00350 #else
00351         memcpy(vicon_position_estimate, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_VICON_POSITION_ESTIMATE_LEN);
00352 #endif
00353 }


dji_sdk_dji2mav
Author(s):
autogenerated on Thu Jun 6 2019 17:55:35