From 365ffc5f695539a03ab9f8e82b60b7ce2a1263eb Mon Sep 17 00:00:00 2001 From: Christine Barron Date: Sun, 13 Feb 2022 13:27:31 -0800 Subject: [PATCH] Bugfix updating NXP GET_SYSTEM_INFO command to 0xAB instead of 0x2B (as per section 9.5.3.18 in technical docs: https://www.nxp.com/docs/en/data-sheet/SL2S2602.pdf) --- client/src/cmdhf15.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhf15.c b/client/src/cmdhf15.c index 38f07b6ae..ea46c914d 100644 --- a/client/src/cmdhf15.c +++ b/client/src/cmdhf15.c @@ -654,7 +654,7 @@ static int NxpSysInfo(uint8_t *uid) { uint16_t reqlen = 0; req[reqlen++] |= ISO15_REQ_SUBCARRIER_SINGLE | ISO15_REQ_DATARATE_HIGH | ISO15_REQ_NONINVENTORY | ISO15_REQ_ADDRESS; - req[reqlen++] = ISO15693_GET_SYSTEM_INFO; + req[reqlen++] = ISO15693_GET_NXP_SYSTEM_INFO; req[reqlen++] = 0x04; // IC manufacturer code memcpy(req + 3, uid, 8); // add UID reqlen += 8;