We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in MFRC522.cpp line 294 it should read:
if(!(readFromRegister(ErrorReg) & 0x1D)) { // BufferOvfl Collerr CRCErr ProtocolErr
0x1D properly masks out the error bits in that register not 0x1B
0x1B caused problems with parity bit error that was not valid in the use case.
The text was updated successfully, but these errors were encountered:
Fix [#5]: Register errors are wrong
d427494
0x1D properly masks out the error bits in that register not 0x1B. 0x1B caused problems with parity bit error that was not valid in the use case.
Thank you.
Add you as a collaborator.
Sorry, something went wrong.
No branches or pull requests
in MFRC522.cpp line 294 it should read:
if(!(readFromRegister(ErrorReg) & 0x1D)) { // BufferOvfl Collerr CRCErr ProtocolErr
0x1D properly masks out the error bits in that register not 0x1B
0x1B caused problems with parity bit error that was not valid in the use case.
The text was updated successfully, but these errors were encountered: