From 61f3398fdc9cc19a9ab47e9c622868e6e38f968b Mon Sep 17 00:00:00 2001 From: r1ddl3rz Date: Fri, 18 Feb 2022 11:47:20 +0100 Subject: [PATCH] fix slixdisable pass id --- armsrc/iso15693.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/iso15693.c b/armsrc/iso15693.c index 77c67c3cf..c89bc6699 100644 --- a/armsrc/iso15693.c +++ b/armsrc/iso15693.c @@ -2254,7 +2254,7 @@ void DisablePrivacySlixLIso15693(uint8_t *password) { StartCountSspClk(); uint32_t start_time = 0, eof_time = 0; // 4 == pass id. - int res = set_pass_15693_slixl(start_time, &eof_time, 0x10, password); + int res = set_pass_15693_slixl(start_time, &eof_time, 0x04, password); reply_ng(CMD_HF_ISO15693_SLIX_L_DISABLE_PRIVACY, res, NULL, 0); switch_off(); }