WasatchPhotonics / CRC8_Example

A bare-bones C# implementation of the CRC8 checksum algorithm used in our OEM spectrometers.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CRC-8 Checksum Example

This repository provides a bare-bones working example of how to calculate the CRC8 checksum used in OEM WP Raman Spectrometers.

interface

The Cyclic Redunancy Check byte is used for error detection and is identical to that of Maxim/Dallas 1-wire devices, called DOW CRC. This calculation produces an 8-bit CRC value using the polynomial X^8 + X^5 + X^4 + X^0.

For more information, please refer to:

About

A bare-bones C# implementation of the CRC8 checksum algorithm used in our OEM spectrometers.


Languages

Language:C# 100.0%