2016-10-05 22:52:07 +00:00
# pragma once
2014-08-10 21:01:07 +02:00
// MESSAGE AUTOPILOT_VERSION PACKING
# define MAVLINK_MSG_ID_AUTOPILOT_VERSION 148
2020-09-20 10:12:24 +08:00
2016-08-02 12:16:40 +00:00
typedef struct __mavlink_autopilot_version_t {
2020-09-20 10:12:24 +08:00
uint32_t capabilities ; /*< Bitmap of capabilities*/
2018-06-03 17:07:10 +08:00
uint32_t flight_sw_version ; /*< Firmware version number*/
uint32_t middleware_sw_version ; /*< Middleware version number*/
uint32_t os_sw_version ; /*< Operating system version number*/
uint32_t board_version ; /*< HW / board version (last 8 bytes should be silicon ID, if any)*/
2020-09-20 10:12:24 +08:00
uint32_t uid ; /*< UID if provided by hardware (see uid2)*/
2018-06-03 17:07:10 +08:00
uint16_t vendor_id ; /*< ID of the board vendor*/
uint16_t product_id ; /*< ID of the product*/
uint8_t flight_custom_version [ 8 ] ; /*< Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.*/
uint8_t middleware_custom_version [ 8 ] ; /*< Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.*/
uint8_t os_custom_version [ 8 ] ; /*< Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.*/
uint8_t uid2 [ 18 ] ; /*< UID if provided by hardware (supersedes the uid field. If this is non-zero, use this field, otherwise use uid)*/
2020-09-20 10:12:24 +08:00
} mavlink_autopilot_version_t ;
2014-08-10 21:01:07 +02:00
2020-09-20 10:12:24 +08:00
# define MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN 70
# define MAVLINK_MSG_ID_AUTOPILOT_VERSION_MIN_LEN 52
# define MAVLINK_MSG_ID_148_LEN 70
# define MAVLINK_MSG_ID_148_MIN_LEN 52
2014-08-10 21:01:07 +02:00
2020-09-20 10:12:24 +08:00
# define MAVLINK_MSG_ID_AUTOPILOT_VERSION_CRC 77
# define MAVLINK_MSG_ID_148_CRC 77
2014-08-10 21:01:07 +02:00
2014-12-29 11:10:46 +00:00
# define MAVLINK_MSG_AUTOPILOT_VERSION_FIELD_FLIGHT_CUSTOM_VERSION_LEN 8
# define MAVLINK_MSG_AUTOPILOT_VERSION_FIELD_MIDDLEWARE_CUSTOM_VERSION_LEN 8
# define MAVLINK_MSG_AUTOPILOT_VERSION_FIELD_OS_CUSTOM_VERSION_LEN 8
2018-04-29 09:48:09 +08:00
# define MAVLINK_MSG_AUTOPILOT_VERSION_FIELD_UID2_LEN 18
2014-08-10 21:01:07 +02:00
2016-05-16 08:33:08 +00:00
# if MAVLINK_COMMAND_24BIT
2014-08-10 21:01:07 +02:00
# define MAVLINK_MESSAGE_INFO_AUTOPILOT_VERSION { \
2016-10-10 10:40:57 +00:00
148, \
"AUTOPILOT_VERSION", \
2018-04-29 09:48:09 +08:00
12, \
2020-09-20 10:12:24 +08:00
{ { "capabilities", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_autopilot_version_t, capabilities) }, \
{ "flight_sw_version", NULL, MAVLINK_TYPE_UINT32_T, 0, 4, offsetof(mavlink_autopilot_version_t, flight_sw_version) }, \
{ "middleware_sw_version", NULL, MAVLINK_TYPE_UINT32_T, 0, 8, offsetof(mavlink_autopilot_version_t, middleware_sw_version) }, \
{ "os_sw_version", NULL, MAVLINK_TYPE_UINT32_T, 0, 12, offsetof(mavlink_autopilot_version_t, os_sw_version) }, \
{ "board_version", NULL, MAVLINK_TYPE_UINT32_T, 0, 16, offsetof(mavlink_autopilot_version_t, board_version) }, \
{ "flight_custom_version", NULL, MAVLINK_TYPE_UINT8_T, 8, 28, offsetof(mavlink_autopilot_version_t, flight_custom_version) }, \
{ "middleware_custom_version", NULL, MAVLINK_TYPE_UINT8_T, 8, 36, offsetof(mavlink_autopilot_version_t, middleware_custom_version) }, \
{ "os_custom_version", NULL, MAVLINK_TYPE_UINT8_T, 8, 44, offsetof(mavlink_autopilot_version_t, os_custom_version) }, \
{ "vendor_id", NULL, MAVLINK_TYPE_UINT16_T, 0, 24, offsetof(mavlink_autopilot_version_t, vendor_id) }, \
{ "product_id", NULL, MAVLINK_TYPE_UINT16_T, 0, 26, offsetof(mavlink_autopilot_version_t, product_id) }, \
{ "uid", NULL, MAVLINK_TYPE_UINT32_T, 0, 20, offsetof(mavlink_autopilot_version_t, uid) }, \
{ "uid2", NULL, MAVLINK_TYPE_UINT8_T, 18, 52, offsetof(mavlink_autopilot_version_t, uid2) }, \
2014-08-10 21:01:07 +02:00
} \
}
2016-05-16 08:33:08 +00:00
# else
# define MAVLINK_MESSAGE_INFO_AUTOPILOT_VERSION { \
2016-10-10 10:40:57 +00:00
"AUTOPILOT_VERSION", \
2018-04-29 09:48:09 +08:00
12, \
2020-09-20 10:12:24 +08:00
{ { "capabilities", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_autopilot_version_t, capabilities) }, \
{ "flight_sw_version", NULL, MAVLINK_TYPE_UINT32_T, 0, 4, offsetof(mavlink_autopilot_version_t, flight_sw_version) }, \
{ "middleware_sw_version", NULL, MAVLINK_TYPE_UINT32_T, 0, 8, offsetof(mavlink_autopilot_version_t, middleware_sw_version) }, \
{ "os_sw_version", NULL, MAVLINK_TYPE_UINT32_T, 0, 12, offsetof(mavlink_autopilot_version_t, os_sw_version) }, \
{ "board_version", NULL, MAVLINK_TYPE_UINT32_T, 0, 16, offsetof(mavlink_autopilot_version_t, board_version) }, \
{ "flight_custom_version", NULL, MAVLINK_TYPE_UINT8_T, 8, 28, offsetof(mavlink_autopilot_version_t, flight_custom_version) }, \
{ "middleware_custom_version", NULL, MAVLINK_TYPE_UINT8_T, 8, 36, offsetof(mavlink_autopilot_version_t, middleware_custom_version) }, \
{ "os_custom_version", NULL, MAVLINK_TYPE_UINT8_T, 8, 44, offsetof(mavlink_autopilot_version_t, os_custom_version) }, \
{ "vendor_id", NULL, MAVLINK_TYPE_UINT16_T, 0, 24, offsetof(mavlink_autopilot_version_t, vendor_id) }, \
{ "product_id", NULL, MAVLINK_TYPE_UINT16_T, 0, 26, offsetof(mavlink_autopilot_version_t, product_id) }, \
{ "uid", NULL, MAVLINK_TYPE_UINT32_T, 0, 20, offsetof(mavlink_autopilot_version_t, uid) }, \
{ "uid2", NULL, MAVLINK_TYPE_UINT8_T, 18, 52, offsetof(mavlink_autopilot_version_t, uid2) }, \
2016-05-16 08:33:08 +00:00
} \
}
# endif
2014-08-10 21:01:07 +02:00
/**
* @brief Pack a autopilot_version 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
*
2018-08-07 10:12:17 +08:00
* @param capabilities Bitmap of capabilities
2018-06-03 17:07:10 +08:00
* @param flight_sw_version Firmware version number
* @param middleware_sw_version Middleware version number
* @param os_sw_version Operating system version number
* @param board_version HW / board version (last 8 bytes should be silicon ID, if any)
* @param flight_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
* @param middleware_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
* @param os_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
* @param vendor_id ID of the board vendor
* @param product_id ID of the product
* @param uid UID if provided by hardware (see uid2)
* @param uid2 UID if provided by hardware (supersedes the uid field. If this is non-zero, use this field, otherwise use uid)
2014-08-10 21:01:07 +02:00
* @return length of the message in bytes (excluding serial stream start sign)
*/
2020-09-20 10:12:24 +08:00
static inline uint16_t mavlink_msg_autopilot_version_pack ( uint16_t system_id , uint8_t component_id , mavlink_message_t * msg ,
uint32_t capabilities , uint32_t flight_sw_version , uint32_t middleware_sw_version , uint32_t os_sw_version , uint32_t board_version , const uint8_t * flight_custom_version , const uint8_t * middleware_custom_version , const uint8_t * os_custom_version , uint16_t vendor_id , uint16_t product_id , uint32_t uid , const uint8_t * uid2 )
2014-08-10 21:01:07 +02:00
{
# if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
2016-10-10 10:40:57 +00:00
char buf [ MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN ] ;
2020-09-20 10:12:24 +08:00
_mav_put_uint32_t ( buf , 0 , capabilities ) ;
_mav_put_uint32_t ( buf , 4 , flight_sw_version ) ;
_mav_put_uint32_t ( buf , 8 , middleware_sw_version ) ;
_mav_put_uint32_t ( buf , 12 , os_sw_version ) ;
_mav_put_uint32_t ( buf , 16 , board_version ) ;
_mav_put_uint32_t ( buf , 20 , uid ) ;
_mav_put_uint16_t ( buf , 24 , vendor_id ) ;
_mav_put_uint16_t ( buf , 26 , product_id ) ;
_mav_put_uint8_t_array ( buf , 28 , flight_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 36 , middleware_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 44 , os_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 52 , uid2 , 18 ) ;
2014-08-10 21:01:07 +02:00
memcpy ( _MAV_PAYLOAD_NON_CONST ( msg ) , buf , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN ) ;
# else
2016-10-10 10:40:57 +00:00
mavlink_autopilot_version_t packet ;
packet . capabilities = capabilities ;
packet . flight_sw_version = flight_sw_version ;
packet . middleware_sw_version = middleware_sw_version ;
packet . os_sw_version = os_sw_version ;
packet . board_version = board_version ;
2020-09-20 10:12:24 +08:00
packet . uid = uid ;
2016-10-10 10:40:57 +00:00
packet . vendor_id = vendor_id ;
packet . product_id = product_id ;
mav_array_memcpy ( packet . flight_custom_version , flight_custom_version , sizeof ( uint8_t ) * 8 ) ;
mav_array_memcpy ( packet . middleware_custom_version , middleware_custom_version , sizeof ( uint8_t ) * 8 ) ;
mav_array_memcpy ( packet . os_custom_version , os_custom_version , sizeof ( uint8_t ) * 8 ) ;
2018-04-29 09:48:09 +08:00
mav_array_memcpy ( packet . uid2 , uid2 , sizeof ( uint8_t ) * 18 ) ;
2014-08-10 21:01:07 +02:00
memcpy ( _MAV_PAYLOAD_NON_CONST ( msg ) , & packet , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN ) ;
# endif
2016-10-10 10:40:57 +00:00
msg - > msgid = MAVLINK_MSG_ID_AUTOPILOT_VERSION ;
2016-05-16 08:33:08 +00:00
return mavlink_finalize_message ( msg , system_id , component_id , MAVLINK_MSG_ID_AUTOPILOT_VERSION_MIN_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_CRC ) ;
2014-08-10 21:01:07 +02:00
}
/**
* @brief Pack a autopilot_version 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 will be sent over
* @param msg The MAVLink message to compress the data into
2018-08-07 10:12:17 +08:00
* @param capabilities Bitmap of capabilities
2018-06-03 17:07:10 +08:00
* @param flight_sw_version Firmware version number
* @param middleware_sw_version Middleware version number
* @param os_sw_version Operating system version number
* @param board_version HW / board version (last 8 bytes should be silicon ID, if any)
* @param flight_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
* @param middleware_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
* @param os_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
* @param vendor_id ID of the board vendor
* @param product_id ID of the product
* @param uid UID if provided by hardware (see uid2)
* @param uid2 UID if provided by hardware (supersedes the uid field. If this is non-zero, use this field, otherwise use uid)
2014-08-10 21:01:07 +02:00
* @return length of the message in bytes (excluding serial stream start sign)
*/
2020-09-20 10:12:24 +08:00
static inline uint16_t mavlink_msg_autopilot_version_pack_chan ( uint16_t system_id , uint8_t component_id , uint8_t chan ,
2016-10-10 10:40:57 +00:00
mavlink_message_t * msg ,
2020-09-20 10:12:24 +08:00
uint32_t capabilities , uint32_t flight_sw_version , uint32_t middleware_sw_version , uint32_t os_sw_version , uint32_t board_version , const uint8_t * flight_custom_version , const uint8_t * middleware_custom_version , const uint8_t * os_custom_version , uint16_t vendor_id , uint16_t product_id , uint32_t uid , const uint8_t * uid2 )
2014-08-10 21:01:07 +02:00
{
# if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
2016-10-10 10:40:57 +00:00
char buf [ MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN ] ;
2020-09-20 10:12:24 +08:00
_mav_put_uint32_t ( buf , 0 , capabilities ) ;
_mav_put_uint32_t ( buf , 4 , flight_sw_version ) ;
_mav_put_uint32_t ( buf , 8 , middleware_sw_version ) ;
_mav_put_uint32_t ( buf , 12 , os_sw_version ) ;
_mav_put_uint32_t ( buf , 16 , board_version ) ;
_mav_put_uint32_t ( buf , 20 , uid ) ;
_mav_put_uint16_t ( buf , 24 , vendor_id ) ;
_mav_put_uint16_t ( buf , 26 , product_id ) ;
_mav_put_uint8_t_array ( buf , 28 , flight_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 36 , middleware_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 44 , os_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 52 , uid2 , 18 ) ;
2014-08-10 21:01:07 +02:00
memcpy ( _MAV_PAYLOAD_NON_CONST ( msg ) , buf , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN ) ;
# else
2016-10-10 10:40:57 +00:00
mavlink_autopilot_version_t packet ;
packet . capabilities = capabilities ;
packet . flight_sw_version = flight_sw_version ;
packet . middleware_sw_version = middleware_sw_version ;
packet . os_sw_version = os_sw_version ;
packet . board_version = board_version ;
2020-09-20 10:12:24 +08:00
packet . uid = uid ;
2016-10-10 10:40:57 +00:00
packet . vendor_id = vendor_id ;
packet . product_id = product_id ;
mav_array_memcpy ( packet . flight_custom_version , flight_custom_version , sizeof ( uint8_t ) * 8 ) ;
mav_array_memcpy ( packet . middleware_custom_version , middleware_custom_version , sizeof ( uint8_t ) * 8 ) ;
mav_array_memcpy ( packet . os_custom_version , os_custom_version , sizeof ( uint8_t ) * 8 ) ;
2018-04-29 09:48:09 +08:00
mav_array_memcpy ( packet . uid2 , uid2 , sizeof ( uint8_t ) * 18 ) ;
2014-08-10 21:01:07 +02:00
memcpy ( _MAV_PAYLOAD_NON_CONST ( msg ) , & packet , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN ) ;
# endif
2016-10-10 10:40:57 +00:00
msg - > msgid = MAVLINK_MSG_ID_AUTOPILOT_VERSION ;
2016-05-16 08:33:08 +00:00
return mavlink_finalize_message_chan ( msg , system_id , component_id , chan , MAVLINK_MSG_ID_AUTOPILOT_VERSION_MIN_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_CRC ) ;
2014-08-10 21:01:07 +02:00
}
/**
* @brief Encode a autopilot_version struct
*
* @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 autopilot_version C-struct to read the message contents from
*/
2020-09-20 10:12:24 +08:00
static inline uint16_t mavlink_msg_autopilot_version_encode ( uint16_t system_id , uint8_t component_id , mavlink_message_t * msg , const mavlink_autopilot_version_t * autopilot_version )
2014-08-10 21:01:07 +02:00
{
2018-04-29 09:48:09 +08:00
return mavlink_msg_autopilot_version_pack ( system_id , component_id , msg , autopilot_version - > capabilities , autopilot_version - > flight_sw_version , autopilot_version - > middleware_sw_version , autopilot_version - > os_sw_version , autopilot_version - > board_version , autopilot_version - > flight_custom_version , autopilot_version - > middleware_custom_version , autopilot_version - > os_custom_version , autopilot_version - > vendor_id , autopilot_version - > product_id , autopilot_version - > uid , autopilot_version - > uid2 ) ;
2014-08-10 21:01:07 +02:00
}
/**
* @brief Encode a autopilot_version struct 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 will be sent over
* @param msg The MAVLink message to compress the data into
* @param autopilot_version C-struct to read the message contents from
*/
2020-09-20 10:12:24 +08:00
static inline uint16_t mavlink_msg_autopilot_version_encode_chan ( uint16_t system_id , uint8_t component_id , uint8_t chan , mavlink_message_t * msg , const mavlink_autopilot_version_t * autopilot_version )
2014-08-10 21:01:07 +02:00
{
2018-04-29 09:48:09 +08:00
return mavlink_msg_autopilot_version_pack_chan ( system_id , component_id , chan , msg , autopilot_version - > capabilities , autopilot_version - > flight_sw_version , autopilot_version - > middleware_sw_version , autopilot_version - > os_sw_version , autopilot_version - > board_version , autopilot_version - > flight_custom_version , autopilot_version - > middleware_custom_version , autopilot_version - > os_custom_version , autopilot_version - > vendor_id , autopilot_version - > product_id , autopilot_version - > uid , autopilot_version - > uid2 ) ;
2014-08-10 21:01:07 +02:00
}
/**
* @brief Send a autopilot_version message
* @param chan MAVLink channel to send the message
*
2018-08-07 10:12:17 +08:00
* @param capabilities Bitmap of capabilities
2018-06-03 17:07:10 +08:00
* @param flight_sw_version Firmware version number
* @param middleware_sw_version Middleware version number
* @param os_sw_version Operating system version number
* @param board_version HW / board version (last 8 bytes should be silicon ID, if any)
* @param flight_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
* @param middleware_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
* @param os_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
* @param vendor_id ID of the board vendor
* @param product_id ID of the product
* @param uid UID if provided by hardware (see uid2)
* @param uid2 UID if provided by hardware (supersedes the uid field. If this is non-zero, use this field, otherwise use uid)
2014-08-10 21:01:07 +02:00
*/
# ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
2020-09-20 10:12:24 +08:00
static inline void mavlink_msg_autopilot_version_send ( mavlink_channel_t chan , uint32_t capabilities , uint32_t flight_sw_version , uint32_t middleware_sw_version , uint32_t os_sw_version , uint32_t board_version , const uint8_t * flight_custom_version , const uint8_t * middleware_custom_version , const uint8_t * os_custom_version , uint16_t vendor_id , uint16_t product_id , uint32_t uid , const uint8_t * uid2 )
2014-08-10 21:01:07 +02:00
{
# if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
2016-10-10 10:40:57 +00:00
char buf [ MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN ] ;
2020-09-20 10:12:24 +08:00
_mav_put_uint32_t ( buf , 0 , capabilities ) ;
_mav_put_uint32_t ( buf , 4 , flight_sw_version ) ;
_mav_put_uint32_t ( buf , 8 , middleware_sw_version ) ;
_mav_put_uint32_t ( buf , 12 , os_sw_version ) ;
_mav_put_uint32_t ( buf , 16 , board_version ) ;
_mav_put_uint32_t ( buf , 20 , uid ) ;
_mav_put_uint16_t ( buf , 24 , vendor_id ) ;
_mav_put_uint16_t ( buf , 26 , product_id ) ;
_mav_put_uint8_t_array ( buf , 28 , flight_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 36 , middleware_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 44 , os_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 52 , uid2 , 18 ) ;
2016-05-16 08:33:08 +00:00
_mav_finalize_message_chan_send ( chan , MAVLINK_MSG_ID_AUTOPILOT_VERSION , buf , MAVLINK_MSG_ID_AUTOPILOT_VERSION_MIN_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_CRC ) ;
2014-08-10 21:01:07 +02:00
# else
2016-10-10 10:40:57 +00:00
mavlink_autopilot_version_t packet ;
packet . capabilities = capabilities ;
packet . flight_sw_version = flight_sw_version ;
packet . middleware_sw_version = middleware_sw_version ;
packet . os_sw_version = os_sw_version ;
packet . board_version = board_version ;
2020-09-20 10:12:24 +08:00
packet . uid = uid ;
2016-10-10 10:40:57 +00:00
packet . vendor_id = vendor_id ;
packet . product_id = product_id ;
mav_array_memcpy ( packet . flight_custom_version , flight_custom_version , sizeof ( uint8_t ) * 8 ) ;
mav_array_memcpy ( packet . middleware_custom_version , middleware_custom_version , sizeof ( uint8_t ) * 8 ) ;
mav_array_memcpy ( packet . os_custom_version , os_custom_version , sizeof ( uint8_t ) * 8 ) ;
2018-04-29 09:48:09 +08:00
mav_array_memcpy ( packet . uid2 , uid2 , sizeof ( uint8_t ) * 18 ) ;
2016-05-16 08:33:08 +00:00
_mav_finalize_message_chan_send ( chan , MAVLINK_MSG_ID_AUTOPILOT_VERSION , ( const char * ) & packet , MAVLINK_MSG_ID_AUTOPILOT_VERSION_MIN_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_CRC ) ;
2014-08-10 21:01:07 +02:00
# endif
2016-05-16 08:33:08 +00:00
}
/**
* @brief Send a autopilot_version message
* @param chan MAVLink channel to send the message
* @param struct The MAVLink struct to serialize
*/
static inline void mavlink_msg_autopilot_version_send_struct ( mavlink_channel_t chan , const mavlink_autopilot_version_t * autopilot_version )
{
# if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
2018-04-29 09:48:09 +08:00
mavlink_msg_autopilot_version_send ( chan , autopilot_version - > capabilities , autopilot_version - > flight_sw_version , autopilot_version - > middleware_sw_version , autopilot_version - > os_sw_version , autopilot_version - > board_version , autopilot_version - > flight_custom_version , autopilot_version - > middleware_custom_version , autopilot_version - > os_custom_version , autopilot_version - > vendor_id , autopilot_version - > product_id , autopilot_version - > uid , autopilot_version - > uid2 ) ;
2016-05-16 08:33:08 +00:00
# else
_mav_finalize_message_chan_send ( chan , MAVLINK_MSG_ID_AUTOPILOT_VERSION , ( const char * ) autopilot_version , MAVLINK_MSG_ID_AUTOPILOT_VERSION_MIN_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_CRC ) ;
2014-08-10 21:01:07 +02:00
# endif
}
# if MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN <= MAVLINK_MAX_PAYLOAD_LEN
/*
This varient of _send() can be used to save stack space by re-using
memory from the receive buffer. The caller provides a
mavlink_message_t which is the size of a full mavlink message. This
is usually the receive buffer for the channel, and allows a reply to an
incoming message with minimum stack space usage.
*/
2020-09-20 10:12:24 +08:00
static inline void mavlink_msg_autopilot_version_send_buf ( mavlink_message_t * msgbuf , mavlink_channel_t chan , uint32_t capabilities , uint32_t flight_sw_version , uint32_t middleware_sw_version , uint32_t os_sw_version , uint32_t board_version , const uint8_t * flight_custom_version , const uint8_t * middleware_custom_version , const uint8_t * os_custom_version , uint16_t vendor_id , uint16_t product_id , uint32_t uid , const uint8_t * uid2 )
2014-08-10 21:01:07 +02:00
{
# if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
2016-10-10 10:40:57 +00:00
char * buf = ( char * ) msgbuf ;
2020-09-20 10:12:24 +08:00
_mav_put_uint32_t ( buf , 0 , capabilities ) ;
_mav_put_uint32_t ( buf , 4 , flight_sw_version ) ;
_mav_put_uint32_t ( buf , 8 , middleware_sw_version ) ;
_mav_put_uint32_t ( buf , 12 , os_sw_version ) ;
_mav_put_uint32_t ( buf , 16 , board_version ) ;
_mav_put_uint32_t ( buf , 20 , uid ) ;
_mav_put_uint16_t ( buf , 24 , vendor_id ) ;
_mav_put_uint16_t ( buf , 26 , product_id ) ;
_mav_put_uint8_t_array ( buf , 28 , flight_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 36 , middleware_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 44 , os_custom_version , 8 ) ;
_mav_put_uint8_t_array ( buf , 52 , uid2 , 18 ) ;
2016-05-16 08:33:08 +00:00
_mav_finalize_message_chan_send ( chan , MAVLINK_MSG_ID_AUTOPILOT_VERSION , buf , MAVLINK_MSG_ID_AUTOPILOT_VERSION_MIN_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_CRC ) ;
2014-08-10 21:01:07 +02:00
# else
2016-10-10 10:40:57 +00:00
mavlink_autopilot_version_t * packet = ( mavlink_autopilot_version_t * ) msgbuf ;
packet - > capabilities = capabilities ;
packet - > flight_sw_version = flight_sw_version ;
packet - > middleware_sw_version = middleware_sw_version ;
packet - > os_sw_version = os_sw_version ;
packet - > board_version = board_version ;
2020-09-20 10:12:24 +08:00
packet - > uid = uid ;
2016-10-10 10:40:57 +00:00
packet - > vendor_id = vendor_id ;
packet - > product_id = product_id ;
mav_array_memcpy ( packet - > flight_custom_version , flight_custom_version , sizeof ( uint8_t ) * 8 ) ;
mav_array_memcpy ( packet - > middleware_custom_version , middleware_custom_version , sizeof ( uint8_t ) * 8 ) ;
mav_array_memcpy ( packet - > os_custom_version , os_custom_version , sizeof ( uint8_t ) * 8 ) ;
2018-04-29 09:48:09 +08:00
mav_array_memcpy ( packet - > uid2 , uid2 , sizeof ( uint8_t ) * 18 ) ;
2016-05-16 08:33:08 +00:00
_mav_finalize_message_chan_send ( chan , MAVLINK_MSG_ID_AUTOPILOT_VERSION , ( const char * ) packet , MAVLINK_MSG_ID_AUTOPILOT_VERSION_MIN_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN , MAVLINK_MSG_ID_AUTOPILOT_VERSION_CRC ) ;
2014-08-10 21:01:07 +02:00
# endif
}
# endif
# endif
// MESSAGE AUTOPILOT_VERSION UNPACKING
/**
* @brief Get field capabilities from autopilot_version message
*
2018-08-07 10:12:17 +08:00
* @return Bitmap of capabilities
2014-08-10 21:01:07 +02:00
*/
2020-09-20 10:12:24 +08:00
static inline uint32_t mavlink_msg_autopilot_version_get_capabilities ( const mavlink_message_t * msg )
2014-08-10 21:01:07 +02:00
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint32_t ( msg , 0 ) ;
2014-08-10 21:01:07 +02:00
}
/**
2014-12-29 11:10:46 +00:00
* @brief Get field flight_sw_version from autopilot_version message
2014-08-10 21:01:07 +02:00
*
2018-06-03 17:07:10 +08:00
* @return Firmware version number
2014-08-10 21:01:07 +02:00
*/
2014-12-29 11:10:46 +00:00
static inline uint32_t mavlink_msg_autopilot_version_get_flight_sw_version ( const mavlink_message_t * msg )
2014-08-10 21:01:07 +02:00
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint32_t ( msg , 4 ) ;
2014-08-10 21:01:07 +02:00
}
/**
2014-12-29 11:10:46 +00:00
* @brief Get field middleware_sw_version from autopilot_version message
2014-08-10 21:01:07 +02:00
*
2018-06-03 17:07:10 +08:00
* @return Middleware version number
2014-08-10 21:01:07 +02:00
*/
2014-12-29 11:10:46 +00:00
static inline uint32_t mavlink_msg_autopilot_version_get_middleware_sw_version ( const mavlink_message_t * msg )
2014-08-10 21:01:07 +02:00
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint32_t ( msg , 8 ) ;
2014-12-29 11:10:46 +00:00
}
/**
* @brief Get field os_sw_version from autopilot_version message
*
2018-06-03 17:07:10 +08:00
* @return Operating system version number
2014-12-29 11:10:46 +00:00
*/
static inline uint32_t mavlink_msg_autopilot_version_get_os_sw_version ( const mavlink_message_t * msg )
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint32_t ( msg , 12 ) ;
2014-12-29 11:10:46 +00:00
}
/**
* @brief Get field board_version from autopilot_version message
*
2018-06-03 17:07:10 +08:00
* @return HW / board version (last 8 bytes should be silicon ID, if any)
2014-12-29 11:10:46 +00:00
*/
static inline uint32_t mavlink_msg_autopilot_version_get_board_version ( const mavlink_message_t * msg )
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint32_t ( msg , 16 ) ;
2014-12-29 11:10:46 +00:00
}
/**
* @brief Get field flight_custom_version from autopilot_version message
*
2018-06-03 17:07:10 +08:00
* @return Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
2014-12-29 11:10:46 +00:00
*/
static inline uint16_t mavlink_msg_autopilot_version_get_flight_custom_version ( const mavlink_message_t * msg , uint8_t * flight_custom_version )
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint8_t_array ( msg , flight_custom_version , 8 , 28 ) ;
2014-12-29 11:10:46 +00:00
}
/**
* @brief Get field middleware_custom_version from autopilot_version message
*
2018-06-03 17:07:10 +08:00
* @return Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
2014-12-29 11:10:46 +00:00
*/
static inline uint16_t mavlink_msg_autopilot_version_get_middleware_custom_version ( const mavlink_message_t * msg , uint8_t * middleware_custom_version )
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint8_t_array ( msg , middleware_custom_version , 8 , 36 ) ;
2014-12-29 11:10:46 +00:00
}
/**
* @brief Get field os_custom_version from autopilot_version message
*
2018-06-03 17:07:10 +08:00
* @return Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases.
2014-12-29 11:10:46 +00:00
*/
static inline uint16_t mavlink_msg_autopilot_version_get_os_custom_version ( const mavlink_message_t * msg , uint8_t * os_custom_version )
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint8_t_array ( msg , os_custom_version , 8 , 44 ) ;
2014-12-29 11:10:46 +00:00
}
/**
* @brief Get field vendor_id from autopilot_version message
*
2018-06-03 17:07:10 +08:00
* @return ID of the board vendor
2014-12-29 11:10:46 +00:00
*/
static inline uint16_t mavlink_msg_autopilot_version_get_vendor_id ( const mavlink_message_t * msg )
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint16_t ( msg , 24 ) ;
2014-12-29 11:10:46 +00:00
}
/**
* @brief Get field product_id from autopilot_version message
*
2018-06-03 17:07:10 +08:00
* @return ID of the product
2014-12-29 11:10:46 +00:00
*/
static inline uint16_t mavlink_msg_autopilot_version_get_product_id ( const mavlink_message_t * msg )
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint16_t ( msg , 26 ) ;
2014-12-29 11:10:46 +00:00
}
/**
* @brief Get field uid from autopilot_version message
*
2018-06-03 17:07:10 +08:00
* @return UID if provided by hardware (see uid2)
2014-12-29 11:10:46 +00:00
*/
2020-09-20 10:12:24 +08:00
static inline uint32_t mavlink_msg_autopilot_version_get_uid ( const mavlink_message_t * msg )
2014-12-29 11:10:46 +00:00
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint32_t ( msg , 20 ) ;
2014-08-10 21:01:07 +02:00
}
2018-04-29 09:48:09 +08:00
/**
* @brief Get field uid2 from autopilot_version message
*
2018-06-03 17:07:10 +08:00
* @return UID if provided by hardware (supersedes the uid field. If this is non-zero, use this field, otherwise use uid)
2018-04-29 09:48:09 +08:00
*/
static inline uint16_t mavlink_msg_autopilot_version_get_uid2 ( const mavlink_message_t * msg , uint8_t * uid2 )
{
2020-09-20 10:12:24 +08:00
return _MAV_RETURN_uint8_t_array ( msg , uid2 , 18 , 52 ) ;
2018-04-29 09:48:09 +08:00
}
2014-08-10 21:01:07 +02:00
/**
* @brief Decode a autopilot_version message into a struct
*
* @param msg The message to decode
* @param autopilot_version C-struct to decode the message contents into
*/
static inline void mavlink_msg_autopilot_version_decode ( const mavlink_message_t * msg , mavlink_autopilot_version_t * autopilot_version )
{
2016-05-16 08:33:08 +00:00
# if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
2016-10-10 10:40:57 +00:00
autopilot_version - > capabilities = mavlink_msg_autopilot_version_get_capabilities ( msg ) ;
autopilot_version - > flight_sw_version = mavlink_msg_autopilot_version_get_flight_sw_version ( msg ) ;
autopilot_version - > middleware_sw_version = mavlink_msg_autopilot_version_get_middleware_sw_version ( msg ) ;
autopilot_version - > os_sw_version = mavlink_msg_autopilot_version_get_os_sw_version ( msg ) ;
autopilot_version - > board_version = mavlink_msg_autopilot_version_get_board_version ( msg ) ;
2020-09-20 10:12:24 +08:00
autopilot_version - > uid = mavlink_msg_autopilot_version_get_uid ( msg ) ;
2016-10-10 10:40:57 +00:00
autopilot_version - > vendor_id = mavlink_msg_autopilot_version_get_vendor_id ( msg ) ;
autopilot_version - > product_id = mavlink_msg_autopilot_version_get_product_id ( msg ) ;
mavlink_msg_autopilot_version_get_flight_custom_version ( msg , autopilot_version - > flight_custom_version ) ;
mavlink_msg_autopilot_version_get_middleware_custom_version ( msg , autopilot_version - > middleware_custom_version ) ;
mavlink_msg_autopilot_version_get_os_custom_version ( msg , autopilot_version - > os_custom_version ) ;
2018-04-29 09:48:09 +08:00
mavlink_msg_autopilot_version_get_uid2 ( msg , autopilot_version - > uid2 ) ;
2014-08-10 21:01:07 +02:00
# else
2016-05-16 08:33:08 +00:00
uint8_t len = msg - > len < MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN ? msg - > len : MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN ;
memset ( autopilot_version , 0 , MAVLINK_MSG_ID_AUTOPILOT_VERSION_LEN ) ;
2016-10-10 10:40:57 +00:00
memcpy ( autopilot_version , _MAV_PAYLOAD ( msg ) , len ) ;
2014-08-10 21:01:07 +02:00
# endif
}