I implemented CRC16-CCITT that reduces to finding the remainder of the division by g(x) = x16 + x12 + x5 + 1. Now how can i check if crc is good?
Compute the CRC on the message, and compare that to the CRC sent with the message.