mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
15 lines
292 B
C
15 lines
292 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
uint16_t nfca_get_crc16(uint8_t* buff, uint16_t len);
|
|
|
|
void nfca_append_crc16(uint8_t* buff, uint16_t len);
|
|
|
|
bool nfca_emulation_handler(
|
|
uint8_t* buff_rx,
|
|
uint16_t buff_rx_len,
|
|
uint8_t* buff_tx,
|
|
uint16_t* buff_tx_len);
|