mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-01 04:29:59 -07:00
19 lines
521 B
C
19 lines
521 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "nfc_util.h"
|
|
#include <furi_hal_nfc.h>
|
|
|
|
#define ISO15693_CMD_NXP_GET_RANDOM_NUMBER 0xB2
|
|
#define ISO15693_CMD_NXP_SET_PASSWORD 0xB3
|
|
#define ISO15693_MANUFACTURER_NXP 0x04
|
|
|
|
|
|
bool slix_l_check_card_type(uint8_t UID0, uint8_t UID1, uint8_t UID2);
|
|
bool slix_l_read_card(NfcVReader* reader, NfcVData* data);
|
|
|
|
ReturnCode slix_l_get_random(uint8_t* rand);
|
|
ReturnCode slix_l_unlock(uint32_t id, uint8_t* rand, uint32_t password);
|
|
|