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

@ -1,11 +1,8 @@
#include <stdint.h>
#include <stddef.h>
#include "crc32.h"
#define htole32(x) (x)
#define CRC32_PRESET 0xFFFFFFFF
static void crc32_byte (uint32_t *crc, const uint8_t value);
static void crc32_byte (uint32_t *crc, const uint8_t value) {
@ -32,4 +29,4 @@ void crc32 (const uint8_t *data, const size_t len, uint8_t *crc) {
void crc32_append (uint8_t *data, const size_t len) {
crc32 (data, len, data + len);
}
}