Avoid first spurious samples in LF sniff modes, prevents false triggering

This commit is contained in:
Philippe Teuwen 2020-09-20 12:59:30 +02:00
commit 1e19a7216a

View file

@ -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);
}
}
/**