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

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/nfc/parsers/nfc_supported_card.c')
-rw-r--r--lib/nfc/parsers/nfc_supported_card.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/nfc/parsers/nfc_supported_card.c b/lib/nfc/parsers/nfc_supported_card.c
index 44eee838..59482a12 100644
--- a/lib/nfc/parsers/nfc_supported_card.c
+++ b/lib/nfc/parsers/nfc_supported_card.c
@@ -3,10 +3,11 @@
#include "troyka_parser.h"
NfcSupportedCard nfc_supported_card[NfcSupportedCardTypeEnd] = {
- [NfcSupportedCardTypeTroyka] = {
- .protocol = NfcDeviceProtocolMifareClassic,
- .verify = troyka_parser_verify,
- .read = troyka_parser_read,
- .parse = troyka_parser_parse,
- },
+ [NfcSupportedCardTypeTroyka] =
+ {
+ .protocol = NfcDeviceProtocolMifareClassic,
+ .verify = troyka_parser_verify,
+ .read = troyka_parser_read,
+ .parse = troyka_parser_parse,
+ },
};