Move telemetry displayport init and cms device registering
[betaflight.git] / lib / main / MAVLink / common / mavlink_msg_auth_key.h
blobf31b6bbf481b344520cf69f45561e8a2c11918f4
1 // MESSAGE AUTH_KEY PACKING
3 #define MAVLINK_MSG_ID_AUTH_KEY 7
5 typedef struct __mavlink_auth_key_t
7 char key[32]; ///< key
8 } mavlink_auth_key_t;
10 #define MAVLINK_MSG_ID_AUTH_KEY_LEN 32
11 #define MAVLINK_MSG_ID_7_LEN 32
13 #define MAVLINK_MSG_ID_AUTH_KEY_CRC 119
14 #define MAVLINK_MSG_ID_7_CRC 119
16 #define MAVLINK_MSG_AUTH_KEY_FIELD_KEY_LEN 32
18 #define MAVLINK_MESSAGE_INFO_AUTH_KEY { \
19 "AUTH_KEY", \
20 1, \
21 { { "key", NULL, MAVLINK_TYPE_CHAR, 32, 0, offsetof(mavlink_auth_key_t, key) }, \
22 } \
26 /**
27 * @brief Pack a auth_key message
28 * @param system_id ID of this system
29 * @param component_id ID of this component (e.g. 200 for IMU)
30 * @param msg The MAVLink message to compress the data into
32 * @param key key
33 * @return length of the message in bytes (excluding serial stream start sign)
35 static inline uint16_t mavlink_msg_auth_key_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
36 const char *key)
38 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
39 char buf[MAVLINK_MSG_ID_AUTH_KEY_LEN];
41 _mav_put_char_array(buf, 0, key, 32);
42 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_AUTH_KEY_LEN);
43 #else
44 mavlink_auth_key_t packet;
46 mav_array_memcpy(packet.key, key, sizeof(char)*32);
47 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_AUTH_KEY_LEN);
48 #endif
50 msg->msgid = MAVLINK_MSG_ID_AUTH_KEY;
51 #if MAVLINK_CRC_EXTRA
52 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
53 #else
54 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_AUTH_KEY_LEN);
55 #endif
58 /**
59 * @brief Pack a auth_key message on a channel
60 * @param system_id ID of this system
61 * @param component_id ID of this component (e.g. 200 for IMU)
62 * @param chan The MAVLink channel this message will be sent over
63 * @param msg The MAVLink message to compress the data into
64 * @param key key
65 * @return length of the message in bytes (excluding serial stream start sign)
67 static inline uint16_t mavlink_msg_auth_key_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
68 mavlink_message_t* msg,
69 const char *key)
71 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
72 char buf[MAVLINK_MSG_ID_AUTH_KEY_LEN];
74 _mav_put_char_array(buf, 0, key, 32);
75 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_AUTH_KEY_LEN);
76 #else
77 mavlink_auth_key_t packet;
79 mav_array_memcpy(packet.key, key, sizeof(char)*32);
80 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_AUTH_KEY_LEN);
81 #endif
83 msg->msgid = MAVLINK_MSG_ID_AUTH_KEY;
84 #if MAVLINK_CRC_EXTRA
85 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
86 #else
87 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_AUTH_KEY_LEN);
88 #endif
91 /**
92 * @brief Encode a auth_key struct
94 * @param system_id ID of this system
95 * @param component_id ID of this component (e.g. 200 for IMU)
96 * @param msg The MAVLink message to compress the data into
97 * @param auth_key C-struct to read the message contents from
99 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)
101 return mavlink_msg_auth_key_pack(system_id, component_id, msg, auth_key->key);
105 * @brief Encode a auth_key struct on a channel
107 * @param system_id ID of this system
108 * @param component_id ID of this component (e.g. 200 for IMU)
109 * @param chan The MAVLink channel this message will be sent over
110 * @param msg The MAVLink message to compress the data into
111 * @param auth_key C-struct to read the message contents from
113 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)
115 return mavlink_msg_auth_key_pack_chan(system_id, component_id, chan, msg, auth_key->key);
119 * @brief Send a auth_key message
120 * @param chan MAVLink channel to send the message
122 * @param key key
124 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
126 static inline void mavlink_msg_auth_key_send(mavlink_channel_t chan, const char *key)
128 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
129 char buf[MAVLINK_MSG_ID_AUTH_KEY_LEN];
131 _mav_put_char_array(buf, 0, key, 32);
132 #if MAVLINK_CRC_EXTRA
133 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, buf, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
134 #else
135 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, buf, MAVLINK_MSG_ID_AUTH_KEY_LEN);
136 #endif
137 #else
138 mavlink_auth_key_t packet;
140 mav_array_memcpy(packet.key, key, sizeof(char)*32);
141 #if MAVLINK_CRC_EXTRA
142 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, (const char *)&packet, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
143 #else
144 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, (const char *)&packet, MAVLINK_MSG_ID_AUTH_KEY_LEN);
145 #endif
146 #endif
149 #if MAVLINK_MSG_ID_AUTH_KEY_LEN <= MAVLINK_MAX_PAYLOAD_LEN
151 This varient of _send() can be used to save stack space by re-using
152 memory from the receive buffer. The caller provides a
153 mavlink_message_t which is the size of a full mavlink message. This
154 is usually the receive buffer for the channel, and allows a reply to an
155 incoming message with minimum stack space usage.
157 static inline void mavlink_msg_auth_key_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, const char *key)
159 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
160 char *buf = (char *)msgbuf;
162 _mav_put_char_array(buf, 0, key, 32);
163 #if MAVLINK_CRC_EXTRA
164 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, buf, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
165 #else
166 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, buf, MAVLINK_MSG_ID_AUTH_KEY_LEN);
167 #endif
168 #else
169 mavlink_auth_key_t *packet = (mavlink_auth_key_t *)msgbuf;
171 mav_array_memcpy(packet->key, key, sizeof(char)*32);
172 #if MAVLINK_CRC_EXTRA
173 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, (const char *)packet, MAVLINK_MSG_ID_AUTH_KEY_LEN, MAVLINK_MSG_ID_AUTH_KEY_CRC);
174 #else
175 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AUTH_KEY, (const char *)packet, MAVLINK_MSG_ID_AUTH_KEY_LEN);
176 #endif
177 #endif
179 #endif
181 #endif
183 // MESSAGE AUTH_KEY UNPACKING
187 * @brief Get field key from auth_key message
189 * @return key
191 static inline uint16_t mavlink_msg_auth_key_get_key(const mavlink_message_t* msg, char *key)
193 return _MAV_RETURN_char_array(msg, key, 32, 0);
197 * @brief Decode a auth_key message into a struct
199 * @param msg The message to decode
200 * @param auth_key C-struct to decode the message contents into
202 static inline void mavlink_msg_auth_key_decode(const mavlink_message_t* msg, mavlink_auth_key_t* auth_key)
204 #if MAVLINK_NEED_BYTE_SWAP
205 mavlink_msg_auth_key_get_key(msg, auth_key->key);
206 #else
207 memcpy(auth_key, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_AUTH_KEY_LEN);
208 #endif