Firmware
protocol.h
Go to the documentation of this file.
1 /****************************************************************************
2  *
3  * Copyright (c) 2012-2017 PX4 Development Team. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in
13  * the documentation and/or other materials provided with the
14  * distribution.
15  * 3. Neither the name PX4 nor the names of its contributors may be
16  * used to endorse or promote products derived from this software
17  * without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  *
32  ****************************************************************************/
33 
34 #pragma once
35 
36 #include <inttypes.h>
37 
74 /* Per C, this is safe for all 2's complement systems */
75 #define REG_TO_SIGNED(_reg) ((int16_t)(_reg))
76 #define SIGNED_TO_REG(_signed) ((uint16_t)(_signed))
77 
78 #define REG_TO_FLOAT(_reg) ((float)REG_TO_SIGNED(_reg) / 10000.0f)
79 #define FLOAT_TO_REG(_float) SIGNED_TO_REG((int16_t)floorf((_float + 0.00005f) * 10000.0f))
80 
81 #define REG_TO_BOOL(_reg) ((bool)(_reg))
82 
83 #define PX4IO_PROTOCOL_VERSION 4
84 
85 /* maximum allowable sizes on this protocol version */
86 #define PX4IO_PROTOCOL_MAX_CONTROL_COUNT 8
88 /* static configuration page */
89 #define PX4IO_PAGE_CONFIG 0
90 #define PX4IO_P_CONFIG_PROTOCOL_VERSION 0 /* PX4IO_PROTOCOL_VERSION */
91 #define PX4IO_P_CONFIG_HARDWARE_VERSION 1 /* magic numbers TBD */
92 #define PX4IO_P_CONFIG_BOOTLOADER_VERSION 2 /* get this how? */
93 #define PX4IO_P_CONFIG_MAX_TRANSFER 3 /* maximum I2C transfer size */
94 #define PX4IO_P_CONFIG_CONTROL_COUNT 4 /* hardcoded max control count supported */
95 #define PX4IO_P_CONFIG_ACTUATOR_COUNT 5 /* hardcoded max actuator output count */
96 #define PX4IO_P_CONFIG_RC_INPUT_COUNT 6 /* hardcoded max R/C input count supported */
97 #define PX4IO_P_CONFIG_ADC_INPUT_COUNT 7 /* hardcoded max ADC inputs */
98 #define PX4IO_P_CONFIG_RELAY_COUNT 8 /* hardcoded # of relay outputs */
99 #define PX4IO_MAX_TRANSFER_LEN 64
100 
101 /* dynamic status page */
102 #define PX4IO_PAGE_STATUS 1
103 #define PX4IO_P_STATUS_FREEMEM 0
104 #define PX4IO_P_STATUS_CPULOAD 1
105 
106 #define PX4IO_P_STATUS_FLAGS 2 /* monitoring flags */
107 #define PX4IO_P_STATUS_FLAGS_OUTPUTS_ARMED (1 << 0) /* arm-ok and locally armed */
108 #define PX4IO_P_STATUS_FLAGS_OVERRIDE (1 << 1) /* in manual override */
109 #define PX4IO_P_STATUS_FLAGS_RC_OK (1 << 2) /* RC input is valid */
110 #define PX4IO_P_STATUS_FLAGS_RC_PPM (1 << 3) /* PPM input is valid */
111 #define PX4IO_P_STATUS_FLAGS_RC_DSM (1 << 4) /* DSM input is valid */
112 #define PX4IO_P_STATUS_FLAGS_RC_SBUS (1 << 5) /* SBUS input is valid */
113 #define PX4IO_P_STATUS_FLAGS_FMU_OK (1 << 6) /* controls from FMU are valid */
114 #define PX4IO_P_STATUS_FLAGS_RAW_PWM (1 << 7) /* raw PWM from FMU is bypassing the mixer */
115 #define PX4IO_P_STATUS_FLAGS_MIXER_OK (1 << 8) /* mixer is OK */
116 #define PX4IO_P_STATUS_FLAGS_ARM_SYNC (1 << 9) /* the arming state between IO and FMU is in sync */
117 #define PX4IO_P_STATUS_FLAGS_INIT_OK (1 << 10) /* initialisation of the IO completed without error */
118 #define PX4IO_P_STATUS_FLAGS_FAILSAFE (1 << 11) /* failsafe is active */
119 #define PX4IO_P_STATUS_FLAGS_SAFETY_OFF (1 << 12) /* safety is off */
120 #define PX4IO_P_STATUS_FLAGS_FMU_INITIALIZED (1 << 13) /* FMU was initialized and OK once */
121 #define PX4IO_P_STATUS_FLAGS_RC_ST24 (1 << 14) /* ST24 input is valid */
122 #define PX4IO_P_STATUS_FLAGS_RC_SUMD (1 << 15) /* SUMD input is valid */
123 
124 #define PX4IO_P_STATUS_ALARMS 3 /* alarm flags - alarms latch, write 1 to a bit to clear it */
125 #define PX4IO_P_STATUS_ALARMS_VBATT_LOW (1 << 0) /* [1] VBatt is very close to regulator dropout */
126 #define PX4IO_P_STATUS_ALARMS_TEMPERATURE (1 << 1) /* board temperature is high */
127 #define PX4IO_P_STATUS_ALARMS_SERVO_CURRENT (1 << 2) /* [1] servo current limit was exceeded */
128 #define PX4IO_P_STATUS_ALARMS_ACC_CURRENT (1 << 3) /* [1] accessory current limit was exceeded */
129 #define PX4IO_P_STATUS_ALARMS_FMU_LOST (1 << 4) /* timed out waiting for controls from FMU */
130 #define PX4IO_P_STATUS_ALARMS_RC_LOST (1 << 5) /* timed out waiting for RC input */
131 #define PX4IO_P_STATUS_ALARMS_PWM_ERROR (1 << 6) /* PWM configuration or output was bad */
132 #define PX4IO_P_STATUS_ALARMS_VSERVO_FAULT (1 << 7) /* [2] VServo was out of the valid range (2.5 - 5.5 V) */
133 
134 #define PX4IO_P_STATUS_VSERVO 6 /* [2] servo rail voltage in mV */
135 #define PX4IO_P_STATUS_VRSSI 7 /* [2] RSSI voltage */
136 #define PX4IO_P_STATUS_PRSSI 8 /* [2] RSSI PWM value */
137 
138 #define PX4IO_P_STATUS_MIXER 9 /* mixer actuator limit flags */
139 
140 /* array of post-mix actuator outputs, -10000..10000 */
141 #define PX4IO_PAGE_ACTUATORS 2 /* 0..CONFIG_ACTUATOR_COUNT-1 */
142 
143 /* array of PWM servo output values, microseconds */
144 #define PX4IO_PAGE_SERVOS 3 /* 0..CONFIG_ACTUATOR_COUNT-1 */
145 
146 /* array of raw RC input values, microseconds */
147 #define PX4IO_PAGE_RAW_RC_INPUT 4
148 #define PX4IO_P_RAW_RC_COUNT 0 /* number of valid channels */
149 #define PX4IO_P_RAW_RC_FLAGS 1 /* RC detail status flags */
150 #define PX4IO_P_RAW_RC_FLAGS_FRAME_DROP (1 << 0) /* single frame drop */
151 #define PX4IO_P_RAW_RC_FLAGS_FAILSAFE (1 << 1) /* receiver is in failsafe mode */
152 #define PX4IO_P_RAW_RC_FLAGS_RC_DSM11 (1 << 2) /* DSM decoding is 11 bit mode */
153 #define PX4IO_P_RAW_RC_FLAGS_MAPPING_OK (1 << 3) /* Channel mapping is ok */
154 #define PX4IO_P_RAW_RC_FLAGS_RC_OK (1 << 4) /* RC reception ok */
155 
156 #define PX4IO_P_RAW_RC_NRSSI 2 /* [2] Normalized RSSI value, 0: no reception, 255: perfect reception */
157 #define PX4IO_P_RAW_RC_DATA 3 /* [1] + [2] Details about the RC source (PPM frame length, Spektrum protocol type) */
158 #define PX4IO_P_RAW_FRAME_COUNT 4 /* Number of total received frames (wrapping counter) */
159 #define PX4IO_P_RAW_LOST_FRAME_COUNT 5 /* Number of total dropped frames (wrapping counter) */
160 #define PX4IO_P_RAW_RC_BASE 6 /* CONFIG_RC_INPUT_COUNT channels from here */
161 
162 /* array of scaled RC input values, -10000..10000 */
163 #define PX4IO_PAGE_RC_INPUT 5
164 #define PX4IO_P_RC_VALID 0 /* bitmask of valid controls */
165 #define PX4IO_P_RC_BASE 1 /* CONFIG_RC_INPUT_COUNT controls from here */
166 
167 /* array of raw ADC values */
168 #define PX4IO_PAGE_RAW_ADC_INPUT 6 /* 0..CONFIG_ADC_INPUT_COUNT-1 */
169 
170 /* PWM servo information */
171 #define PX4IO_PAGE_PWM_INFO 7
172 #define PX4IO_RATE_MAP_BASE 0 /* 0..CONFIG_ACTUATOR_COUNT bitmaps of PWM rate groups */
173 
174 /* setup page */
175 #define PX4IO_PAGE_SETUP 50
176 #define PX4IO_P_SETUP_FEATURES 0
177 #define PX4IO_P_SETUP_FEATURES_SBUS1_OUT (1 << 0)
178 #define PX4IO_P_SETUP_FEATURES_SBUS2_OUT (1 << 1)
179 #define PX4IO_P_SETUP_FEATURES_PWM_RSSI (1 << 2)
180 #define PX4IO_P_SETUP_FEATURES_ADC_RSSI (1 << 3)
182 #define PX4IO_P_SETUP_ARMING 1 /* arming controls */
183 #define PX4IO_P_SETUP_ARMING_IO_ARM_OK (1 << 0) /* OK to arm the IO side */
184 #define PX4IO_P_SETUP_ARMING_FMU_ARMED (1 << 1) /* FMU is already armed */
185 #define PX4IO_P_SETUP_ARMING_MANUAL_OVERRIDE_OK (1 << 2) /* OK to switch to manual override via override RC channel */
186 #define PX4IO_P_SETUP_ARMING_FAILSAFE_CUSTOM (1 << 3) /* use custom failsafe values, not 0 values of mixer */
187 #define PX4IO_P_SETUP_ARMING_INAIR_RESTART_OK (1 << 4) /* OK to try in-air restart */
188 #define PX4IO_P_SETUP_ARMING_ALWAYS_PWM_ENABLE (1 << 5) /* Output of PWM right after startup enabled to help ESCs initialize and prevent them from beeping */
189 #define PX4IO_P_SETUP_ARMING_RC_HANDLING_DISABLED (1 << 6) /* Disable the IO-internal evaluation of the RC */
190 #define PX4IO_P_SETUP_ARMING_LOCKDOWN (1 << 7) /* If set, the system operates normally, but won't actuate any servos */
191 #define PX4IO_P_SETUP_ARMING_FORCE_FAILSAFE (1 << 8) /* If set, the system will always output the failsafe values */
192 #define PX4IO_P_SETUP_ARMING_TERMINATION_FAILSAFE (1 << 9) /* If set, the system will never return from a failsafe, but remain in failsafe once triggered. */
193 #define PX4IO_P_SETUP_ARMING_OVERRIDE_IMMEDIATE (1 << 10) /* If set then on FMU failure override is immediate. Othewise it waits for the mode switch to go past the override thrshold */
194 
195 #define PX4IO_P_SETUP_PWM_RATES 2 /* bitmask, 0 = low rate, 1 = high rate */
196 #define PX4IO_P_SETUP_PWM_DEFAULTRATE 3 /* 'low' PWM frame output rate in Hz */
197 #define PX4IO_P_SETUP_PWM_ALTRATE 4 /* 'high' PWM frame output rate in Hz */
198 #define PX4IO_P_SETUP_RELAYS_PAD 5
199 
200 #define PX4IO_P_SETUP_VSERVO_SCALE 6 /* hardware rev [2] servo voltage correction factor (float) */
201 #define PX4IO_P_SETUP_DSM 7 /* DSM bind state */
202 enum { /* DSM bind states */
203  dsm_bind_power_down = 0,
204  dsm_bind_power_up,
205  dsm_bind_set_rx_out,
206  dsm_bind_send_pulses,
207  dsm_bind_reinit_uart
208 };
209 /* 8 */
210 #define PX4IO_P_SETUP_SET_DEBUG 9 /* debug level for IO board */
211 
212 #define PX4IO_P_SETUP_REBOOT_BL 10 /* reboot IO into bootloader */
213 #define PX4IO_REBOOT_BL_MAGIC 14662 /* required argument for reboot (random) */
214 
215 #define PX4IO_P_SETUP_CRC 11 /* get CRC of IO firmware */
216 /* storage space of 12 occupied by CRC */
217 #define PX4IO_P_SETUP_FORCE_SAFETY_OFF 12 /* force safety switch into
218  'armed' (PWM enabled) state - this is a non-data write and
219  hence index 12 can safely be used. */
220 #define PX4IO_P_SETUP_RC_THR_FAILSAFE_US 13
222 #define PX4IO_P_SETUP_FORCE_SAFETY_ON 14 /* force safety switch into 'disarmed' (PWM disabled state) */
223 #define PX4IO_FORCE_SAFETY_MAGIC 22027 /* required argument for force safety (random) */
224 
225 #define PX4IO_P_SETUP_PWM_REVERSE 15
226 #define PX4IO_P_SETUP_TRIM_ROLL 16
227 #define PX4IO_P_SETUP_TRIM_PITCH 17
228 #define PX4IO_P_SETUP_TRIM_YAW 18
229 #define PX4IO_P_SETUP_SCALE_ROLL 19
230 #define PX4IO_P_SETUP_SCALE_PITCH 20
231 #define PX4IO_P_SETUP_SCALE_YAW 21
233 #define PX4IO_P_SETUP_SBUS_RATE 22 /* frame rate of SBUS1 output in Hz */
234 
235 #define PX4IO_P_SETUP_MOTOR_SLEW_MAX 24 /* max motor slew rate */
236 
237 #define PX4IO_P_SETUP_THR_MDL_FAC 25 /* factor for modelling static pwm output to thrust relationship */
238 
239 #define PX4IO_P_SETUP_THERMAL 26 /* thermal management */
240 
241 #define PX4IO_P_SETUP_AIRMODE 27 /* air-mode */
242 
243 #define PX4IO_THERMAL_IGNORE UINT16_MAX
244 #define PX4IO_THERMAL_OFF 0
245 #define PX4IO_THERMAL_FULL 10000
246 
247 /* autopilot control values, -10000..10000 */
248 #define PX4IO_PAGE_CONTROLS 51
249 #define PX4IO_P_CONTROLS_GROUP_0 (PX4IO_PROTOCOL_MAX_CONTROL_COUNT * 0)
250 #define PX4IO_P_CONTROLS_GROUP_1 (PX4IO_PROTOCOL_MAX_CONTROL_COUNT * 1)
251 #define PX4IO_P_CONTROLS_GROUP_2 (PX4IO_PROTOCOL_MAX_CONTROL_COUNT * 2)
252 #define PX4IO_P_CONTROLS_GROUP_3 (PX4IO_PROTOCOL_MAX_CONTROL_COUNT * 3)
254 #define PX4IO_P_CONTROLS_GROUP_VALID 64
255 #define PX4IO_P_CONTROLS_GROUP_VALID_GROUP0 (1 << 0)
256 #define PX4IO_P_CONTROLS_GROUP_VALID_GROUP1 (1 << 1)
257 #define PX4IO_P_CONTROLS_GROUP_VALID_GROUP2 (1 << 2)
258 #define PX4IO_P_CONTROLS_GROUP_VALID_GROUP3 (1 << 3)
260 /* raw text load to the mixer parser - ignores offset */
261 #define PX4IO_PAGE_MIXERLOAD 52
262 
263 /* R/C channel config */
264 #define PX4IO_PAGE_RC_CONFIG 53
265 #define PX4IO_P_RC_CONFIG_MIN 0
266 #define PX4IO_P_RC_CONFIG_CENTER 1
267 #define PX4IO_P_RC_CONFIG_MAX 2
268 #define PX4IO_P_RC_CONFIG_DEADZONE 3
269 #define PX4IO_P_RC_CONFIG_ASSIGNMENT 4
270 #define PX4IO_P_RC_CONFIG_ASSIGNMENT_MODESWITCH 100
271 #define PX4IO_P_RC_CONFIG_OPTIONS 5
272 #define PX4IO_P_RC_CONFIG_OPTIONS_ENABLED (1 << 0)
273 #define PX4IO_P_RC_CONFIG_OPTIONS_REVERSE (1 << 1)
274 #define PX4IO_P_RC_CONFIG_STRIDE 6
276 /* PWM output - overrides mixer */
277 #define PX4IO_PAGE_DIRECT_PWM 54
279 /* PWM failsafe values - zero disables the output */
280 #define PX4IO_PAGE_FAILSAFE_PWM 55
282 /* PWM failsafe values - zero disables the output */
283 #define PX4IO_PAGE_SENSORS 56
284 #define PX4IO_P_SENSORS_ALTITUDE 0
286 /* Debug and test page - not used in normal operation */
287 #define PX4IO_PAGE_TEST 127
288 #define PX4IO_P_TEST_LED 0
290 /* PWM minimum values for certain ESCs */
291 #define PX4IO_PAGE_CONTROL_MIN_PWM 106
293 /* PWM maximum values for certain ESCs */
294 #define PX4IO_PAGE_CONTROL_MAX_PWM 107
296 /* PWM mtrim values for central position */
297 #define PX4IO_PAGE_CONTROL_TRIM_PWM 108
299 /* PWM disarmed values that are active, even when SAFETY_SAFE */
300 #define PX4IO_PAGE_DISARMED_PWM 109 /* 0..CONFIG_ACTUATOR_COUNT-1 */
301 
308 #pragma pack(push, 1)
310  uint16_t f2i_mixer_magic;
311 #define F2I_MIXER_MAGIC 0x6d74
312 
313  uint8_t action;
314 #define F2I_MIXER_ACTION_RESET 0
315 #define F2I_MIXER_ACTION_APPEND 1
316 
317  char text[0]; /* actual text size may vary */
318 };
319 #pragma pack(pop)
320 
325 #define PKT_MAX_REGS 32 // by agreement w/FMU
326 
327 #pragma pack(push, 1)
328 struct IOPacket {
329  uint8_t count_code;
330  uint8_t crc;
331  uint8_t page;
332  uint8_t offset;
333  uint16_t regs[PKT_MAX_REGS];
334 };
335 #pragma pack(pop)
336 
337 #if (PX4IO_MAX_TRANSFER_LEN > PKT_MAX_REGS * 2)
338 #error The max transfer length of the IO protocol must not be larger than the IO packet size
339 #endif
340 
341 #define PKT_CODE_READ 0x00 /* FMU->IO read transaction */
342 #define PKT_CODE_WRITE 0x40 /* FMU->IO write transaction */
343 #define PKT_CODE_SUCCESS 0x00 /* IO->FMU success reply */
344 #define PKT_CODE_CORRUPT 0x40 /* IO->FMU bad packet reply */
345 #define PKT_CODE_ERROR 0x80 /* IO->FMU register op error reply */
346 
347 #define PKT_CODE_MASK 0xc0
348 #define PKT_COUNT_MASK 0x3f
349 
350 #define PKT_COUNT(_p) ((_p).count_code & PKT_COUNT_MASK)
351 #define PKT_CODE(_p) ((_p).count_code & PKT_CODE_MASK)
352 #define PKT_SIZE(_p) ((size_t)((uint8_t *)&((_p).regs[PKT_COUNT(_p)]) - ((uint8_t *)&(_p))))
353 
354 static const uint8_t crc8_tab[256] __attribute__((unused)) = {
355  0x00, 0x07, 0x0E, 0x09, 0x1C, 0x1B, 0x12, 0x15,
356  0x38, 0x3F, 0x36, 0x31, 0x24, 0x23, 0x2A, 0x2D,
357  0x70, 0x77, 0x7E, 0x79, 0x6C, 0x6B, 0x62, 0x65,
358  0x48, 0x4F, 0x46, 0x41, 0x54, 0x53, 0x5A, 0x5D,
359  0xE0, 0xE7, 0xEE, 0xE9, 0xFC, 0xFB, 0xF2, 0xF5,
360  0xD8, 0xDF, 0xD6, 0xD1, 0xC4, 0xC3, 0xCA, 0xCD,
361  0x90, 0x97, 0x9E, 0x99, 0x8C, 0x8B, 0x82, 0x85,
362  0xA8, 0xAF, 0xA6, 0xA1, 0xB4, 0xB3, 0xBA, 0xBD,
363  0xC7, 0xC0, 0xC9, 0xCE, 0xDB, 0xDC, 0xD5, 0xD2,
364  0xFF, 0xF8, 0xF1, 0xF6, 0xE3, 0xE4, 0xED, 0xEA,
365  0xB7, 0xB0, 0xB9, 0xBE, 0xAB, 0xAC, 0xA5, 0xA2,
366  0x8F, 0x88, 0x81, 0x86, 0x93, 0x94, 0x9D, 0x9A,
367  0x27, 0x20, 0x29, 0x2E, 0x3B, 0x3C, 0x35, 0x32,
368  0x1F, 0x18, 0x11, 0x16, 0x03, 0x04, 0x0D, 0x0A,
369  0x57, 0x50, 0x59, 0x5E, 0x4B, 0x4C, 0x45, 0x42,
370  0x6F, 0x68, 0x61, 0x66, 0x73, 0x74, 0x7D, 0x7A,
371  0x89, 0x8E, 0x87, 0x80, 0x95, 0x92, 0x9B, 0x9C,
372  0xB1, 0xB6, 0xBF, 0xB8, 0xAD, 0xAA, 0xA3, 0xA4,
373  0xF9, 0xFE, 0xF7, 0xF0, 0xE5, 0xE2, 0xEB, 0xEC,
374  0xC1, 0xC6, 0xCF, 0xC8, 0xDD, 0xDA, 0xD3, 0xD4,
375  0x69, 0x6E, 0x67, 0x60, 0x75, 0x72, 0x7B, 0x7C,
376  0x51, 0x56, 0x5F, 0x58, 0x4D, 0x4A, 0x43, 0x44,
377  0x19, 0x1E, 0x17, 0x10, 0x05, 0x02, 0x0B, 0x0C,
378  0x21, 0x26, 0x2F, 0x28, 0x3D, 0x3A, 0x33, 0x34,
379  0x4E, 0x49, 0x40, 0x47, 0x52, 0x55, 0x5C, 0x5B,
380  0x76, 0x71, 0x78, 0x7F, 0x6A, 0x6D, 0x64, 0x63,
381  0x3E, 0x39, 0x30, 0x37, 0x22, 0x25, 0x2C, 0x2B,
382  0x06, 0x01, 0x08, 0x0F, 0x1A, 0x1D, 0x14, 0x13,
383  0xAE, 0xA9, 0xA0, 0xA7, 0xB2, 0xB5, 0xBC, 0xBB,
384  0x96, 0x91, 0x98, 0x9F, 0x8A, 0x8D, 0x84, 0x83,
385  0xDE, 0xD9, 0xD0, 0xD7, 0xC2, 0xC5, 0xCC, 0xCB,
386  0xE6, 0xE1, 0xE8, 0xEF, 0xFA, 0xFD, 0xF4, 0xF3
387 };
388 
389 static uint8_t crc_packet(struct IOPacket *pkt) __attribute__((unused));
390 static uint8_t
391 crc_packet(struct IOPacket *pkt)
392 {
393  uint8_t *end = (uint8_t *)(&pkt->regs[PKT_COUNT(*pkt)]);
394  uint8_t *p = (uint8_t *)pkt;
395  uint8_t c = 0;
396 
397  while (p < end) {
398  c = crc8_tab[c ^ * (p++)];
399  }
400 
401  return c;
402 }
Definition: crtp.h:57
As-needed mixer data upload.
Definition: protocol.h:309
#define PKT_MAX_REGS
Serial protocol encapsulation.
Definition: protocol.h:325
Definition: protocol.h:328