2 // MESSAGE ACTUATOR_OUTPUT_STATUS PACKING
4 #define MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS 375
7 typedef struct __mavlink_actuator_output_status_t
{
8 uint64_t time_usec
; /*< [us] Timestamp (since system boot).*/
9 uint32_t active
; /*< Active outputs*/
10 float actuator
[32]; /*< Servo / motor output array values. Zero values indicate unused channels.*/
11 } mavlink_actuator_output_status_t
;
13 #define MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN 140
14 #define MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_MIN_LEN 140
15 #define MAVLINK_MSG_ID_375_LEN 140
16 #define MAVLINK_MSG_ID_375_MIN_LEN 140
18 #define MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_CRC 251
19 #define MAVLINK_MSG_ID_375_CRC 251
21 #define MAVLINK_MSG_ACTUATOR_OUTPUT_STATUS_FIELD_ACTUATOR_LEN 32
23 #if MAVLINK_COMMAND_24BIT
24 #define MAVLINK_MESSAGE_INFO_ACTUATOR_OUTPUT_STATUS { \
26 "ACTUATOR_OUTPUT_STATUS", \
28 { { "time_usec", NULL, MAVLINK_TYPE_UINT64_T, 0, 0, offsetof(mavlink_actuator_output_status_t, time_usec) }, \
29 { "active", NULL, MAVLINK_TYPE_UINT32_T, 0, 8, offsetof(mavlink_actuator_output_status_t, active) }, \
30 { "actuator", NULL, MAVLINK_TYPE_FLOAT, 32, 12, offsetof(mavlink_actuator_output_status_t, actuator) }, \
34 #define MAVLINK_MESSAGE_INFO_ACTUATOR_OUTPUT_STATUS { \
35 "ACTUATOR_OUTPUT_STATUS", \
37 { { "time_usec", NULL, MAVLINK_TYPE_UINT64_T, 0, 0, offsetof(mavlink_actuator_output_status_t, time_usec) }, \
38 { "active", NULL, MAVLINK_TYPE_UINT32_T, 0, 8, offsetof(mavlink_actuator_output_status_t, active) }, \
39 { "actuator", NULL, MAVLINK_TYPE_FLOAT, 32, 12, offsetof(mavlink_actuator_output_status_t, actuator) }, \
45 * @brief Pack a actuator_output_status message
46 * @param system_id ID of this system
47 * @param component_id ID of this component (e.g. 200 for IMU)
48 * @param msg The MAVLink message to compress the data into
50 * @param time_usec [us] Timestamp (since system boot).
51 * @param active Active outputs
52 * @param actuator Servo / motor output array values. Zero values indicate unused channels.
53 * @return length of the message in bytes (excluding serial stream start sign)
55 static inline uint16_t mavlink_msg_actuator_output_status_pack(uint8_t system_id
, uint8_t component_id
, mavlink_message_t
* msg
,
56 uint64_t time_usec
, uint32_t active
, const float *actuator
)
58 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
59 char buf
[MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
];
60 _mav_put_uint64_t(buf
, 0, time_usec
);
61 _mav_put_uint32_t(buf
, 8, active
);
62 _mav_put_float_array(buf
, 12, actuator
, 32);
63 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), buf
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
);
65 mavlink_actuator_output_status_t packet
;
66 packet
.time_usec
= time_usec
;
67 packet
.active
= active
;
68 mav_array_memcpy(packet
.actuator
, actuator
, sizeof(float)*32);
69 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), &packet
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
);
72 msg
->msgid
= MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS
;
73 return mavlink_finalize_message(msg
, system_id
, component_id
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_MIN_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_CRC
);
77 * @brief Pack a actuator_output_status message on a channel
78 * @param system_id ID of this system
79 * @param component_id ID of this component (e.g. 200 for IMU)
80 * @param chan The MAVLink channel this message will be sent over
81 * @param msg The MAVLink message to compress the data into
82 * @param time_usec [us] Timestamp (since system boot).
83 * @param active Active outputs
84 * @param actuator Servo / motor output array values. Zero values indicate unused channels.
85 * @return length of the message in bytes (excluding serial stream start sign)
87 static inline uint16_t mavlink_msg_actuator_output_status_pack_chan(uint8_t system_id
, uint8_t component_id
, uint8_t chan
,
88 mavlink_message_t
* msg
,
89 uint64_t time_usec
,uint32_t active
,const float *actuator
)
91 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
92 char buf
[MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
];
93 _mav_put_uint64_t(buf
, 0, time_usec
);
94 _mav_put_uint32_t(buf
, 8, active
);
95 _mav_put_float_array(buf
, 12, actuator
, 32);
96 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), buf
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
);
98 mavlink_actuator_output_status_t packet
;
99 packet
.time_usec
= time_usec
;
100 packet
.active
= active
;
101 mav_array_memcpy(packet
.actuator
, actuator
, sizeof(float)*32);
102 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), &packet
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
);
105 msg
->msgid
= MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS
;
106 return mavlink_finalize_message_chan(msg
, system_id
, component_id
, chan
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_MIN_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_CRC
);
110 * @brief Encode a actuator_output_status struct
112 * @param system_id ID of this system
113 * @param component_id ID of this component (e.g. 200 for IMU)
114 * @param msg The MAVLink message to compress the data into
115 * @param actuator_output_status C-struct to read the message contents from
117 static inline uint16_t mavlink_msg_actuator_output_status_encode(uint8_t system_id
, uint8_t component_id
, mavlink_message_t
* msg
, const mavlink_actuator_output_status_t
* actuator_output_status
)
119 return mavlink_msg_actuator_output_status_pack(system_id
, component_id
, msg
, actuator_output_status
->time_usec
, actuator_output_status
->active
, actuator_output_status
->actuator
);
123 * @brief Encode a actuator_output_status struct on a channel
125 * @param system_id ID of this system
126 * @param component_id ID of this component (e.g. 200 for IMU)
127 * @param chan The MAVLink channel this message will be sent over
128 * @param msg The MAVLink message to compress the data into
129 * @param actuator_output_status C-struct to read the message contents from
131 static inline uint16_t mavlink_msg_actuator_output_status_encode_chan(uint8_t system_id
, uint8_t component_id
, uint8_t chan
, mavlink_message_t
* msg
, const mavlink_actuator_output_status_t
* actuator_output_status
)
133 return mavlink_msg_actuator_output_status_pack_chan(system_id
, component_id
, chan
, msg
, actuator_output_status
->time_usec
, actuator_output_status
->active
, actuator_output_status
->actuator
);
137 * @brief Send a actuator_output_status message
138 * @param chan MAVLink channel to send the message
140 * @param time_usec [us] Timestamp (since system boot).
141 * @param active Active outputs
142 * @param actuator Servo / motor output array values. Zero values indicate unused channels.
144 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
146 static inline void mavlink_msg_actuator_output_status_send(mavlink_channel_t chan
, uint64_t time_usec
, uint32_t active
, const float *actuator
)
148 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
149 char buf
[MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
];
150 _mav_put_uint64_t(buf
, 0, time_usec
);
151 _mav_put_uint32_t(buf
, 8, active
);
152 _mav_put_float_array(buf
, 12, actuator
, 32);
153 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS
, buf
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_MIN_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_CRC
);
155 mavlink_actuator_output_status_t packet
;
156 packet
.time_usec
= time_usec
;
157 packet
.active
= active
;
158 mav_array_memcpy(packet
.actuator
, actuator
, sizeof(float)*32);
159 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS
, (const char *)&packet
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_MIN_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_CRC
);
164 * @brief Send a actuator_output_status message
165 * @param chan MAVLink channel to send the message
166 * @param struct The MAVLink struct to serialize
168 static inline void mavlink_msg_actuator_output_status_send_struct(mavlink_channel_t chan
, const mavlink_actuator_output_status_t
* actuator_output_status
)
170 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
171 mavlink_msg_actuator_output_status_send(chan
, actuator_output_status
->time_usec
, actuator_output_status
->active
, actuator_output_status
->actuator
);
173 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS
, (const char *)actuator_output_status
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_MIN_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_CRC
);
177 #if MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN <= MAVLINK_MAX_PAYLOAD_LEN
179 This varient of _send() can be used to save stack space by re-using
180 memory from the receive buffer. The caller provides a
181 mavlink_message_t which is the size of a full mavlink message. This
182 is usually the receive buffer for the channel, and allows a reply to an
183 incoming message with minimum stack space usage.
185 static inline void mavlink_msg_actuator_output_status_send_buf(mavlink_message_t
*msgbuf
, mavlink_channel_t chan
, uint64_t time_usec
, uint32_t active
, const float *actuator
)
187 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
188 char *buf
= (char *)msgbuf
;
189 _mav_put_uint64_t(buf
, 0, time_usec
);
190 _mav_put_uint32_t(buf
, 8, active
);
191 _mav_put_float_array(buf
, 12, actuator
, 32);
192 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS
, buf
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_MIN_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_CRC
);
194 mavlink_actuator_output_status_t
*packet
= (mavlink_actuator_output_status_t
*)msgbuf
;
195 packet
->time_usec
= time_usec
;
196 packet
->active
= active
;
197 mav_array_memcpy(packet
->actuator
, actuator
, sizeof(float)*32);
198 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS
, (const char *)packet
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_MIN_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_CRC
);
205 // MESSAGE ACTUATOR_OUTPUT_STATUS UNPACKING
209 * @brief Get field time_usec from actuator_output_status message
211 * @return [us] Timestamp (since system boot).
213 static inline uint64_t mavlink_msg_actuator_output_status_get_time_usec(const mavlink_message_t
* msg
)
215 return _MAV_RETURN_uint64_t(msg
, 0);
219 * @brief Get field active from actuator_output_status message
221 * @return Active outputs
223 static inline uint32_t mavlink_msg_actuator_output_status_get_active(const mavlink_message_t
* msg
)
225 return _MAV_RETURN_uint32_t(msg
, 8);
229 * @brief Get field actuator from actuator_output_status message
231 * @return Servo / motor output array values. Zero values indicate unused channels.
233 static inline uint16_t mavlink_msg_actuator_output_status_get_actuator(const mavlink_message_t
* msg
, float *actuator
)
235 return _MAV_RETURN_float_array(msg
, actuator
, 32, 12);
239 * @brief Decode a actuator_output_status message into a struct
241 * @param msg The message to decode
242 * @param actuator_output_status C-struct to decode the message contents into
244 static inline void mavlink_msg_actuator_output_status_decode(const mavlink_message_t
* msg
, mavlink_actuator_output_status_t
* actuator_output_status
)
246 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
247 actuator_output_status
->time_usec
= mavlink_msg_actuator_output_status_get_time_usec(msg
);
248 actuator_output_status
->active
= mavlink_msg_actuator_output_status_get_active(msg
);
249 mavlink_msg_actuator_output_status_get_actuator(msg
, actuator_output_status
->actuator
);
251 uint8_t len
= msg
->len
< MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
? msg
->len
: MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
;
252 memset(actuator_output_status
, 0, MAVLINK_MSG_ID_ACTUATOR_OUTPUT_STATUS_LEN
);
253 memcpy(actuator_output_status
, _MAV_PAYLOAD(msg
), len
);