dbg: Watchdog resets while 'hw tune lf'

loop does not finish, u_int is always '>=0'
This commit is contained in:
rkblackfire 2018-01-22 18:54:29 +01:00
commit fc175230f4

View file

@ -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;
}