Skip to content

lolomovil/CRC

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CRC

CRC calculation for Arduino

Usage

#include <CRC.h>

void setup()
{
    uint8_t arr[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};

    uint8_t c8 = CRC::crc8(arr, sizeof(arr));
    uint16_t c16 = CRC::crc16(arr, sizeof(arr));
}

License

MIT

About

CRC calculation for Arduino

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 100.0%