2023-08-04 01:14 AM
Use to read the data from the capture card.
I want to read the data captured by the card and I get an error when I read it using the function rfalNfcvPollerReadSingleBlock.
How can I change it?
Solved! Go to Solution.
2023-08-16 01:35 AM
Hi,
please see the ST25 Embedded NFC lib which contains full examples of reading NDEF from NFC Forum formatted tags. Not sure if you need the NDEF part but it shows how to use the mentioned functions.
Best Regards, Ulysses
2023-08-04 03:52 AM
Hi,
shown code should give a compile error - you are reference a variable named E002510002812B14 but you need to provide a pointer to a buffer containing that byte string!
Regards, Ulysses
2023-08-07 01:18 AM
2023-08-07 07:18 AM
Hi,
please investigate on proper definition of C arrays and pointers!
Likely you will want to use something like
const uint8_t buffer[] = "\xE0\x02\x51\x00\x02\x81\x2B\x14";
Best Regards, Ulysses
2023-08-09 12:07 AM
Whether reading a single block or multiple, the data cannot be read. Is there a problem somewhere?
2023-08-10 05:25 AM
Hi,
you need to place these calls into the demoCycle() at the write state and technology (At the place where it reports the card to be found ( platformLog("ISO15693/NFC-V card found. UID: ...). Only there it is guaranteed that the field is on and the chip is set to the right state. This is the usual way.
Only if you are certain that you only want to send out these rfalNfcVReadSingleBlock() without knowing that the tags are in the field you can deviate. E.g. calling rfalFielOnAndStartGT() and after rfalNfvPollerInitialize() and then your commands. Please check the rfal.chm file for details.
Regards, Ulysses
2023-08-15 07:08 PM
I'm putting these calls into demoCycle(), but it doesn't have the desired effect. It is not possible to read the data inside the st25DV on the capture side.
How do I put these calls into demoCycle()? Thank you for your help.
2023-08-16 01:35 AM
Hi,
please see the ST25 Embedded NFC lib which contains full examples of reading NDEF from NFC Forum formatted tags. Not sure if you need the NDEF part but it shows how to use the mentioned functions.
Best Regards, Ulysses