mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07: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);
|