mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 02:27:26 -07:00
Merge branch 'master' into experimental_varlen
* master: (27 commits) textual style redundant assignment timeout fix small fix add termcap add readline and small fix rdp textual null term? fix: https://github.com/RfidResearchGroup/proxmark3/issues/166 add dlls to release style style test fix test fixes another fix fix memleak fix textual use printandlogex ...
This commit is contained in:
commit
7cbcf8163c
20 changed files with 519 additions and 534 deletions
|
@ -856,9 +856,7 @@ int EM4x50Read(const char *Cmd, bool verbose) {
|
|||
phaseoff = 0;
|
||||
|
||||
// now do it again to find the end
|
||||
end = skip;
|
||||
for (i += 3; i < j - 4 ; ++i) {
|
||||
end += tmpbuff[i];
|
||||
if (tmpbuff[i] >= clk * 3 - tol && tmpbuff[i] <= clk * 3 + tol) //3 clocks
|
||||
if (tmpbuff[i + 1] >= clk * 2 - tol && tmpbuff[i + 1] <= clk * 2 + tol) //2 clocks
|
||||
if (tmpbuff[i + 2] >= clk * 3 - tol && tmpbuff[i + 2] <= clk * 3 + tol) //3 clocks
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue