mavlink_msg_rc_channels_raw.h 11.4 KB
Newer Older
James Goppert's avatar
James Goppert committed
1 2 3
// MESSAGE RC_CHANNELS_RAW PACKING

#define MAVLINK_MSG_ID_RC_CHANNELS_RAW 35
lm's avatar
lm committed
4 5
#define MAVLINK_MSG_ID_RC_CHANNELS_RAW_LEN 17
#define MAVLINK_MSG_35_LEN 17
lm's avatar
lm committed
6 7
#define MAVLINK_MSG_ID_RC_CHANNELS_RAW_KEY 0x2B
#define MAVLINK_MSG_35_KEY 0x2B
James Goppert's avatar
James Goppert committed
8 9 10

typedef struct __mavlink_rc_channels_raw_t 
{
lm's avatar
lm committed
11 12 13 14 15 16 17 18 19
	uint16_t chan1_raw;	///< RC channel 1 value, in microseconds
	uint16_t chan2_raw;	///< RC channel 2 value, in microseconds
	uint16_t chan3_raw;	///< RC channel 3 value, in microseconds
	uint16_t chan4_raw;	///< RC channel 4 value, in microseconds
	uint16_t chan5_raw;	///< RC channel 5 value, in microseconds
	uint16_t chan6_raw;	///< RC channel 6 value, in microseconds
	uint16_t chan7_raw;	///< RC channel 7 value, in microseconds
	uint16_t chan8_raw;	///< RC channel 8 value, in microseconds
	uint8_t rssi;	///< Receive signal strength indicator, 0: 0%, 255: 100%
James Goppert's avatar
James Goppert committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

} mavlink_rc_channels_raw_t;

/**
 * @brief Pack a rc_channels_raw 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 chan1_raw RC channel 1 value, in microseconds
 * @param chan2_raw RC channel 2 value, in microseconds
 * @param chan3_raw RC channel 3 value, in microseconds
 * @param chan4_raw RC channel 4 value, in microseconds
 * @param chan5_raw RC channel 5 value, in microseconds
 * @param chan6_raw RC channel 6 value, in microseconds
 * @param chan7_raw RC channel 7 value, in microseconds
 * @param chan8_raw RC channel 8 value, in microseconds
 * @param rssi Receive signal strength indicator, 0: 0%, 255: 100%
 * @return length of the message in bytes (excluding serial stream start sign)
 */
static inline uint16_t mavlink_msg_rc_channels_raw_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, uint16_t chan1_raw, uint16_t chan2_raw, uint16_t chan3_raw, uint16_t chan4_raw, uint16_t chan5_raw, uint16_t chan6_raw, uint16_t chan7_raw, uint16_t chan8_raw, uint8_t rssi)
{
lm's avatar
lm committed
42
	mavlink_rc_channels_raw_t *p = (mavlink_rc_channels_raw_t *)&msg->payload[0];
James Goppert's avatar
James Goppert committed
43 44
	msg->msgid = MAVLINK_MSG_ID_RC_CHANNELS_RAW;

lm's avatar
lm committed
45 46 47 48 49 50 51 52 53
	p->chan1_raw = chan1_raw;	// uint16_t:RC channel 1 value, in microseconds
	p->chan2_raw = chan2_raw;	// uint16_t:RC channel 2 value, in microseconds
	p->chan3_raw = chan3_raw;	// uint16_t:RC channel 3 value, in microseconds
	p->chan4_raw = chan4_raw;	// uint16_t:RC channel 4 value, in microseconds
	p->chan5_raw = chan5_raw;	// uint16_t:RC channel 5 value, in microseconds
	p->chan6_raw = chan6_raw;	// uint16_t:RC channel 6 value, in microseconds
	p->chan7_raw = chan7_raw;	// uint16_t:RC channel 7 value, in microseconds
	p->chan8_raw = chan8_raw;	// uint16_t:RC channel 8 value, in microseconds
	p->rssi = rssi;	// uint8_t:Receive signal strength indicator, 0: 0%, 255: 100%
James Goppert's avatar
James Goppert committed
54

lm's avatar
lm committed
55
	return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_RC_CHANNELS_RAW_LEN);
James Goppert's avatar
James Goppert committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
}

/**
 * @brief Pack a rc_channels_raw message
 * @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 was sent over
 * @param msg The MAVLink message to compress the data into
 * @param chan1_raw RC channel 1 value, in microseconds
 * @param chan2_raw RC channel 2 value, in microseconds
 * @param chan3_raw RC channel 3 value, in microseconds
 * @param chan4_raw RC channel 4 value, in microseconds
 * @param chan5_raw RC channel 5 value, in microseconds
 * @param chan6_raw RC channel 6 value, in microseconds
 * @param chan7_raw RC channel 7 value, in microseconds
 * @param chan8_raw RC channel 8 value, in microseconds
 * @param rssi Receive signal strength indicator, 0: 0%, 255: 100%
 * @return length of the message in bytes (excluding serial stream start sign)
 */
static inline uint16_t mavlink_msg_rc_channels_raw_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, uint16_t chan1_raw, uint16_t chan2_raw, uint16_t chan3_raw, uint16_t chan4_raw, uint16_t chan5_raw, uint16_t chan6_raw, uint16_t chan7_raw, uint16_t chan8_raw, uint8_t rssi)
{
lm's avatar
lm committed
77
	mavlink_rc_channels_raw_t *p = (mavlink_rc_channels_raw_t *)&msg->payload[0];
James Goppert's avatar
James Goppert committed
78 79
	msg->msgid = MAVLINK_MSG_ID_RC_CHANNELS_RAW;

lm's avatar
lm committed
80 81 82 83 84 85 86 87 88
	p->chan1_raw = chan1_raw;	// uint16_t:RC channel 1 value, in microseconds
	p->chan2_raw = chan2_raw;	// uint16_t:RC channel 2 value, in microseconds
	p->chan3_raw = chan3_raw;	// uint16_t:RC channel 3 value, in microseconds
	p->chan4_raw = chan4_raw;	// uint16_t:RC channel 4 value, in microseconds
	p->chan5_raw = chan5_raw;	// uint16_t:RC channel 5 value, in microseconds
	p->chan6_raw = chan6_raw;	// uint16_t:RC channel 6 value, in microseconds
	p->chan7_raw = chan7_raw;	// uint16_t:RC channel 7 value, in microseconds
	p->chan8_raw = chan8_raw;	// uint16_t:RC channel 8 value, in microseconds
	p->rssi = rssi;	// uint8_t:Receive signal strength indicator, 0: 0%, 255: 100%
James Goppert's avatar
James Goppert committed
89

lm's avatar
lm committed
90
	return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_RC_CHANNELS_RAW_LEN);
James Goppert's avatar
James Goppert committed
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
}

/**
 * @brief Encode a rc_channels_raw struct into a 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 rc_channels_raw C-struct to read the message contents from
 */
static inline uint16_t mavlink_msg_rc_channels_raw_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_rc_channels_raw_t* rc_channels_raw)
{
	return mavlink_msg_rc_channels_raw_pack(system_id, component_id, msg, rc_channels_raw->chan1_raw, rc_channels_raw->chan2_raw, rc_channels_raw->chan3_raw, rc_channels_raw->chan4_raw, rc_channels_raw->chan5_raw, rc_channels_raw->chan6_raw, rc_channels_raw->chan7_raw, rc_channels_raw->chan8_raw, rc_channels_raw->rssi);
}

lm's avatar
lm committed
106 107

#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
James Goppert's avatar
James Goppert committed
108 109 110 111 112 113 114 115 116 117 118 119 120 121
/**
 * @brief Send a rc_channels_raw message
 * @param chan MAVLink channel to send the message
 *
 * @param chan1_raw RC channel 1 value, in microseconds
 * @param chan2_raw RC channel 2 value, in microseconds
 * @param chan3_raw RC channel 3 value, in microseconds
 * @param chan4_raw RC channel 4 value, in microseconds
 * @param chan5_raw RC channel 5 value, in microseconds
 * @param chan6_raw RC channel 6 value, in microseconds
 * @param chan7_raw RC channel 7 value, in microseconds
 * @param chan8_raw RC channel 8 value, in microseconds
 * @param rssi Receive signal strength indicator, 0: 0%, 255: 100%
 */
lm's avatar
lm committed
122 123 124 125
static inline void mavlink_msg_rc_channels_raw_send(mavlink_channel_t chan, uint16_t chan1_raw, uint16_t chan2_raw, uint16_t chan3_raw, uint16_t chan4_raw, uint16_t chan5_raw, uint16_t chan6_raw, uint16_t chan7_raw, uint16_t chan8_raw, uint8_t rssi)
{
	mavlink_header_t hdr;
	mavlink_rc_channels_raw_t payload;
lm's avatar
lm committed
126 127 128 129 130 131 132 133 134 135 136

	MAVLINK_BUFFER_CHECK_START( chan, MAVLINK_MSG_ID_RC_CHANNELS_RAW_LEN )
	payload.chan1_raw = chan1_raw;	// uint16_t:RC channel 1 value, in microseconds
	payload.chan2_raw = chan2_raw;	// uint16_t:RC channel 2 value, in microseconds
	payload.chan3_raw = chan3_raw;	// uint16_t:RC channel 3 value, in microseconds
	payload.chan4_raw = chan4_raw;	// uint16_t:RC channel 4 value, in microseconds
	payload.chan5_raw = chan5_raw;	// uint16_t:RC channel 5 value, in microseconds
	payload.chan6_raw = chan6_raw;	// uint16_t:RC channel 6 value, in microseconds
	payload.chan7_raw = chan7_raw;	// uint16_t:RC channel 7 value, in microseconds
	payload.chan8_raw = chan8_raw;	// uint16_t:RC channel 8 value, in microseconds
	payload.rssi = rssi;	// uint8_t:Receive signal strength indicator, 0: 0%, 255: 100%
lm's avatar
lm committed
137 138 139 140 141 142 143 144 145 146

	hdr.STX = MAVLINK_STX;
	hdr.len = MAVLINK_MSG_ID_RC_CHANNELS_RAW_LEN;
	hdr.msgid = MAVLINK_MSG_ID_RC_CHANNELS_RAW;
	hdr.sysid = mavlink_system.sysid;
	hdr.compid = mavlink_system.compid;
	hdr.seq = mavlink_get_channel_status(chan)->current_tx_seq;
	mavlink_get_channel_status(chan)->current_tx_seq = hdr.seq + 1;
	mavlink_send_mem(chan, (uint8_t *)&hdr.STX, MAVLINK_NUM_HEADER_BYTES );

lm's avatar
lm committed
147 148 149 150 151 152
	crc_init(&hdr.ck);
	crc_calculate_mem((uint8_t *)&hdr.len, &hdr.ck, MAVLINK_CORE_HEADER_LEN);
	crc_calculate_mem((uint8_t *)&payload, &hdr.ck, hdr.len );
	crc_accumulate( 0x2B, &hdr.ck); /// include key in X25 checksum
	mavlink_send_mem(chan, (uint8_t *)&hdr.ck, MAVLINK_NUM_CHECKSUM_BYTES);
	MAVLINK_BUFFER_CHECK_END
James Goppert's avatar
James Goppert committed
153 154 155 156 157 158 159 160 161 162 163 164
}

#endif
// MESSAGE RC_CHANNELS_RAW UNPACKING

/**
 * @brief Get field chan1_raw from rc_channels_raw message
 *
 * @return RC channel 1 value, in microseconds
 */
static inline uint16_t mavlink_msg_rc_channels_raw_get_chan1_raw(const mavlink_message_t* msg)
{
lm's avatar
lm committed
165 166
	mavlink_rc_channels_raw_t *p = (mavlink_rc_channels_raw_t *)&msg->payload[0];
	return (uint16_t)(p->chan1_raw);
James Goppert's avatar
James Goppert committed
167 168 169 170 171 172 173 174 175
}

/**
 * @brief Get field chan2_raw from rc_channels_raw message
 *
 * @return RC channel 2 value, in microseconds
 */
static inline uint16_t mavlink_msg_rc_channels_raw_get_chan2_raw(const mavlink_message_t* msg)
{
lm's avatar
lm committed
176 177
	mavlink_rc_channels_raw_t *p = (mavlink_rc_channels_raw_t *)&msg->payload[0];
	return (uint16_t)(p->chan2_raw);
James Goppert's avatar
James Goppert committed
178 179 180 181 182 183 184 185 186
}

/**
 * @brief Get field chan3_raw from rc_channels_raw message
 *
 * @return RC channel 3 value, in microseconds
 */
static inline uint16_t mavlink_msg_rc_channels_raw_get_chan3_raw(const mavlink_message_t* msg)
{
lm's avatar
lm committed
187 188
	mavlink_rc_channels_raw_t *p = (mavlink_rc_channels_raw_t *)&msg->payload[0];
	return (uint16_t)(p->chan3_raw);
James Goppert's avatar
James Goppert committed
189 190 191 192 193 194 195 196 197
}

/**
 * @brief Get field chan4_raw from rc_channels_raw message
 *
 * @return RC channel 4 value, in microseconds
 */
static inline uint16_t mavlink_msg_rc_channels_raw_get_chan4_raw(const mavlink_message_t* msg)
{
lm's avatar
lm committed
198 199
	mavlink_rc_channels_raw_t *p = (mavlink_rc_channels_raw_t *)&msg->payload[0];
	return (uint16_t)(p->chan4_raw);
James Goppert's avatar
James Goppert committed
200 201 202 203 204 205 206 207 208
}

/**
 * @brief Get field chan5_raw from rc_channels_raw message
 *
 * @return RC channel 5 value, in microseconds
 */
static inline uint16_t mavlink_msg_rc_channels_raw_get_chan5_raw(const mavlink_message_t* msg)
{
lm's avatar
lm committed
209 210
	mavlink_rc_channels_raw_t *p = (mavlink_rc_channels_raw_t *)&msg->payload[0];
	return (uint16_t)(p->chan5_raw);
James Goppert's avatar
James Goppert committed
211 212 213 214 215 216 217 218 219
}

/**
 * @brief Get field chan6_raw from rc_channels_raw message
 *
 * @return RC channel 6 value, in microseconds
 */
static inline uint16_t mavlink_msg_rc_channels_raw_get_chan6_raw(const mavlink_message_t* msg)
{
lm's avatar
lm committed
220 221
	mavlink_rc_channels_raw_t *p = (mavlink_rc_channels_raw_t *)&msg->payload[0];
	return (uint16_t)(p->chan6_raw);
James Goppert's avatar
James Goppert committed
222 223 224 225 226 227 228 229 230
}

/**
 * @brief Get field chan7_raw from rc_channels_raw message
 *
 * @return RC channel 7 value, in microseconds
 */
static inline uint16_t mavlink_msg_rc_channels_raw_get_chan7_raw(const mavlink_message_t* msg)
{
lm's avatar
lm committed
231 232
	mavlink_rc_channels_raw_t *p = (mavlink_rc_channels_raw_t *)&msg->payload[0];
	return (uint16_t)(p->chan7_raw);
James Goppert's avatar
James Goppert committed
233 234 235 236 237 238 239 240 241
}

/**
 * @brief Get field chan8_raw from rc_channels_raw message
 *
 * @return RC channel 8 value, in microseconds
 */
static inline uint16_t mavlink_msg_rc_channels_raw_get_chan8_raw(const mavlink_message_t* msg)
{
lm's avatar
lm committed
242 243
	mavlink_rc_channels_raw_t *p = (mavlink_rc_channels_raw_t *)&msg->payload[0];
	return (uint16_t)(p->chan8_raw);
James Goppert's avatar
James Goppert committed
244 245 246 247 248 249 250 251 252
}

/**
 * @brief Get field rssi from rc_channels_raw message
 *
 * @return Receive signal strength indicator, 0: 0%, 255: 100%
 */
static inline uint8_t mavlink_msg_rc_channels_raw_get_rssi(const mavlink_message_t* msg)
{
lm's avatar
lm committed
253 254
	mavlink_rc_channels_raw_t *p = (mavlink_rc_channels_raw_t *)&msg->payload[0];
	return (uint8_t)(p->rssi);
James Goppert's avatar
James Goppert committed
255 256 257 258 259 260 261 262 263 264
}

/**
 * @brief Decode a rc_channels_raw message into a struct
 *
 * @param msg The message to decode
 * @param rc_channels_raw C-struct to decode the message contents into
 */
static inline void mavlink_msg_rc_channels_raw_decode(const mavlink_message_t* msg, mavlink_rc_channels_raw_t* rc_channels_raw)
{
lm's avatar
lm committed
265
	memcpy( rc_channels_raw, msg->payload, sizeof(mavlink_rc_channels_raw_t));
James Goppert's avatar
James Goppert committed
266
}