mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 13:23:25 -07:00
fix bug in st detect +
adjust nrz t55xx detection to reduce false positives on weak antennas adjust t55xx read wait to get past initial startup wave.
This commit is contained in:
parent
b97311b1bd
commit
bf85d22f96
4 changed files with 9 additions and 5 deletions
|
@ -570,7 +570,7 @@ bool tryDetectModulation(){
|
|||
}
|
||||
}
|
||||
clk = GetNrzClock("", false, false);
|
||||
if (clk>0) {
|
||||
if (clk>8) { //clock of rf/8 is likely a false positive, so don't use it.
|
||||
if ( NRZrawDemod("0 0 1", false) && test(DEMOD_NRZ, &tests[hits].offset, &bitRate, clk, &tests[hits].Q5)) {
|
||||
tests[hits].modulation = DEMOD_NRZ;
|
||||
tests[hits].bitrate = bitRate;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue