Removed unsupported command ISO15693_CMD_RESET_TO_READY

This commit is contained in:
Federico Cerutti
2018-12-04 21:26:04 +01:00
committed by Thorsten
parent dfe0deccd7
commit 3d253d2848
@@ -185,13 +185,18 @@ uint16_t TITagitstandardAppProcess(uint8_t* FrameBuf, uint16_t FrameBytes)
break;
case STATE_QUIET:
/* Ti TagIt Standard does not support reset to ready command */
/* following code is lef for future reference for other tags */
/*
if (Command == ISO15693_CMD_RESET_TO_READY) {
if (ISO15693Addressed(FrameBuf)) {
if (ISO15693Addressed(FrameBuf) && ISO15693CompareUid(&FrameBuf[ISO15693_REQ_ADDR_PARAM], Uid)) {
FrameBuf[ISO15693_ADDR_FLAGS] = ISO15693_RES_FLAG_NO_ERROR;
ResponseByteCount = 1;
State = STATE_READY;
}
}
*/
ResponseByteCount = 0; /* better safe than sorry */
break;
default: