-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
Hi all, I would like to implement the following matlab crc check algorithm in Python using crcmod library:
crc8 = comm.CRCGenerator('Polynomial','z^8 + z^2 + z + 1', 'InitialConditions',1,'DirectMethod',true,'FinalXOR',1);
codeword = crc8([0; 0; 1; 0; 0; 1; 1; 1; 1; 0; 1; 0; 0; 1; 1; 1]);
crc= codeword(end-8+1:end)';
I have implemented it in the following way in python:
crc8_func = crcmod.mkCrcFun(0x107, initCrc=1, rev=False, xorOut=1)
crc_received = [0,0,1,0,0,1,1,1,1,0,1,0,0,1,1,1]
crc = crc8_func(bytes(crc_received))
The expected result should be:
10010001 (binary) or 145 (decimal) or 91 (hex)
But instead I get:
10101001 in binary. Do you know what I am doing wrong?
Thanks in advance for the help.
Metadata
Metadata
Assignees
Labels
No labels