Skip to content

Commit

Permalink
more debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
iceman1001 committed Dec 18, 2023
1 parent 0c675df commit 2c20c0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/cmddata.c
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,8 @@ int AutoCorrelate(const int *in, int *out, size_t len, size_t window, bool SaveG
int distance = -1;
for (size_t i = 0; i < ARRAYLEN(peaks); ++i) {

if (peaks[i] < 2) {
PrintAndLogEx(DEBUG, "%zu | %d", i, peaks[i]);
if (peaks[i] < 128) {
continue;
}

Expand Down

0 comments on commit 2c20c0c

Please sign in to comment.