1 // MESSAGE CHANGE_OPERATOR_CONTROL PACKING
3 #define MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL 5
5 typedef struct __mavlink_change_operator_control_t
7 uint8_t target_system
; ///< System the GCS requests control for
8 uint8_t control_request
; ///< 0: request control of this MAV, 1: Release control of this MAV
9 uint8_t version
; ///< 0: key as plaintext, 1-255: future, different hashing/encryption variants. The GCS should in general use the safest mode possible initially and then gradually move down the encryption level if it gets a NACK message indicating an encryption mismatch.
10 char passkey
[25]; ///< Password / Key, depending on version plaintext or encrypted. 25 or less characters, NULL terminated. The characters may involve A-Z, a-z, 0-9, and "!?,.-"
11 } mavlink_change_operator_control_t
;
13 #define MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN 28
14 #define MAVLINK_MSG_ID_5_LEN 28
16 #define MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_CRC 217
17 #define MAVLINK_MSG_ID_5_CRC 217
19 #define MAVLINK_MSG_CHANGE_OPERATOR_CONTROL_FIELD_PASSKEY_LEN 25
21 #define MAVLINK_MESSAGE_INFO_CHANGE_OPERATOR_CONTROL { \
22 "CHANGE_OPERATOR_CONTROL", \
24 { { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_change_operator_control_t, target_system) }, \
25 { "control_request", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_change_operator_control_t, control_request) }, \
26 { "version", NULL, MAVLINK_TYPE_UINT8_T, 0, 2, offsetof(mavlink_change_operator_control_t, version) }, \
27 { "passkey", NULL, MAVLINK_TYPE_CHAR, 25, 3, offsetof(mavlink_change_operator_control_t, passkey) }, \
33 * @brief Pack a change_operator_control message
34 * @param system_id ID of this system
35 * @param component_id ID of this component (e.g. 200 for IMU)
36 * @param msg The MAVLink message to compress the data into
38 * @param target_system System the GCS requests control for
39 * @param control_request 0: request control of this MAV, 1: Release control of this MAV
40 * @param version 0: key as plaintext, 1-255: future, different hashing/encryption variants. The GCS should in general use the safest mode possible initially and then gradually move down the encryption level if it gets a NACK message indicating an encryption mismatch.
41 * @param passkey Password / Key, depending on version plaintext or encrypted. 25 or less characters, NULL terminated. The characters may involve A-Z, a-z, 0-9, and "!?,.-"
42 * @return length of the message in bytes (excluding serial stream start sign)
44 static inline uint16_t mavlink_msg_change_operator_control_pack(uint8_t system_id
, uint8_t component_id
, mavlink_message_t
* msg
,
45 uint8_t target_system
, uint8_t control_request
, uint8_t version
, const char *passkey
)
47 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
48 char buf
[MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
];
49 _mav_put_uint8_t(buf
, 0, target_system
);
50 _mav_put_uint8_t(buf
, 1, control_request
);
51 _mav_put_uint8_t(buf
, 2, version
);
52 _mav_put_char_array(buf
, 3, passkey
, 25);
53 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), buf
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
);
55 mavlink_change_operator_control_t packet
;
56 packet
.target_system
= target_system
;
57 packet
.control_request
= control_request
;
58 packet
.version
= version
;
59 mav_array_memcpy(packet
.passkey
, passkey
, sizeof(char)*25);
60 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), &packet
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
);
63 msg
->msgid
= MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL
;
65 return mavlink_finalize_message(msg
, system_id
, component_id
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_CRC
);
67 return mavlink_finalize_message(msg
, system_id
, component_id
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
);
72 * @brief Pack a change_operator_control message on a channel
73 * @param system_id ID of this system
74 * @param component_id ID of this component (e.g. 200 for IMU)
75 * @param chan The MAVLink channel this message will be sent over
76 * @param msg The MAVLink message to compress the data into
77 * @param target_system System the GCS requests control for
78 * @param control_request 0: request control of this MAV, 1: Release control of this MAV
79 * @param version 0: key as plaintext, 1-255: future, different hashing/encryption variants. The GCS should in general use the safest mode possible initially and then gradually move down the encryption level if it gets a NACK message indicating an encryption mismatch.
80 * @param passkey Password / Key, depending on version plaintext or encrypted. 25 or less characters, NULL terminated. The characters may involve A-Z, a-z, 0-9, and "!?,.-"
81 * @return length of the message in bytes (excluding serial stream start sign)
83 static inline uint16_t mavlink_msg_change_operator_control_pack_chan(uint8_t system_id
, uint8_t component_id
, uint8_t chan
,
84 mavlink_message_t
* msg
,
85 uint8_t target_system
,uint8_t control_request
,uint8_t version
,const char *passkey
)
87 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
88 char buf
[MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
];
89 _mav_put_uint8_t(buf
, 0, target_system
);
90 _mav_put_uint8_t(buf
, 1, control_request
);
91 _mav_put_uint8_t(buf
, 2, version
);
92 _mav_put_char_array(buf
, 3, passkey
, 25);
93 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), buf
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
);
95 mavlink_change_operator_control_t packet
;
96 packet
.target_system
= target_system
;
97 packet
.control_request
= control_request
;
98 packet
.version
= version
;
99 mav_array_memcpy(packet
.passkey
, passkey
, sizeof(char)*25);
100 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), &packet
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
);
103 msg
->msgid
= MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL
;
104 #if MAVLINK_CRC_EXTRA
105 return mavlink_finalize_message_chan(msg
, system_id
, component_id
, chan
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_CRC
);
107 return mavlink_finalize_message_chan(msg
, system_id
, component_id
, chan
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
);
112 * @brief Encode a change_operator_control struct
114 * @param system_id ID of this system
115 * @param component_id ID of this component (e.g. 200 for IMU)
116 * @param msg The MAVLink message to compress the data into
117 * @param change_operator_control C-struct to read the message contents from
119 static inline uint16_t mavlink_msg_change_operator_control_encode(uint8_t system_id
, uint8_t component_id
, mavlink_message_t
* msg
, const mavlink_change_operator_control_t
* change_operator_control
)
121 return mavlink_msg_change_operator_control_pack(system_id
, component_id
, msg
, change_operator_control
->target_system
, change_operator_control
->control_request
, change_operator_control
->version
, change_operator_control
->passkey
);
125 * @brief Encode a change_operator_control struct on a channel
127 * @param system_id ID of this system
128 * @param component_id ID of this component (e.g. 200 for IMU)
129 * @param chan The MAVLink channel this message will be sent over
130 * @param msg The MAVLink message to compress the data into
131 * @param change_operator_control C-struct to read the message contents from
133 static inline uint16_t mavlink_msg_change_operator_control_encode_chan(uint8_t system_id
, uint8_t component_id
, uint8_t chan
, mavlink_message_t
* msg
, const mavlink_change_operator_control_t
* change_operator_control
)
135 return mavlink_msg_change_operator_control_pack_chan(system_id
, component_id
, chan
, msg
, change_operator_control
->target_system
, change_operator_control
->control_request
, change_operator_control
->version
, change_operator_control
->passkey
);
139 * @brief Send a change_operator_control message
140 * @param chan MAVLink channel to send the message
142 * @param target_system System the GCS requests control for
143 * @param control_request 0: request control of this MAV, 1: Release control of this MAV
144 * @param version 0: key as plaintext, 1-255: future, different hashing/encryption variants. The GCS should in general use the safest mode possible initially and then gradually move down the encryption level if it gets a NACK message indicating an encryption mismatch.
145 * @param passkey Password / Key, depending on version plaintext or encrypted. 25 or less characters, NULL terminated. The characters may involve A-Z, a-z, 0-9, and "!?,.-"
147 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
149 static inline void mavlink_msg_change_operator_control_send(mavlink_channel_t chan
, uint8_t target_system
, uint8_t control_request
, uint8_t version
, const char *passkey
)
151 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
152 char buf
[MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
];
153 _mav_put_uint8_t(buf
, 0, target_system
);
154 _mav_put_uint8_t(buf
, 1, control_request
);
155 _mav_put_uint8_t(buf
, 2, version
);
156 _mav_put_char_array(buf
, 3, passkey
, 25);
157 #if MAVLINK_CRC_EXTRA
158 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL
, buf
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_CRC
);
160 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL
, buf
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
);
163 mavlink_change_operator_control_t packet
;
164 packet
.target_system
= target_system
;
165 packet
.control_request
= control_request
;
166 packet
.version
= version
;
167 mav_array_memcpy(packet
.passkey
, passkey
, sizeof(char)*25);
168 #if MAVLINK_CRC_EXTRA
169 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL
, (const char *)&packet
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_CRC
);
171 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL
, (const char *)&packet
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
);
176 #if MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN <= MAVLINK_MAX_PAYLOAD_LEN
178 This varient of _send() can be used to save stack space by re-using
179 memory from the receive buffer. The caller provides a
180 mavlink_message_t which is the size of a full mavlink message. This
181 is usually the receive buffer for the channel, and allows a reply to an
182 incoming message with minimum stack space usage.
184 static inline void mavlink_msg_change_operator_control_send_buf(mavlink_message_t
*msgbuf
, mavlink_channel_t chan
, uint8_t target_system
, uint8_t control_request
, uint8_t version
, const char *passkey
)
186 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
187 char *buf
= (char *)msgbuf
;
188 _mav_put_uint8_t(buf
, 0, target_system
);
189 _mav_put_uint8_t(buf
, 1, control_request
);
190 _mav_put_uint8_t(buf
, 2, version
);
191 _mav_put_char_array(buf
, 3, passkey
, 25);
192 #if MAVLINK_CRC_EXTRA
193 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL
, buf
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_CRC
);
195 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL
, buf
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
);
198 mavlink_change_operator_control_t
*packet
= (mavlink_change_operator_control_t
*)msgbuf
;
199 packet
->target_system
= target_system
;
200 packet
->control_request
= control_request
;
201 packet
->version
= version
;
202 mav_array_memcpy(packet
->passkey
, passkey
, sizeof(char)*25);
203 #if MAVLINK_CRC_EXTRA
204 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL
, (const char *)packet
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_CRC
);
206 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL
, (const char *)packet
, MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
);
214 // MESSAGE CHANGE_OPERATOR_CONTROL UNPACKING
218 * @brief Get field target_system from change_operator_control message
220 * @return System the GCS requests control for
222 static inline uint8_t mavlink_msg_change_operator_control_get_target_system(const mavlink_message_t
* msg
)
224 return _MAV_RETURN_uint8_t(msg
, 0);
228 * @brief Get field control_request from change_operator_control message
230 * @return 0: request control of this MAV, 1: Release control of this MAV
232 static inline uint8_t mavlink_msg_change_operator_control_get_control_request(const mavlink_message_t
* msg
)
234 return _MAV_RETURN_uint8_t(msg
, 1);
238 * @brief Get field version from change_operator_control message
240 * @return 0: key as plaintext, 1-255: future, different hashing/encryption variants. The GCS should in general use the safest mode possible initially and then gradually move down the encryption level if it gets a NACK message indicating an encryption mismatch.
242 static inline uint8_t mavlink_msg_change_operator_control_get_version(const mavlink_message_t
* msg
)
244 return _MAV_RETURN_uint8_t(msg
, 2);
248 * @brief Get field passkey from change_operator_control message
250 * @return Password / Key, depending on version plaintext or encrypted. 25 or less characters, NULL terminated. The characters may involve A-Z, a-z, 0-9, and "!?,.-"
252 static inline uint16_t mavlink_msg_change_operator_control_get_passkey(const mavlink_message_t
* msg
, char *passkey
)
254 return _MAV_RETURN_char_array(msg
, passkey
, 25, 3);
258 * @brief Decode a change_operator_control message into a struct
260 * @param msg The message to decode
261 * @param change_operator_control C-struct to decode the message contents into
263 static inline void mavlink_msg_change_operator_control_decode(const mavlink_message_t
* msg
, mavlink_change_operator_control_t
* change_operator_control
)
265 #if MAVLINK_NEED_BYTE_SWAP
266 change_operator_control
->target_system
= mavlink_msg_change_operator_control_get_target_system(msg
);
267 change_operator_control
->control_request
= mavlink_msg_change_operator_control_get_control_request(msg
);
268 change_operator_control
->version
= mavlink_msg_change_operator_control_get_version(msg
);
269 mavlink_msg_change_operator_control_get_passkey(msg
, change_operator_control
->passkey
);
271 memcpy(change_operator_control
, _MAV_PAYLOAD(msg
), MAVLINK_MSG_ID_CHANGE_OPERATOR_CONTROL_LEN
);