Skip to content

Commit

Permalink
Update RFID.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
s60sc authored Jul 18, 2022
1 parent 24a0e1a commit 4d0b970
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion RFID.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,10 @@ bool findHeader() {
else countBit = 0;
}
// if appropriate header found, parse data
if (countBit == countEnd)
if (countBit == countEnd) {
if (encodingFDX_B) return parseBitBufferFDX(i);
else return parseBitBufferEM(i);
}
}
if (doDebug) Serial.printf("No %s header found\n", codeStr[encodingFDX_B]);
return false;
Expand Down

0 comments on commit 4d0b970

Please sign in to comment.