From c5e9a0212e68f864371439cb5be8fd227002e9c8 Mon Sep 17 00:00:00 2001 From: merlokk Date: Wed, 1 Nov 2017 16:55:12 +0200 Subject: [PATCH] deleted condition in iso14a select (sak & 0x20 ==0) - error. Usually SAK = 88 --- armsrc/iso14443a.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/armsrc/iso14443a.c b/armsrc/iso14443a.c index 2ff722b0..01026aa5 100644 --- a/armsrc/iso14443a.c +++ b/armsrc/iso14443a.c @@ -1817,7 +1817,8 @@ int iso14443a_select_card(byte_t *uid_ptr, iso14a_card_select_t *p_hi14a_card, u } // non iso14443a compliant tag - if( (sak & 0x20) == 0) return 2; + // now not work + //if( (sak & 0x20) == 0) return 2; if (!no_rats) { // Request for answer to select -- 2.39.2