Lines Matching defs:crc
179 uint8_t crc = 0xFF;
182 crc ^= data[i];
184 if (crc & 0x80)
185 crc = (crc << 1) ^ 0x31;
187 crc <<= 1;
190 return crc;
241 SYSCTL_DESCR("Ignore the CRC byte"), NULL, 0, &sc->sc_ignorecrc,
434 DPRINTF(sc, 2, ("%s: Raw data: STATUS: %02x - RH: %02x %02x - %02x - TEMP: %02x %02x - CRC: %02x -- %02x\n",
450 /* Fake out the CRC check if being asked to ignore CRC */