Skip to content

Commit

Permalink
fix NXP SYSTEM INFOMATION request to real tag on spool (fixes pass th…
Browse files Browse the repository at this point in the history
…rough)
  • Loading branch information
freepdk committed Dec 16, 2024
1 parent bf125ec commit 251f81b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ bool CLRC688_ReadOutSLIX2(I2C_HandleTypeDef* phi2c, const uint8_t addr, uint8_t
return false;
}

uint8_t nxpsysinfocmd[] = {0x22,0xAB,uid[0],uid[1],uid[2],uid[3],uid[4],uid[5],uid[6],uid[7]};
uint8_t nxpsysinfocmd[] = {0x22,0xAB,0x04,uid[0],uid[1],uid[2],uid[3],uid[4],uid[5],uid[6],uid[7]};
uint8_t nxpsysinfolen = SLIX2_NXPSYSINFO_LEN;
if( !CLRC688_Transceive(phi2c, addr, nxpsysinfocmd, sizeof(nxpsysinfocmd), nxpsysinfo, &nxpsysinfolen) || (nxpsysinfolen<SLIX2_NXPSYSINFO_LEN)) {
return false;
Expand Down

0 comments on commit 251f81b

Please sign in to comment.