Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mifare_common.h « protocols « nfc « lib - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b694d9068a2122b3fe6f0c426c5afd8c34f6627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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);