You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
239 B
16 lines
239 B
7 years ago
|
//
|
||
|
// Created by MightyPork on 2018/04/03.
|
||
|
//
|
||
|
|
||
|
#ifndef GEX_NRF_CRC32_H
|
||
|
#define GEX_NRF_CRC32_H
|
||
|
|
||
|
uint32_t CRC32_Start(void);
|
||
|
|
||
|
uint32_t CRC32_Add(uint32_t cksum, uint8_t byte);
|
||
|
|
||
|
uint32_t CRC32_End(uint32_t cksum);
|
||
|
|
||
|
|
||
|
#endif //GEX_NRF_CRC32_H
|