HomeSort by: relevance | last modified time | path
    Searched defs:testcrc (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/dev/i2c/
aht20.c 430 uint8_t testcrc; local in function:aht20_refresh
432 testcrc = aht20_crc(&rawdata[0],6);
436 rawdata[3], rawdata[4], rawdata[5], rawdata[6], testcrc));
452 testcrc = rawdata[6];
455 if (rawdata[6] == testcrc) {
sht4x.c 792 uint8_t testcrc; local in function:sht4x_refresh
796 testcrc = *(svalptr + 2);
798 testcrc = sht4x_crc(svalptr,2);
801 if (*(svalptr + 2) == testcrc) {
sht3x.c 1361 uint8_t testcrc; local in function:sht3x_parse_data
1364 testcrc = *(svalptr + 2);
1366 testcrc = sht3x_crc(svalptr, 2);
1369 if (*(svalptr + 2) != testcrc) {
1371 device_xname(sc->sc_dev), (*svalptr + 2), testcrc));

Completed in 23 milliseconds