mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu> Signed-off-by: Julien Olivain <ju.o@free.fr>
8 lines
165 B
Python
8 lines
165 B
Python
from crc import Calculator, Crc8
|
|
|
|
expected = 0xBC
|
|
data = bytes([0, 1, 2, 3, 4, 5])
|
|
calculator = Calculator(Crc8.CCITT)
|
|
|
|
assert expected == calculator.checksum(data)
|