Merge remote-tracking branch 'miguelbalboa/release_1_4_X' into revertsplit
This commit is contained in:
13
changes.txt
13
changes.txt
@@ -1,10 +1,6 @@
|
|||||||
-- Add changes to unreleased tag until we make a release.
|
-- Add changes to unreleased tag until we make a release.
|
||||||
|
|
||||||
|
unreleased, v1.4.1
|
||||||
unreleased, v1.4.0
|
|
||||||
- Removed: void PCD_Init(byte resetPowerDownPin);
|
|
||||||
- Removed: MFRC522(byte resetPowerDownPin);
|
|
||||||
- Changed default initialisation of SS pin with constants of arduino.h are not done anymore
|
|
||||||
- Replaced UINT8_MAX by UNUSED_PIN
|
- Replaced UINT8_MAX by UNUSED_PIN
|
||||||
- Replaced default value NULL for pointer with correct nullptr
|
- Replaced default value NULL for pointer with correct nullptr
|
||||||
- Added pin layout for wemos d1 mini @mmone
|
- Added pin layout for wemos d1 mini @mmone
|
||||||
@@ -18,6 +14,13 @@ unreleased, v1.4.0
|
|||||||
- Fixed wrong var names in PICC_Select MFRC522.cpp @tuyethoa08041997
|
- Fixed wrong var names in PICC_Select MFRC522.cpp @tuyethoa08041997
|
||||||
- Fixed hang PCD_Init() on non-arduino boards @heziegl
|
- Fixed hang PCD_Init() on non-arduino boards @heziegl
|
||||||
- Fixed possible infinite loop PCD_Reset() @psgreco
|
- Fixed possible infinite loop PCD_Reset() @psgreco
|
||||||
|
- And many thanks to all other contributors
|
||||||
|
|
||||||
|
13 Apr 2018, v1.4.0
|
||||||
|
- Replaced UINT8_MAX by UNUSED_PIN @Rotzbua
|
||||||
|
- Fixed hang PCD_Init() on non-arduino boards @heziegl
|
||||||
|
- deprecate MIFARE_SetAccessBits @Rotzbua
|
||||||
|
- IMPORTANT: v1.4.X will be last version under license "unlicense"
|
||||||
|
|
||||||
22 Mar 2017, v1.3.6
|
22 Mar 2017, v1.3.6
|
||||||
- Added deprecate and compiler warnings @Rotzbua
|
- Added deprecate and compiler warnings @Rotzbua
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/miguelbalboa/rfid.git"
|
"url": "https://github.com/miguelbalboa/rfid.git"
|
||||||
},
|
},
|
||||||
"version": "1.3.6",
|
"version": "1.4.0",
|
||||||
"exclude": "doc",
|
"exclude": "doc",
|
||||||
"frameworks": "arduino",
|
"frameworks": "arduino",
|
||||||
"platforms": ["atmelavr", "ststm32", "teensy", "espressif8266","samd"]
|
"platforms": ["atmelavr", "ststm32", "teensy", "espressif8266","samd"]
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name=MFRC522
|
name=MFRC522
|
||||||
version=1.3.6
|
version=1.4.0
|
||||||
author=GithubCommunity
|
author=GithubCommunity
|
||||||
maintainer=miguelbalboa
|
maintainer=miguelbalboa
|
||||||
sentence=Arduino RFID Library for MFRC522 (SPI)
|
sentence=Arduino RFID Library for MFRC522 (SPI)
|
||||||
|
|||||||
@@ -416,6 +416,7 @@ public:
|
|||||||
void PICC_DumpMifareUltralightToSerial();
|
void PICC_DumpMifareUltralightToSerial();
|
||||||
|
|
||||||
// Advanced functions for MIFARE
|
// 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);
|
void MIFARE_SetAccessBits(byte *accessBitBuffer, byte g0, byte g1, byte g2, byte g3);
|
||||||
DEPRECATED_MSG("will move to extra class in next version")
|
DEPRECATED_MSG("will move to extra class in next version")
|
||||||
bool MIFARE_OpenUidBackdoor(bool logErrors);
|
bool MIFARE_OpenUidBackdoor(bool logErrors);
|
||||||
|
|||||||
Reference in New Issue
Block a user