239 lines
9.3 KiB
C
239 lines
9.3 KiB
C
![]() |
#pragma once
|
||
|
// MESSAGE GOPRO_SET_RESPONSE PACKING
|
||
|
|
||
|
#define MAVLINK_MSG_ID_GOPRO_SET_RESPONSE 219
|
||
|
|
||
|
MAVPACKED(
|
||
|
typedef struct __mavlink_gopro_set_response_t {
|
||
|
uint8_t cmd_id; /*< Command ID.*/
|
||
|
uint8_t status; /*< Status.*/
|
||
|
}) mavlink_gopro_set_response_t;
|
||
|
|
||
|
#define MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN 2
|
||
|
#define MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_MIN_LEN 2
|
||
|
#define MAVLINK_MSG_ID_219_LEN 2
|
||
|
#define MAVLINK_MSG_ID_219_MIN_LEN 2
|
||
|
|
||
|
#define MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_CRC 162
|
||
|
#define MAVLINK_MSG_ID_219_CRC 162
|
||
|
|
||
|
|
||
|
|
||
|
#if MAVLINK_COMMAND_24BIT
|
||
|
#define MAVLINK_MESSAGE_INFO_GOPRO_SET_RESPONSE { \
|
||
|
219, \
|
||
|
"GOPRO_SET_RESPONSE", \
|
||
|
2, \
|
||
|
{ { "cmd_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_gopro_set_response_t, cmd_id) }, \
|
||
|
{ "status", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_gopro_set_response_t, status) }, \
|
||
|
} \
|
||
|
}
|
||
|
#else
|
||
|
#define MAVLINK_MESSAGE_INFO_GOPRO_SET_RESPONSE { \
|
||
|
"GOPRO_SET_RESPONSE", \
|
||
|
2, \
|
||
|
{ { "cmd_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_gopro_set_response_t, cmd_id) }, \
|
||
|
{ "status", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_gopro_set_response_t, status) }, \
|
||
|
} \
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* @brief Pack a gopro_set_response 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 cmd_id Command ID.
|
||
|
* @param status Status.
|
||
|
* @return length of the message in bytes (excluding serial stream start sign)
|
||
|
*/
|
||
|
static inline uint16_t mavlink_msg_gopro_set_response_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
|
||
|
uint8_t cmd_id, uint8_t status)
|
||
|
{
|
||
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
||
|
char buf[MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN];
|
||
|
_mav_put_uint8_t(buf, 0, cmd_id);
|
||
|
_mav_put_uint8_t(buf, 1, status);
|
||
|
|
||
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN);
|
||
|
#else
|
||
|
mavlink_gopro_set_response_t packet;
|
||
|
packet.cmd_id = cmd_id;
|
||
|
packet.status = status;
|
||
|
|
||
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN);
|
||
|
#endif
|
||
|
|
||
|
msg->msgid = MAVLINK_MSG_ID_GOPRO_SET_RESPONSE;
|
||
|
return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_MIN_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_CRC);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @brief Pack a gopro_set_response 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
|
||
|
* @param cmd_id Command ID.
|
||
|
* @param status Status.
|
||
|
* @return length of the message in bytes (excluding serial stream start sign)
|
||
|
*/
|
||
|
static inline uint16_t mavlink_msg_gopro_set_response_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
|
||
|
mavlink_message_t* msg,
|
||
|
uint8_t cmd_id,uint8_t status)
|
||
|
{
|
||
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
||
|
char buf[MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN];
|
||
|
_mav_put_uint8_t(buf, 0, cmd_id);
|
||
|
_mav_put_uint8_t(buf, 1, status);
|
||
|
|
||
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN);
|
||
|
#else
|
||
|
mavlink_gopro_set_response_t packet;
|
||
|
packet.cmd_id = cmd_id;
|
||
|
packet.status = status;
|
||
|
|
||
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN);
|
||
|
#endif
|
||
|
|
||
|
msg->msgid = MAVLINK_MSG_ID_GOPRO_SET_RESPONSE;
|
||
|
return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_MIN_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_CRC);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @brief Encode a gopro_set_response 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 gopro_set_response C-struct to read the message contents from
|
||
|
*/
|
||
|
static inline uint16_t mavlink_msg_gopro_set_response_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_gopro_set_response_t* gopro_set_response)
|
||
|
{
|
||
|
return mavlink_msg_gopro_set_response_pack(system_id, component_id, msg, gopro_set_response->cmd_id, gopro_set_response->status);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @brief Encode a gopro_set_response 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 gopro_set_response C-struct to read the message contents from
|
||
|
*/
|
||
|
static inline uint16_t mavlink_msg_gopro_set_response_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_gopro_set_response_t* gopro_set_response)
|
||
|
{
|
||
|
return mavlink_msg_gopro_set_response_pack_chan(system_id, component_id, chan, msg, gopro_set_response->cmd_id, gopro_set_response->status);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @brief Send a gopro_set_response message
|
||
|
* @param chan MAVLink channel to send the message
|
||
|
*
|
||
|
* @param cmd_id Command ID.
|
||
|
* @param status Status.
|
||
|
*/
|
||
|
#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
|
||
|
|
||
|
static inline void mavlink_msg_gopro_set_response_send(mavlink_channel_t chan, uint8_t cmd_id, uint8_t status)
|
||
|
{
|
||
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
||
|
char buf[MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN];
|
||
|
_mav_put_uint8_t(buf, 0, cmd_id);
|
||
|
_mav_put_uint8_t(buf, 1, status);
|
||
|
|
||
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE, buf, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_MIN_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_CRC);
|
||
|
#else
|
||
|
mavlink_gopro_set_response_t packet;
|
||
|
packet.cmd_id = cmd_id;
|
||
|
packet.status = status;
|
||
|
|
||
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE, (const char *)&packet, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_MIN_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_CRC);
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @brief Send a gopro_set_response message
|
||
|
* @param chan MAVLink channel to send the message
|
||
|
* @param struct The MAVLink struct to serialize
|
||
|
*/
|
||
|
static inline void mavlink_msg_gopro_set_response_send_struct(mavlink_channel_t chan, const mavlink_gopro_set_response_t* gopro_set_response)
|
||
|
{
|
||
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
||
|
mavlink_msg_gopro_set_response_send(chan, gopro_set_response->cmd_id, gopro_set_response->status);
|
||
|
#else
|
||
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE, (const char *)gopro_set_response, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_MIN_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_CRC);
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
#if MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_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.
|
||
|
*/
|
||
|
static inline void mavlink_msg_gopro_set_response_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t cmd_id, uint8_t status)
|
||
|
{
|
||
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
||
|
char *buf = (char *)msgbuf;
|
||
|
_mav_put_uint8_t(buf, 0, cmd_id);
|
||
|
_mav_put_uint8_t(buf, 1, status);
|
||
|
|
||
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE, buf, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_MIN_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_CRC);
|
||
|
#else
|
||
|
mavlink_gopro_set_response_t *packet = (mavlink_gopro_set_response_t *)msgbuf;
|
||
|
packet->cmd_id = cmd_id;
|
||
|
packet->status = status;
|
||
|
|
||
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE, (const char *)packet, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_MIN_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_CRC);
|
||
|
#endif
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// MESSAGE GOPRO_SET_RESPONSE UNPACKING
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @brief Get field cmd_id from gopro_set_response message
|
||
|
*
|
||
|
* @return Command ID.
|
||
|
*/
|
||
|
static inline uint8_t mavlink_msg_gopro_set_response_get_cmd_id(const mavlink_message_t* msg)
|
||
|
{
|
||
|
return _MAV_RETURN_uint8_t(msg, 0);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @brief Get field status from gopro_set_response message
|
||
|
*
|
||
|
* @return Status.
|
||
|
*/
|
||
|
static inline uint8_t mavlink_msg_gopro_set_response_get_status(const mavlink_message_t* msg)
|
||
|
{
|
||
|
return _MAV_RETURN_uint8_t(msg, 1);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @brief Decode a gopro_set_response message into a struct
|
||
|
*
|
||
|
* @param msg The message to decode
|
||
|
* @param gopro_set_response C-struct to decode the message contents into
|
||
|
*/
|
||
|
static inline void mavlink_msg_gopro_set_response_decode(const mavlink_message_t* msg, mavlink_gopro_set_response_t* gopro_set_response)
|
||
|
{
|
||
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
||
|
gopro_set_response->cmd_id = mavlink_msg_gopro_set_response_get_cmd_id(msg);
|
||
|
gopro_set_response->status = mavlink_msg_gopro_set_response_get_status(msg);
|
||
|
#else
|
||
|
uint8_t len = msg->len < MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN? msg->len : MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN;
|
||
|
memset(gopro_set_response, 0, MAVLINK_MSG_ID_GOPRO_SET_RESPONSE_LEN);
|
||
|
memcpy(gopro_set_response, _MAV_PAYLOAD(msg), len);
|
||
|
#endif
|
||
|
}
|