Bugfixes for LF FDX

Changed CmdBiphaseDecodeRaw to allow 7 digits
Changed CmdFdxRead to read 39999 samples instead of 10000 to improve reading from small tags
This commit is contained in:
Malte F. Hillmann 2019-03-28 22:40:29 +01:00
commit 3f306c6ded
2 changed files with 2 additions and 2 deletions

View file

@ -206,7 +206,7 @@ int CmdFdxDemod(const char *Cmd){
}
int CmdFdxRead(const char *Cmd) {
lf_read(true, 10000);
lf_read(true, 39999);
return CmdFdxDemod(Cmd);
}