Skip to content

Commit

Permalink
Update MFRC522.cpp
Browse files Browse the repository at this point in the history
more stable with multiple mfrc522
  • Loading branch information
julienrat committed Mar 7, 2016
1 parent 55feec4 commit 2e35032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MFRC522.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ void MFRC522::PCD_Init() {
if (digitalRead(_resetPowerDownPin) == LOW) { //The MFRC522 chip is in power down mode.
digitalWrite(_resetPowerDownPin, HIGH); // Exit power down mode. This triggers a hard reset.
// Section 8.8.2 in the datasheet says the oscillator start-up time is the start up time of the crystal + 37,74�s. Let us be generous: 50ms.
delay(50);
delay(80);
}
else { // Perform a soft reset
PCD_Reset();
Expand Down

0 comments on commit 2e35032

Please sign in to comment.