All Projects → vinmenn → Crc16

vinmenn / Crc16

Licence: MIT license
A simple crc-16 library for Arduino

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to Crc16

twitivity
🐍 Twitter Accounts Activity API Client Library for Python
Stars: ✭ 49 (+28.95%)
Mutual labels:  crc
crc
A Pure Rust Implementation of Generic CRC Algorithm
Stars: ✭ 24 (-36.84%)
Mutual labels:  crc
odf-nano
ODF-Nano lets you deploy OpenShift Data Foundation on your Laptop (CRC)
Stars: ✭ 37 (-2.63%)
Mutual labels:  crc
crc16
A native node addon to calcalate and verify CRC16 values, adopted by MODBUS agreement
Stars: ✭ 24 (-36.84%)
Mutual labels:  crc
SpinalCrypto
SpinalHDL - Cryptography libraries
Stars: ✭ 36 (-5.26%)
Mutual labels:  crc
java-crc
Generic CRC implementation for java language (includes CRC16, CRC32, CRC64 etc)
Stars: ✭ 35 (-7.89%)
Mutual labels:  crc
CRC-manipulator
Change CRC checksums of your files.
Stars: ✭ 73 (+92.11%)
Mutual labels:  crc
crc
Generic CRC implementation for go language (golang, includes CRC16, CRC32, CRC64 etc)
Stars: ✭ 43 (+13.16%)
Mutual labels:  crc
argocd-operator-helm
[DEPRECATED] Argo CD Operator (Helm) installs Argo CD in OpenShift and Kubernetes.
Stars: ✭ 18 (-52.63%)
Mutual labels:  crc
cfv
Command-line File Verify
Stars: ✭ 36 (-5.26%)
Mutual labels:  crc

Crc16 A simple crc-16 library for Arduino

Description

Use this library to implement crc checks on buffer arrays

Usage

There are two modes to calculate crc: incremental and single call:

  • In first mode the crc is calculated adding data bytes one by one and then calculating final crc, this is useful for reception routines that receives bytes asynchrously,
  • The second mode is used to obtain crc from a buffer array. Using one mode doesn't interfere with the other (So you can calculate tx crc while receiving data and updating rx crc)

Is possible to configure crc with all crc-16bit standards (by default is defined XModem).

See possible crc variants: http://www.lammertbies.nl/comm/info/crc-calculation.html

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].