I am using a sensor with RF430FRL 15xH IC from which I plan to obtain the data through NFC. Is there a way to write and activate the custom NFC codes?
I have tried custom 16-bit commands for SINGLE READ (0xC0) and MULTIPLE READ (0xC3). The NFC data retrieval still is not extended. I have tried the following code:
cmd = new byte[]{
(byte)0x00, //Protocol_Extension_flag=1 //
(byte)0xC0, //READ multiple blocks
(byte)0x07,
(byte)0xE0, // First block (offset)
(byte)0x00, // Number of blocks
(byte)0x06,
};