How to read more than 255 blocks ( ST25DV04KC)
I am building a mobile application with react native using ST25DV04KC. I am trying to read 900 blocks with ISO15693 technology, but the readmultipleblocks method does not read more than 255 blocks. Which function can I use related to the subject or how ca
var count = Math.floor((endBlock - beginBlock) / 62);
console.log('/62');
for (let i = 0; i < count; i++) {
var _tmp;
var deger;
_tmp = await NfcManager.iso15693HandlerIOS.readMultipleBlocks({
flags: Nfc15693RequestFlagIOS.HighDataRate,
blockNumber: i * 62 + beginBlock + i,
blockCount: 62,
});
Here are the codes I use. Can you help with the subject?
