From d498fcd48ecf3ca852a3f249cd9041e99c3629ea Mon Sep 17 00:00:00 2001 From: Romain Tartiere Date: Sat, 31 Jul 2010 09:50:04 +0000 Subject: [PATCH] Comment all commands that return a status code in the list. Found a typo at that occasion so s/0x93/0x92/. --- libnfc/chips/pn53x.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/libnfc/chips/pn53x.c b/libnfc/chips/pn53x.c index cfa785e..dd77460 100644 --- a/libnfc/chips/pn53x.c +++ b/libnfc/chips/pn53x.c @@ -77,22 +77,22 @@ bool pn53x_transceive(nfc_device_t* pnd, const byte_t* pbtTx, const size_t szTxL if (!pnd->pdc->transceive(pnd->nds,pbtTx,szTxLen,pbtRx,pszRxLen)) return false; switch (pbtTx[1]) { - case 0x16: - case 0x40: - case 0x42: - case 0x44: - case 0x46: - case 0x4e: - case 0x50: - case 0x52: - case 0x54: - case 0x56: - case 0x86: - case 0x88: - case 0x8e: - case 0x90: - case 0x93: - case 0x94: + case 0x16: // PowerDown + case 0x40: // InDataExchange + case 0x42: // InCommunicateThru + case 0x44: // InDeselect + case 0x46: // InJumpForPSL + case 0x4e: // InPSL + case 0x50: // InATR + case 0x52: // InRelease + case 0x54: // InSelect + case 0x56: // InJumpForDEP + case 0x86: // TgGetData + case 0x88: // TgGetInitiatorCommand + case 0x8e: // TgSetData + case 0x90: // TgResponseToInitiator + case 0x92: // TgSetGeneralBytes + case 0x94: // TgSetMetaData pnd->iErrorCode = pbtRx[0] & 0x3f; break; default: