Skip to content

Commit

Permalink
Merge pull request #35 from dsanders11/patch-1
Browse files Browse the repository at this point in the history
Fix typo in inDataExchange debug messages
  • Loading branch information
microbuilder authored Jul 29, 2017
2 parents 12507f0 + 4269c33 commit 941cac4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Adafruit_PN532.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -660,14 +660,14 @@ bool Adafruit_PN532::inDataExchange(uint8_t * send, uint8_t sendLength, uint8_t

if (!sendCommandCheckAck(pn532_packetbuffer,sendLength+2,1000)) {
#ifdef PN532DEBUG
PN532DEBUGPRINT.println(F("Could not send ADPU"));
PN532DEBUGPRINT.println(F("Could not send APDU"));
#endif
return false;
}

if (!waitready(1000)) {
#ifdef PN532DEBUG
PN532DEBUGPRINT.println(F("Response never received for ADPU..."));
PN532DEBUGPRINT.println(F("Response never received for APDU..."));
#endif
return false;
}
Expand Down

0 comments on commit 941cac4

Please sign in to comment.