only:typo

This commit is contained in:
Andrey 2024-10-23 00:31:08 -04:00
parent eb1ea1f828
commit 25bf6d1725
1 changed files with 1 additions and 1 deletions

View File

@ -494,7 +494,7 @@ uint8_t sent_channel::crc6(uint32_t data)
uint8_t tmp = (data >> (24 - 6 * (i + 1))) & 0x3f;
crc = tmp ^ crc6_table[crc];
}
// Extra cound with 0 input
// Extra round with 0 input
crc = 0 ^ crc6_table[crc];
return crc;