[GYRO] Refactor gyro driver for dual-gyro support
[inav.git] / lib / main / MAVLink / common / mavlink_msg_auth_key.h
blob2754a2ad6bbf980073aadc91631aa0318cab2171
1 #pragma once
2 // MESSAGE AUTH_KEY PACKING
4 #define MAVLINK_MSG_ID_AUTH_KEY 7
6 MAVPACKED(
7 typedef struct __mavlink_auth_key_t {
8 char key[32]; /*< key*/
9 }) mavlink_auth_key_t;
11 #define MAVLINK_MSG_ID_AUTH_KEY_LEN 32
12 #define MAVLINK_MSG_ID_AUTH_KEY_MIN_LEN 32
13 #define MAVLINK_MSG_ID_7_LEN 32
14 #define MAVLINK_MSG_ID_7_MIN_LEN 32
16 #define MAVLINK_MSG_ID_AUTH_KEY_CRC 119
17 #define MAVLINK_MSG_ID_7_CRC 119
19 #define MAVLINK_MSG_AUTH_KEY_FIELD_KEY_LEN 32
21 #if MAVLINK_COMMAND_24BIT
22 #define MAVLINK_MESSAGE_INFO_AUTH_KEY { \
23 7, \
24 "AUTH_KEY", \
25 1, \
26 { { "key", NULL, MAVLINK_TYPE_CHAR, 32, 0, offsetof(mavlink_auth_key_t, key) }, \
27 } \
29 #else
30 #define MAVLINK_MESSAGE_INFO_AUTH_KEY { \
31 "AUTH_KEY", \
32 1, \
33 { { "key", NULL, MAVLINK_TYPE_CHAR, 32, 0, offsetof(mavlink_auth_key_t, key) }, \
34 } \
36 #endif
38 /**
39 * @brief Pack a auth_key message
40 * @param system_id ID of this system
41 * @param component_id ID of this component (e.g. 200 for IMU)
42 * @param msg The MAVLink message to compress the data into
44 * @param key key
45 * @return length of the message in bytes (excluding serial stream start sign)
47 static inline uint16_t mavlink_msg_auth_key_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
48 const char *key)
50 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
51 char buf[MAVLINK_MSG_ID_AUTH_KEY_LEN];
53 _mav_put_char_array(buf, 0, key, 32);
54 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_AUTH_KEY_LEN);
55 #else
56 mavlink_auth_key_t packet;
58 mav_array_memcpy(packet.key, key, sizeof(char)*32);
59 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_AUTH_KEY_LEN);
60 #endif
62 msg->msgid = MAVLINK_MSG_ID_AUTH_KEY;
63 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_AUTH_KEY_MIN_LEN, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
66 /**
67 * @brief Pack a auth_key message on a channel
68 * @param system_id ID of this system
69 * @param component_id ID of this component (e.g. 200 for IMU)
70 * @param chan The MAVLink channel this message will be sent over
71 * @param msg The MAVLink message to compress the data into
72 * @param key key
73 * @return length of the message in bytes (excluding serial stream start sign)
75 static inline uint16_t mavlink_msg_auth_key_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
76 mavlink_message_t* msg,
77 const char *key)
79 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
80 char buf[MAVLINK_MSG_ID_AUTH_KEY_LEN];
82 _mav_put_char_array(buf, 0, key, 32);
83 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_AUTH_KEY_LEN);
84 #else
85 mavlink_auth_key_t packet;
87 mav_array_memcpy(packet.key, key, sizeof(char)*32);
88 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_AUTH_KEY_LEN);
89 #endif
91 msg->msgid = MAVLINK_MSG_ID_AUTH_KEY;
92 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_AUTH_KEY_MIN_LEN, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
95 /**
96 * @brief Encode a auth_key struct
98 * @param system_id ID of this system
99 * @param component_id ID of this component (e.g. 200 for IMU)
100 * @param msg The MAVLink message to compress the data into
101 * @param auth_key C-struct to read the message contents from
103 static inline uint16_t mavlink_msg_auth_key_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_auth_key_t* auth_key)
105 return mavlink_msg_auth_key_pack(system_id, component_id, msg, auth_key->key);
109 * @brief Encode a auth_key struct on a channel
111 * @param system_id ID of this system
112 * @param component_id ID of this component (e.g. 200 for IMU)
113 * @param chan The MAVLink channel this message will be sent over
114 * @param msg The MAVLink message to compress the data into
115 * @param auth_key C-struct to read the message contents from
117 static inline uint16_t mavlink_msg_auth_key_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_auth_key_t* auth_key)
119 return mavlink_msg_auth_key_pack_chan(system_id, component_id, chan, msg, auth_key->key);
123 * @brief Send a auth_key message
124 * @param chan MAVLink channel to send the message
126 * @param key key
128 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
130 static inline void mavlink_msg_auth_key_send(mavlink_channel_t chan, const char *key)
132 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
133 char buf[MAVLINK_MSG_ID_AUTH_KEY_LEN];
135 _mav_put_char_array(buf, 0, key, 32);
136 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, buf, MAVLINK_MSG_ID_AUTH_KEY_MIN_LEN, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
137 #else
138 mavlink_auth_key_t packet;
140 mav_array_memcpy(packet.key, key, sizeof(char)*32);
141 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, (const char *)&packet, MAVLINK_MSG_ID_AUTH_KEY_MIN_LEN, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
142 #endif
146 * @brief Send a auth_key message
147 * @param chan MAVLink channel to send the message
148 * @param struct The MAVLink struct to serialize
150 static inline void mavlink_msg_auth_key_send_struct(mavlink_channel_t chan, const mavlink_auth_key_t* auth_key)
152 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
153 mavlink_msg_auth_key_send(chan, auth_key->key);
154 #else
155 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, (const char *)auth_key, MAVLINK_MSG_ID_AUTH_KEY_MIN_LEN, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
156 #endif
159 #if MAVLINK_MSG_ID_AUTH_KEY_LEN <= MAVLINK_MAX_PAYLOAD_LEN
161 This varient of _send() can be used to save stack space by re-using
162 memory from the receive buffer. The caller provides a
163 mavlink_message_t which is the size of a full mavlink message. This
164 is usually the receive buffer for the channel, and allows a reply to an
165 incoming message with minimum stack space usage.
167 static inline void mavlink_msg_auth_key_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, const char *key)
169 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
170 char *buf = (char *)msgbuf;
172 _mav_put_char_array(buf, 0, key, 32);
173 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, buf, MAVLINK_MSG_ID_AUTH_KEY_MIN_LEN, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
174 #else
175 mavlink_auth_key_t *packet = (mavlink_auth_key_t *)msgbuf;
177 mav_array_memcpy(packet->key, key, sizeof(char)*32);
178 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, (const char *)packet, MAVLINK_MSG_ID_AUTH_KEY_MIN_LEN, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
179 #endif
181 #endif
183 #endif
185 // MESSAGE AUTH_KEY UNPACKING
189 * @brief Get field key from auth_key message
191 * @return key
193 static inline uint16_t mavlink_msg_auth_key_get_key(const mavlink_message_t* msg, char *key)
195 return _MAV_RETURN_char_array(msg, key, 32, 0);
199 * @brief Decode a auth_key message into a struct
201 * @param msg The message to decode
202 * @param auth_key C-struct to decode the message contents into
204 static inline void mavlink_msg_auth_key_decode(const mavlink_message_t* msg, mavlink_auth_key_t* auth_key)
206 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
207 mavlink_msg_auth_key_get_key(msg, auth_key->key);
208 #else
209 uint8_t len = msg->len < MAVLINK_MSG_ID_AUTH_KEY_LEN? msg->len : MAVLINK_MSG_ID_AUTH_KEY_LEN;
210 memset(auth_key, 0, MAVLINK_MSG_ID_AUTH_KEY_LEN);
211 memcpy(auth_key, _MAV_PAYLOAD(msg), len);
212 #endif