From 11e1d469c843ee3dc96975147efecdf149e880df Mon Sep 17 00:00:00 2001 From: kkloesener Date: Tue, 3 Nov 2020 21:39:44 +0100 Subject: [PATCH] adding missing member definition --- MFRC522_I2C.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MFRC522_I2C.h b/MFRC522_I2C.h index f8b8e11..3703393 100644 --- a/MFRC522_I2C.h +++ b/MFRC522_I2C.h @@ -383,6 +383,9 @@ public: // old function used too much memory, now name moved to flash; if you need char, copy from flash to memory //const char *PICC_GetTypeName(byte type); const __FlashStringHelper *PICC_GetTypeName(byte type); + + // Support functions for debuging + void PCD_DumpVersionToSerial(); void PICC_DumpToSerial(Uid *uid); void PICC_DumpMifareClassicToSerial(Uid *uid, byte piccType, MIFARE_Key *key); void PICC_DumpMifareClassicSectorToSerial(Uid *uid, MIFARE_Key *key, byte sector);