├── Cfg └── Template │ └── crc_cfg.h ├── LICENSE ├── NOTICE ├── Ports ├── ARM-Cortex-M3 │ └── IAR │ │ ├── ecc_hamming_a.asm │ │ └── edc_crc_a.asm └── ARM │ └── IAR │ ├── ecc_hamming_a.asm │ └── edc_crc_a.asm ├── Source ├── crc_util.c ├── crc_util.h ├── ecc.h ├── ecc_hamming.c ├── ecc_hamming.h ├── edc_crc.c └── edc_crc.h └── readme.md /Cfg/Template/crc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Cfg/Template/crc_cfg.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/NOTICE -------------------------------------------------------------------------------- /Ports/ARM-Cortex-M3/IAR/ecc_hamming_a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Ports/ARM-Cortex-M3/IAR/ecc_hamming_a.asm -------------------------------------------------------------------------------- /Ports/ARM-Cortex-M3/IAR/edc_crc_a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Ports/ARM-Cortex-M3/IAR/edc_crc_a.asm -------------------------------------------------------------------------------- /Ports/ARM/IAR/ecc_hamming_a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Ports/ARM/IAR/ecc_hamming_a.asm -------------------------------------------------------------------------------- /Ports/ARM/IAR/edc_crc_a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Ports/ARM/IAR/edc_crc_a.asm -------------------------------------------------------------------------------- /Source/crc_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Source/crc_util.c -------------------------------------------------------------------------------- /Source/crc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Source/crc_util.h -------------------------------------------------------------------------------- /Source/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Source/ecc.h -------------------------------------------------------------------------------- /Source/ecc_hamming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Source/ecc_hamming.c -------------------------------------------------------------------------------- /Source/ecc_hamming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Source/ecc_hamming.h -------------------------------------------------------------------------------- /Source/edc_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Source/edc_crc.c -------------------------------------------------------------------------------- /Source/edc_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/Source/edc_crc.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weston-embedded/uC-CRC/HEAD/readme.md --------------------------------------------------------------------------------