mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
dbg: Watchdog resets while 'hw tune lf'
loop does not finish, u_int is always '>=0'
This commit is contained in:
parent
30bb6d6591
commit
fc175230f4
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ void MeasureAntennaTuningLfOnly(int *vLf125, int *vLf134, int *peakf, int *peakv
|
|||
}
|
||||
}
|
||||
|
||||
for (i=18; i >= 0; i--) LF_Results[i] = 0;
|
||||
for (i=0; i <= 18; i++) LF_Results[i] = 0;
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue