Searched refs:CRC16_INITIAL_CRC (Results 1 – 1 of 1) sorted by relevance
/mcuboot-latest/boot/boot_serial/src/ |
D | boot_serial.c | 124 #define CRC16_INITIAL_CRC 0 /* what to seed crc16 with */ macro 131 #define CRC16_INITIAL_CRC 0 /* what to seed crc16 with */ macro 1226 crc = crc16_itu_t(CRC16_INITIAL_CRC, (uint8_t *)bs_hdr, sizeof(*bs_hdr)); in boot_serial_output() 1230 crc = ~esp_crc16_be(~CRC16_INITIAL_CRC, (uint8_t *)bs_hdr, sizeof(*bs_hdr)); in boot_serial_output() 1233 crc = crc16_ccitt(CRC16_INITIAL_CRC, bs_hdr, sizeof(*bs_hdr)); in boot_serial_output() 1324 crc = crc16_itu_t(CRC16_INITIAL_CRC, out, len); in boot_serial_in_dec() 1326 crc = ~esp_crc16_be(~CRC16_INITIAL_CRC, (uint8_t *)out, len); in boot_serial_in_dec() 1328 crc = crc16_ccitt(CRC16_INITIAL_CRC, out, len); in boot_serial_in_dec()
|