Skip to content

Commit 22bef60

Browse files
committed
linting
1 parent 575b053 commit 22bef60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Adafruit_PN532.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ byte pn532response_firmwarevers[] = {
7373

7474
// If using Native Port on Arduino Zero or Due define as SerialUSB
7575
#define PN532DEBUGPRINT Serial ///< Fixed name for debug Serial instance
76-
//#define PN532DEBUGPRINT SerialUSB ///< Fixed name for debug Serial instance
76+
// #define PN532DEBUGPRINT SerialUSB ///< Fixed name for debug Serial instance
7777

7878
#define PN532_PACKBUFFSIZ 64 ///< Packet buffer size in bytes
7979
byte pn532_packetbuffer[PN532_PACKBUFFSIZ]; ///< Packet buffer used in various
@@ -326,7 +326,7 @@ bool Adafruit_PN532::sendCommandCheckAck(uint8_t *cmd, uint8_t cmdlen,
326326
// I2C works without using IRQ pin by polling for RDY byte
327327
// seems to work best with some delays between transactions
328328
uint8_t SLOWDOWN = 0;
329-
if (i2c_dev || spi_dev) // SPI and I2C need 1ms slow for page reads
329+
if (i2c_dev || spi_dev) // SPI and I2C need 1ms slow for page reads
330330
SLOWDOWN = 1;
331331

332332
// write the command

0 commit comments

Comments
 (0)