mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
13 lines
238 B
C
13 lines
238 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
typedef enum {
|
||
|
MifareTypeUnknown,
|
||
|
MifareTypeUltralight,
|
||
|
MifareTypeClassic,
|
||
|
MifareTypeDesfire,
|
||
|
} MifareType;
|
||
|
|
||
|
MifareType mifare_common_get_type(uint8_t ATQA0, uint8_t ATQA1, uint8_t SAK);
|