2025-08-05 1:28 AM
Hi everyone,
I'm working with the STM32F405RGT6 and its CAN peripheral. I have a couple of questions regarding CRC handling:
Thanks for your help!
Best regards,
Solved! Go to Solution.
2025-08-05 12:03 PM
It composes the message with the CRC to send it, and checks the messages received. Yo don't need to compute manually.
The error bit suggests it received something, but the integrity check failed.
In most CRC implementations it feeds the values through the polynomial, and the remainder is zero if it is correct.
2025-08-05 12:03 PM
It composes the message with the CRC to send it, and checks the messages received. Yo don't need to compute manually.
The error bit suggests it received something, but the integrity check failed.
In most CRC implementations it feeds the values through the polynomial, and the remainder is zero if it is correct.