FIX: 'lf hitag2' forgot to add some of @marshmellow42 's changes. Lf search should works just fine now.

This commit is contained in:
iceman1001 2017-01-20 18:26:03 +01:00
commit 1b75698cb7
7 changed files with 32 additions and 11 deletions

View file

@ -9,7 +9,19 @@
#ifndef __CRC32_H
#define __CRC32_H
#include <stdint.h>
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
void crc32 (const uint8_t *data, const size_t len, uint8_t *crc);
void crc32_append (uint8_t *data, const size_t len);
#ifdef __cplusplus
}
#endif
#endif