mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Avoid first spurious samples in LF sniff modes, prevents false triggering
This commit is contained in:
parent
35e276f8ed
commit
1e19a7216a
1 changed files with 4 additions and 1 deletions
|
@ -243,8 +243,11 @@ void LFSetupFPGAForADC(int divisor, bool reader_field) {
|
|||
StartTicks();
|
||||
|
||||
// 50ms for the resonant antenna to settle.
|
||||
if (reader_field)
|
||||
if (reader_field) {
|
||||
WaitMS(50);
|
||||
} else {
|
||||
WaitMS(1);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue