Skip to content

Commit

Permalink
Merge branch 'idm' of github.com:evilpete/rtl_433 into idm
Browse files Browse the repository at this point in the history
  • Loading branch information
evilpete committed Jul 1, 2020
2 parents 8753378 + 96c4f3b commit 510c852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devices/idm.c
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ static int idm_callback(r_device *decoder, bitbuffer_t *bitbuffer)
DifferentialConsumptionIntervals[j] = ((uint16_t)buffy[0] << 1) | (buffy[1] >> 7);
pos += 9;
}
if (decoder->verbose ) {
if (decoder->verbose > 1) {
fprintf(stderr, "%s DifferentialConsumptionIntervals:\n\t", __func__);
for (int j = 0; j < 47; j++) {
fprintf(stderr, "%d ", DifferentialConsumptionIntervals[j]);
Expand Down

0 comments on commit 510c852

Please sign in to comment.