mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-21 04:29:53 +08:00
Update hfsnoop.c
Fix increment on bool variable (#294) (thanks to @ikarus23)
c87c452120
This commit is contained in:
parent
d59026518e
commit
9f3d7bbe29
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ void HfSnoop(int samplesToSkip, int triggersToSkip)
|
||||||
BigBuf_free(); BigBuf_Clear();
|
BigBuf_free(); BigBuf_Clear();
|
||||||
|
|
||||||
Dbprintf("Skipping first %d sample pairs, Skipping %d triggers.\n", samplesToSkip, triggersToSkip);
|
Dbprintf("Skipping first %d sample pairs, Skipping %d triggers.\n", samplesToSkip, triggersToSkip);
|
||||||
bool trigger_cnt;
|
int trigger_cnt;
|
||||||
|
|
||||||
LED_D_ON();
|
LED_D_ON();
|
||||||
// Select correct configs
|
// Select correct configs
|
||||||
|
|
Loading…
Add table
Reference in a new issue