【发布时间】:2019-01-30 11:58:41
【问题描述】:
我正在使用带有 RF430FRL 15xH IC 的传感器,我计划通过 NFC 从中获取数据。有没有办法编写和激活自定义 NFC 代码?
我尝试了单读 (0xC0) 和多读 (0xC3) 的自定义 16 位命令。 NFC 数据检索仍然没有扩展。我试过以下代码:
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,
};
【问题讨论】:
标签: android format nfc rfid iso-15693