Skip to content

Commit

Permalink
Merge pull request #504 from jacoblukewood/master
Browse files Browse the repository at this point in the history
Removed deprecated warnings as project is no longer maintained (no api changes or code changes)
  • Loading branch information
Rotzbua committed Jan 21, 2020
2 parents 2e5f692 + d822320 commit e587f3c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions src/MFRC522.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1369,8 +1369,6 @@ void MFRC522::PCD_DumpVersionToSerial() {
* Dumps debug info about the selected PICC to Serial.
* On success the PICC is halted after dumping the data.
* For MIFARE Classic the factory default key of 0xFFFFFFFFFFFF is tried.
*
* @DEPRECATED Kept for bakward compatibility
*/
void MFRC522::PICC_DumpToSerial(Uid *uid ///< Pointer to Uid struct returned from a successful PICC_Select().
) {
Expand Down Expand Up @@ -1416,8 +1414,6 @@ void MFRC522::PICC_DumpToSerial(Uid *uid ///< Pointer to Uid struct returned fro

/**
* Dumps card info (UID,SAK,Type) about the selected PICC to Serial.
*
* @DEPRECATED kept for backward compatibility
*/
void MFRC522::PICC_DumpDetailsToSerial(Uid *uid ///< Pointer to Uid struct returned from a successful PICC_Select().
) {
Expand Down
6 changes: 0 additions & 6 deletions src/MFRC522.h
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,6 @@ class MFRC522 {
// Functions for setting up the Arduino
/////////////////////////////////////////////////////////////////////////////////////
MFRC522();
DEPRECATED_MSG("use MFRC522(byte chipSelectPin, byte resetPowerDownPin)")
MFRC522(byte resetPowerDownPin);
MFRC522(byte chipSelectPin, byte resetPowerDownPin);

Expand All @@ -354,7 +353,6 @@ class MFRC522 {
// Functions for manipulating the MFRC522
/////////////////////////////////////////////////////////////////////////////////////
void PCD_Init();
DEPRECATED_MSG("use PCD_Init(byte chipSelectPin, byte resetPowerDownPin)")
void PCD_Init(byte resetPowerDownPin);
void PCD_Init(byte chipSelectPin, byte resetPowerDownPin);
void PCD_Reset();
Expand Down Expand Up @@ -418,13 +416,9 @@ class MFRC522 {
void PICC_DumpMifareUltralightToSerial();

// Advanced functions for MIFARE
DEPRECATED_MSG("name will change in next version")
void MIFARE_SetAccessBits(byte *accessBitBuffer, byte g0, byte g1, byte g2, byte g3);
DEPRECATED_MSG("will move to extra class in next version")
bool MIFARE_OpenUidBackdoor(bool logErrors);
DEPRECATED_MSG("will move to extra class in next version")
bool MIFARE_SetUid(byte *newUid, byte uidSize, bool logErrors);
DEPRECATED_MSG("will move to extra class in next version")
bool MIFARE_UnbrickUidSector(bool logErrors);

/////////////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit e587f3c

Please sign in to comment.