From 77aeea12318d8a5f2575f762e40304b0704c3202 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 17 Oct 2025 08:55:53 +0200 Subject: [PATCH] fix copy paste bug in 14a simulate --- armsrc/iso14443a.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/iso14443a.c b/armsrc/iso14443a.c index c60f352fd..8c3bbc755 100644 --- a/armsrc/iso14443a.c +++ b/armsrc/iso14443a.c @@ -1893,7 +1893,7 @@ void SimulateIso14443aTag(uint8_t tagType, uint16_t flags, uint8_t *useruid, uin EmSendCmd(emdata, len + 2); } p_response = NULL; - } else if (receivedCmd[0] == MIFARE_ULC_WRITE && len == 8 && (tagType == 2 || tagType == 7 || tagType == 13 || tagType == 13)) { // Received a WRITE + } else if (receivedCmd[0] == MIFARE_ULC_WRITE && len == 8 && (tagType == 2 || tagType == 7 || tagType == 13 || tagType == 14)) { // Received a WRITE p_response = NULL;