From 5689546ae0f5e601371efa2b840d87b1447350f2 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 10 Sep 2020 01:40:50 +0200 Subject: [PATCH] fix super --- armsrc/mifarecmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/mifarecmd.c b/armsrc/mifarecmd.c index d57bae7cf..c1f3299b9 100644 --- a/armsrc/mifarecmd.c +++ b/armsrc/mifarecmd.c @@ -2279,7 +2279,7 @@ void MifareCIdent(void) { if (memcmp(buf, "\x09\x78\x00\x91\x02\xDA\xBC\x19\x10\xF0\x05", 11) == 0) { // super card ident - uint8_t super[] = {0x0A, 0x00, 0x00, 0xA6, 0xB0, 0x00, 0x10}; + uint8_t super[] = {0x0A, 0x00, 0x00, 0xA6, 0xB0, 0x00, 0x10, 0x14, 0x1D}; ReaderTransmit(super, sizeof(super), NULL); res = ReaderReceive(buf, par); if (res == 22) {