Flipper Zero Firmware
Loading...
Searching...
No Matches
felica_crc.h
1#pragma once
2
3#include <stdint.h>
4#include <stddef.h>
5
6#include "bit_buffer.h"
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12#define FELICA_CRC_SIZE sizeof(uint16_t)
13
14void felica_crc_append(BitBuffer* buf);
15
16bool felica_crc_check(const BitBuffer* buf);
17
18void felica_crc_trim(BitBuffer* buf);
19
20#ifdef __cplusplus
21}
22#endif
Definition bit_buffer.c:7