|
|
|
// MESSAGE GLOBAL_POSITION_INT PACKING
|
|
|
|
|
|
|
|
#define MAVLINK_MSG_ID_GLOBAL_POSITION_INT 73
|
|
|
|
#define MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN 18
|
|
|
|
#define MAVLINK_MSG_73_LEN 18
|
|
|
|
|
|
|
|
typedef struct __mavlink_global_position_int_t
|
|
|
|
{
|
|
|
|
int32_t lat; ///< Latitude, expressed as * 1E7
|
|
|
|
int32_t lon; ///< Longitude, expressed as * 1E7
|
|
|
|
int32_t alt; ///< Altitude in meters, expressed as * 1000 (millimeters)
|
|
|
|
int16_t vx; ///< Ground X Speed (Latitude), expressed as m/s * 100
|
|
|
|
int16_t vy; ///< Ground Y Speed (Longitude), expressed as m/s * 100
|
|
|
|
int16_t vz; ///< Ground Z Speed (Altitude), expressed as m/s * 100
|
|
|
|
|
|
|
|
} mavlink_global_position_int_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Pack a global_position_int 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 lat Latitude, expressed as * 1E7
|
|
|
|
* @param lon Longitude, expressed as * 1E7
|
|
|
|
* @param alt Altitude in meters, expressed as * 1000 (millimeters)
|
|
|
|
* @param vx Ground X Speed (Latitude), expressed as m/s * 100
|
|
|
|
* @param vy Ground Y Speed (Longitude), expressed as m/s * 100
|
|
|
|
* @param vz Ground Z Speed (Altitude), expressed as m/s * 100
|
|
|
|
* @return length of the message in bytes (excluding serial stream start sign)
|
|
|
|
*/
|
|
|
|
static inline uint16_t mavlink_msg_global_position_int_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, int32_t lat, int32_t lon, int32_t alt, int16_t vx, int16_t vy, int16_t vz)
|
|
|
|
{
|
|
|
|
mavlink_global_position_int_t *p = (mavlink_global_position_int_t *)&msg->payload[0];
|
|
|
|
msg->msgid = MAVLINK_MSG_ID_GLOBAL_POSITION_INT;
|
|
|
|
|
|
|
|
p->lat = lat; // int32_t:Latitude, expressed as * 1E7
|
|
|
|
p->lon = lon; // int32_t:Longitude, expressed as * 1E7
|
|
|
|
p->alt = alt; // int32_t:Altitude in meters, expressed as * 1000 (millimeters)
|
|
|
|
p->vx = vx; // int16_t:Ground X Speed (Latitude), expressed as m/s * 100
|
|
|
|
p->vy = vy; // int16_t:Ground Y Speed (Longitude), expressed as m/s * 100
|
|
|
|
p->vz = vz; // int16_t:Ground Z Speed (Altitude), expressed as m/s * 100
|
|
|
|
|
|
|
|
return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Pack a global_position_int message
|
|
|
|
* @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 lat Latitude, expressed as * 1E7
|
|
|
|
* @param lon Longitude, expressed as * 1E7
|
|
|
|
* @param alt Altitude in meters, expressed as * 1000 (millimeters)
|
|
|
|
* @param vx Ground X Speed (Latitude), expressed as m/s * 100
|
|
|
|
* @param vy Ground Y Speed (Longitude), expressed as m/s * 100
|
|
|
|
* @param vz Ground Z Speed (Altitude), expressed as m/s * 100
|
|
|
|
* @return length of the message in bytes (excluding serial stream start sign)
|
|
|
|
*/
|
|
|
|
static inline uint16_t mavlink_msg_global_position_int_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, int32_t lat, int32_t lon, int32_t alt, int16_t vx, int16_t vy, int16_t vz)
|
|
|
|
{
|
|
|
|
mavlink_global_position_int_t *p = (mavlink_global_position_int_t *)&msg->payload[0];
|
|
|
|
msg->msgid = MAVLINK_MSG_ID_GLOBAL_POSITION_INT;
|
|
|
|
|
|
|
|
p->lat = lat; // int32_t:Latitude, expressed as * 1E7
|
|
|
|
p->lon = lon; // int32_t:Longitude, expressed as * 1E7
|
|
|
|
p->alt = alt; // int32_t:Altitude in meters, expressed as * 1000 (millimeters)
|
|
|
|
p->vx = vx; // int16_t:Ground X Speed (Latitude), expressed as m/s * 100
|
|
|
|
p->vy = vy; // int16_t:Ground Y Speed (Longitude), expressed as m/s * 100
|
|
|
|
p->vz = vz; // int16_t:Ground Z Speed (Altitude), expressed as m/s * 100
|
|
|
|
|
|
|
|
return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Encode a global_position_int 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 global_position_int C-struct to read the message contents from
|
|
|
|
*/
|
|
|
|
static inline uint16_t mavlink_msg_global_position_int_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_global_position_int_t* global_position_int)
|
|
|
|
{
|
|
|
|
return mavlink_msg_global_position_int_pack(system_id, component_id, msg, global_position_int->lat, global_position_int->lon, global_position_int->alt, global_position_int->vx, global_position_int->vy, global_position_int->vz);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Send a global_position_int message
|
|
|
|
* @param chan MAVLink channel to send the message
|
|
|
|
*
|
|
|
|
* @param lat Latitude, expressed as * 1E7
|
|
|
|
* @param lon Longitude, expressed as * 1E7
|
|
|
|
* @param alt Altitude in meters, expressed as * 1000 (millimeters)
|
|
|
|
* @param vx Ground X Speed (Latitude), expressed as m/s * 100
|
|
|
|
* @param vy Ground Y Speed (Longitude), expressed as m/s * 100
|
|
|
|
* @param vz Ground Z Speed (Altitude), expressed as m/s * 100
|
|
|
|
*/
|
|
|
|
#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
|
|
|
|
static inline void mavlink_msg_global_position_int_send(mavlink_channel_t chan, int32_t lat, int32_t lon, int32_t alt, int16_t vx, int16_t vy, int16_t vz)
|
|
|
|
{
|
|
|
|
mavlink_message_t msg;
|
|
|
|
uint16_t checksum;
|
|
|
|
mavlink_global_position_int_t *p = (mavlink_global_position_int_t *)&msg.payload[0];
|
|
|
|
|
|
|
|
p->lat = lat; // int32_t:Latitude, expressed as * 1E7
|
|
|
|
p->lon = lon; // int32_t:Longitude, expressed as * 1E7
|
|
|
|
p->alt = alt; // int32_t:Altitude in meters, expressed as * 1000 (millimeters)
|
|
|
|
p->vx = vx; // int16_t:Ground X Speed (Latitude), expressed as m/s * 100
|
|
|
|
p->vy = vy; // int16_t:Ground Y Speed (Longitude), expressed as m/s * 100
|
|
|
|
p->vz = vz; // int16_t:Ground Z Speed (Altitude), expressed as m/s * 100
|
|
|
|
|
|
|
|
msg.STX = MAVLINK_STX;
|
|
|
|
msg.len = MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN;
|
|
|
|
msg.msgid = MAVLINK_MSG_ID_GLOBAL_POSITION_INT;
|
|
|
|
msg.sysid = mavlink_system.sysid;
|
|
|
|
msg.compid = mavlink_system.compid;
|
|
|
|
msg.seq = mavlink_get_channel_status(chan)->current_tx_seq;
|
|
|
|
mavlink_get_channel_status(chan)->current_tx_seq = msg.seq + 1;
|
|
|
|
checksum = crc_calculate_msg(&msg, msg.len + MAVLINK_CORE_HEADER_LEN);
|
|
|
|
msg.ck_a = (uint8_t)(checksum & 0xFF); ///< Low byte
|
|
|
|
msg.ck_b = (uint8_t)(checksum >> 8); ///< High byte
|
|
|
|
|
|
|
|
mavlink_send_msg(chan, &msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS_SMALL
|
|
|
|
static inline void mavlink_msg_global_position_int_send(mavlink_channel_t chan, int32_t lat, int32_t lon, int32_t alt, int16_t vx, int16_t vy, int16_t vz)
|
|
|
|
{
|
|
|
|
mavlink_header_t hdr;
|
|
|
|
mavlink_global_position_int_t payload;
|
|
|
|
uint16_t checksum;
|
|
|
|
mavlink_global_position_int_t *p = &payload;
|
|
|
|
|
|
|
|
p->lat = lat; // int32_t:Latitude, expressed as * 1E7
|
|
|
|
p->lon = lon; // int32_t:Longitude, expressed as * 1E7
|
|
|
|
p->alt = alt; // int32_t:Altitude in meters, expressed as * 1000 (millimeters)
|
|
|
|
p->vx = vx; // int16_t:Ground X Speed (Latitude), expressed as m/s * 100
|
|
|
|
p->vy = vy; // int16_t:Ground Y Speed (Longitude), expressed as m/s * 100
|
|
|
|
p->vz = vz; // int16_t:Ground Z Speed (Altitude), expressed as m/s * 100
|
|
|
|
|
|
|
|
hdr.STX = MAVLINK_STX;
|
|
|
|
hdr.len = MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN;
|
|
|
|
hdr.msgid = MAVLINK_MSG_ID_GLOBAL_POSITION_INT;
|
|
|
|
hdr.sysid = mavlink_system.sysid;
|
|
|
|
hdr.compid = mavlink_system.compid;
|
|
|
|
hdr.seq = mavlink_get_channel_status(chan)->current_tx_seq;
|
|
|
|
mavlink_get_channel_status(chan)->current_tx_seq = hdr.seq + 1;
|
|
|
|
mavlink_send_mem(chan, (uint8_t *)&hdr.STX, MAVLINK_NUM_HEADER_BYTES );
|
|
|
|
|
|
|
|
crc_init(&checksum);
|
|
|
|
checksum = crc_calculate_mem((uint8_t *)&hdr.len, &checksum, MAVLINK_CORE_HEADER_LEN);
|
|
|
|
checksum = crc_calculate_mem((uint8_t *)&payload, &checksum, hdr.len );
|
|
|
|
hdr.ck_a = (uint8_t)(checksum & 0xFF); ///< Low byte
|
|
|
|
hdr.ck_b = (uint8_t)(checksum >> 8); ///< High byte
|
|
|
|
|
|
|
|
mavlink_send_mem(chan, (uint8_t *)&payload, hdr.len);
|
|
|
|
mavlink_send_mem(chan, (uint8_t *)&hdr.ck_a, MAVLINK_NUM_CHECKSUM_BYTES);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// MESSAGE GLOBAL_POSITION_INT UNPACKING
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get field lat from global_position_int message
|
|
|
|
*
|
|
|
|
* @return Latitude, expressed as * 1E7
|
|
|
|
*/
|
|
|
|
static inline int32_t mavlink_msg_global_position_int_get_lat(const mavlink_message_t* msg)
|
|
|
|
{
|
|
|
|
mavlink_global_position_int_t *p = (mavlink_global_position_int_t *)&msg->payload[0];
|
|
|
|
return (int32_t)(p->lat);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get field lon from global_position_int message
|
|
|
|
*
|
|
|
|
* @return Longitude, expressed as * 1E7
|
|
|
|
*/
|
|
|
|
static inline int32_t mavlink_msg_global_position_int_get_lon(const mavlink_message_t* msg)
|
|
|
|
{
|
|
|
|
mavlink_global_position_int_t *p = (mavlink_global_position_int_t *)&msg->payload[0];
|
|
|
|
return (int32_t)(p->lon);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get field alt from global_position_int message
|
|
|
|
*
|
|
|
|
* @return Altitude in meters, expressed as * 1000 (millimeters)
|
|
|
|
*/
|
|
|
|
static inline int32_t mavlink_msg_global_position_int_get_alt(const mavlink_message_t* msg)
|
|
|
|
{
|
|
|
|
mavlink_global_position_int_t *p = (mavlink_global_position_int_t *)&msg->payload[0];
|
|
|
|
return (int32_t)(p->alt);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get field vx from global_position_int message
|
|
|
|
*
|
|
|
|
* @return Ground X Speed (Latitude), expressed as m/s * 100
|
|
|
|
*/
|
|
|
|
static inline int16_t mavlink_msg_global_position_int_get_vx(const mavlink_message_t* msg)
|
|
|
|
{
|
|
|
|
mavlink_global_position_int_t *p = (mavlink_global_position_int_t *)&msg->payload[0];
|
|
|
|
return (int16_t)(p->vx);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get field vy from global_position_int message
|
|
|
|
*
|
|
|
|
* @return Ground Y Speed (Longitude), expressed as m/s * 100
|
|
|
|
*/
|
|
|
|
static inline int16_t mavlink_msg_global_position_int_get_vy(const mavlink_message_t* msg)
|
|
|
|
{
|
|
|
|
mavlink_global_position_int_t *p = (mavlink_global_position_int_t *)&msg->payload[0];
|
|
|
|
return (int16_t)(p->vy);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get field vz from global_position_int message
|
|
|
|
*
|
|
|
|
* @return Ground Z Speed (Altitude), expressed as m/s * 100
|
|
|
|
*/
|
|
|
|
static inline int16_t mavlink_msg_global_position_int_get_vz(const mavlink_message_t* msg)
|
|
|
|
{
|
|
|
|
mavlink_global_position_int_t *p = (mavlink_global_position_int_t *)&msg->payload[0];
|
|
|
|
return (int16_t)(p->vz);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Decode a global_position_int message into a struct
|
|
|
|
*
|
|
|
|
* @param msg The message to decode
|
|
|
|
* @param global_position_int C-struct to decode the message contents into
|
|
|
|
*/
|
|
|
|
static inline void mavlink_msg_global_position_int_decode(const mavlink_message_t* msg, mavlink_global_position_int_t* global_position_int)
|
|
|
|
{
|
|
|
|
memcpy( global_position_int, msg->payload, sizeof(mavlink_global_position_int_t));
|
|
|
|
}
|