Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andreicherniaev/crc-16_x_25
Example how to calc CRC-16/ISO-HDLC, CRC-16/ISO-IEC-14443-3-B, CRC-16/X-25, CRC-B, X-25 using boost C++ library
https://github.com/andreicherniaev/crc-16_x_25
boost crc crc16 example
Last synced: about 1 month ago
JSON representation
Example how to calc CRC-16/ISO-HDLC, CRC-16/ISO-IEC-14443-3-B, CRC-16/X-25, CRC-B, X-25 using boost C++ library
- Host: GitHub
- URL: https://github.com/andreicherniaev/crc-16_x_25
- Owner: AndreiCherniaev
- Created: 2024-07-23T15:03:51.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-07-23T15:20:11.000Z (6 months ago)
- Last Synced: 2024-07-23T17:46:47.409Z (6 months ago)
- Topics: boost, crc, crc16, example
- Language: CMake
- Homepage: https://stackoverflow.com/questions/78773063/building-boost-with-crc-library-only
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Example how to calc CRC-16/ISO-HDLC, CRC-16/ISO-IEC-14443-3-B, CRC-16/X-25, CRC-B, X-25 using boost C++ library.
## Add submodule
This repo already use submodule (you don't need to do this code)
```
git submodule add -b master https://github.com/boostorg/crc
```
## Prerequisites
```
git clone --recurse-submodules --remote-submodules https://github.com/AndreiCherniaev/CRC-16_X_25 && cd CRC-16_X_25/
```
## Compiling
```
cmake -S src/ -B build-host/
cmake --build build-host/ --parallel
```
## Test
```
build-host/test_crc
```