How to read both EPC and USER memory banks using RFID handheld?

浪尽此生 提交于 2019-12-11 15:57:35

问题


We are using Handheld Chainway C4000 UHF RFID Reader, and UHF tags. Those tags contains EPC and USER memory banks, Right now I can read all the tags' EPC memory bank by scanning them using the handheld device.

This is how I read single tag's EPC memory bank

RFIDWithUHF mReader = RFIDWithUHF.getInstance();
String strUII = mReader.inventorySingleTag();
String strEPC = mReader.convertUiiToEPC(strUII);

And to read USER memory bank I found that I should stop scanning and start it again but with request to read USER memory bank.

Is there anyway that I could read both EPC and USER memory banks at the same time without restart the scanning process again ?

Thanks for your time.


回答1:


I was able to get a reply from the manufacturer of the handheld C4000 Chainway RFID UHF reader, And I will post it if there are any one who faced the same problem.

It is a hardware limitation .. the C4000 doesn't support scanning both at the same time. You can only handle it by software, like scanning twice for different sectors, and show both of the data at the same time.



来源:https://stackoverflow.com/questions/47133549/how-to-read-both-epc-and-user-memory-banks-using-rfid-handheld

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!