2023-05-10 01:04 AM
I am build an andriod app,device is using ST25DV04K NFC chip
i should read first 256 bytes using commnad 0x02,0x23,0x00,0x3f
but failed to read last 256 bytes
I try 2 commands:
how to read last 256 bytes?
Thank you
Solved! Go to Solution.
2023-05-10 07:36 AM
Hi,
the Read Multiple Blocks command (23h) takes 2 parameters:
Thus the correct command is 0x02,0x23,0x40,0x3F
Rgds
BT
2023-05-10 07:36 AM
Hi,
the Read Multiple Blocks command (23h) takes 2 parameters:
Thus the correct command is 0x02,0x23,0x40,0x3F
Rgds
BT
2023-05-10 06:08 PM
Thanks.It's work fine.
BR.