Skip to content

Issue with crc check #2

@giusmos

Description

@giusmos

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions