Remove debugging printfs

This commit is contained in:
Mario Hüttel 2023-01-15 21:26:19 +01:00
parent 71b1ad2a32
commit e8a8abbe65
1 changed files with 0 additions and 2 deletions

View File

@ -119,9 +119,7 @@ static void fill_crc_table_reversed(struct crc_calc *crc)
int i;
short_poly = (uint32_t)shorten_polynomial(crc->settings.polynomial);
printf("Short (pre): 0x%x\n", short_poly);
short_poly = reverse_short_poly(short_poly, crc->crc_length);
printf("Short (post): 0x%x\n", short_poly);
for (input = 0; input <= 255u; input++) {
crc_reg = (uint32_t)input;