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.