Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ljos committed Sep 25, 2013
1 parent 780dafe commit 621246d
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 @@ -367,7 +367,7 @@ void MFRC522::calculateCRC(byte *data, int len, byte *result) {
do {
n = readFromRegister(DivIrqReg);
i--;
} while ((i!=0) && !(n&0x04)); //CRCIrq = 1
} while ((i != 0) && !(n & 0x04)); //CRCIrq = 1

// Read the result from the CRC calculation.
result[0] = readFromRegister(CRCResultRegL);
Expand Down

0 comments on commit 621246d

Please sign in to comment.