【发布时间】:2015-12-31 07:52:16
【问题描述】:
我正在使用以下代码在 NTAG213 NFC 标签上设置 AUTH0(需要密码验证的第一页):
try {
result = nfca.transceive(new byte[]{
(byte) 0xA2, // Command: WRITE
(byte) 0x29, // Address: AUTH0
(byte) 0x00 // starting address
});
} catch (IOException e) {
e.printStackTrace();
}
但是,当我在 AUTH0 上写入 00h(作为起始地址)时,我总是收到异常:“Transceive failed”。
你能告诉我这里可能出了什么问题吗?
【问题讨论】:
标签: android authentication tags nfc mifare