mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
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)
This commit is contained in:
parent
9abb026d00
commit
365ffc5f69
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue