About 57 results
Open links in new tab
  1. c - Function to Calculate a CRC16 Checksum - Stack Overflow

    May 12, 2012 · Part of this code involves using a CRC16 checksum on the data to detect corruption from line noise. I've created a function to calculate a CRC16 checksum, but it doesn't seem to be …

  2. CRC16 (ModBus) - computing algorithm - Stack Overflow

    Mar 15, 2019 · CRC16 of above message in hex: C9CD I did calculate this manually like the example above, but I'd rather not write this down in binary in this question. I presume my transformation into …

  3. Calculating CRC16 in Python - Stack Overflow

    I'm trying to evaluate appropriate checksum based on CRC-16 algorithm using crcmod Python module and 2.7 version of Python interpreter. The checksum parameters are: CRC order: 16 CRC …

  4. CRC 16 Modbus RTU - Stack Overflow

    May 30, 2023 · You can check it on following link CRC Computation Code in C Output XORing is not part of the code, it must be done as per user's requirement as separate code. /* Update #defines in …

  5. How to generate a CRC-16 from C# - Stack Overflow

    Jan 22, 2016 · I am trying to generate a CRC-16 using C#. The hardware I am using for RS232 requires the input string to be HEX. The screenshot below shows the correct conversion, For a test, I need …

  6. crc16 - CRC-16 specific example for serial connection - Stack Overflow

    Jun 22, 2021 · Section 4: CRC-16 Code and Example (page 95 or 91) that shows a serial packet with a CRC16 value of 133 (LSB) and 24 (MSB). However, I have tried different calculators, for example: …

  7. crc16 - CRC-16 polynomial notation - Stack Overflow

    Feb 28, 2024 · No, there is no difference. The correct way to write those is with superscripts, representing "to the power of": x 16 + x 15 + x 2 + x 0 and: x 16 + x 15 + x 2 + 1 As you noted, …

  8. Computing CRC16 with reflected / bit reversed input in C

    Dec 17, 2018 · Computing CRC16 with reflected / bit reversed input in C Asked 7 years, 1 month ago Modified 7 years, 1 month ago Viewed 8k times

  9. What is the difference between CRC-16/CCITT-FALSE and CRC-16/X-25?

    Nov 8, 2019 · 3 According to the website below, CRC16/CCITT_FALSE doesn't match your code. The website indicates it's a left shifting (non-reflected) CRC, while your code is right shifting. CRC16/X25 …

  10. What is 'standard' CRC-16? - Reverse Engineering Stack Exchange

    May 21, 2023 · The Linux source code has a routine for calculating CRC-16s. It's described as 'standard CRC-16', but doesn't have a formal name. It seems to be using a polynomial of 8005 but is otherwise …