mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
chg: lf keri demod - more leanient when it comes to bits
This commit is contained in:
parent
a96e94b872
commit
c687ced062
1 changed files with 1 additions and 1 deletions
|
@ -390,7 +390,7 @@ int detectKeri(uint8_t *dest, size_t *size, bool *invert) {
|
|||
*invert ^= 1;
|
||||
}
|
||||
|
||||
if (*size != 64) return -3; //wrong demoded size
|
||||
if (*size < 64) return -3; //wrong demoded size
|
||||
|
||||
return (int)startIdx;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue