rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
crc8hondak.h
Go to the documentation of this file.
1/*
2 * crc8hondak.h
3 *
4 * Code generated by universal_crc by Danjel McGougan
5 *
6 * matches CRC8_EBU with 0xFF OutXor
7 *
8 * CRC parameters used:
9 * bits: 8
10 * poly: 0x1d
11 * init: 0xff
12 * xor: 0xff
13 * reverse: true
14 * non-direct: false
15 *
16 * CRC of the string "123456789" is 0x68
17 *
18 * keywords: honda checksum
19 */
20
21uint8_t crc_hondak_calc(const uint8_t *data, size_t len);
uint8_t crc_hondak_calc(const uint8_t *data, size_t len)