mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 04:49:38 -07:00
Fix increment on bool variable (#294)
This commit is contained in:
parent
b535053a77
commit
c87c452120
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ static void RAMFUNC optimizedSnoop(void)
|
||||||
void HfSnoop(int samplesToSkip, int triggersToSkip)
|
void HfSnoop(int samplesToSkip, int triggersToSkip)
|
||||||
{
|
{
|
||||||
Dbprintf("Skipping first %d sample pairs, Skipping %d triggers.", samplesToSkip, triggersToSkip);
|
Dbprintf("Skipping first %d sample pairs, Skipping %d triggers.", samplesToSkip, triggersToSkip);
|
||||||
bool trigger_cnt;
|
int trigger_cnt;
|
||||||
LED_D_ON();
|
LED_D_ON();
|
||||||
// Select correct configs
|
// Select correct configs
|
||||||
FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
|
FpgaDownloadAndGo(FPGA_BITSTREAM_HF);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue