cm8jl65: add comment which CRC is used

This commit is contained in:
Beat Küng 2019-01-15 09:19:52 +01:00
parent 8a313ffc26
commit d8ab059ff3
No known key found for this signature in database
GPG Key ID: 866DB5F0E24821BB

View File

@ -105,6 +105,7 @@ static const unsigned char crc_lsb_vector[] = {
unsigned short crc16_calc(unsigned char *data_frame, uint8_t crc16_length)
{
// compute CRC16 IBM 8005
unsigned char crc_high_byte = 0xFF;
unsigned char crc_low_byte = 0xFF;
int i;