Skip to content

Commit 197cc83

Browse files
committed
clang
1 parent afc462d commit 197cc83

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Adafruit_PN532.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ byte pn532ack[] = {0x00, 0x00, 0xFF, 0x00, 0xFF, 0x00};
6262
byte pn532response_firmwarevers[] = {0x00, 0x00, 0xFF, 0x06, 0xFA, 0xD5};
6363

6464
// Uncomment these lines to enable debug output for PN532(SPI) and/or MIFARE
65-
// related code
65+
// related code
6666

67-
#define PN532DEBUG
68-
//#define MIFAREDEBUG
67+
// #define PN532DEBUG
68+
// #define MIFAREDEBUG
6969

7070
// If using Native Port on Arduino Zero or Due define as SerialUSB
7171
#define PN532DEBUGPRINT Serial
@@ -253,7 +253,7 @@ uint32_t Adafruit_PN532::getFirmwareVersion(void) {
253253

254254
// check some basic stuff
255255
if (0 != memcmp((char *)pn532_packetbuffer,
256-
(char *)pn532response_firmwarevers, 6)) {
256+
(char *)pn532response_firmwarevers, 6)) {
257257
#ifdef PN532DEBUG
258258
PN532DEBUGPRINT.println(F("Firmware doesn't match!"));
259259
#endif

0 commit comments

Comments
 (0)