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

nfc_supported_card.c « parsers « nfc « lib - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44eee83868c721487ef0f27e52dfbd1cb777f473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "nfc_supported_card.h"

#include "troyka_parser.h"

NfcSupportedCard nfc_supported_card[NfcSupportedCardTypeEnd] = {
    [NfcSupportedCardTypeTroyka] = {
        .protocol = NfcDeviceProtocolMifareClassic,
        .verify = troyka_parser_verify,
        .read = troyka_parser_read,
        .parse = troyka_parser_parse,
    },
};