From 2fa31d33fcd6ad0c9f863636b517c93b58837315 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 4 Apr 2019 07:23:18 +0200 Subject: [PATCH] style --- common/lfdemod.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/common/lfdemod.c b/common/lfdemod.c index 0d33091a6..93ae2266f 100644 --- a/common/lfdemod.c +++ b/common/lfdemod.c @@ -1915,7 +1915,14 @@ int pskRawDemod_ext(uint8_t *dest, size_t *size, int *clock, int *invert, int *s waveLenCnt = waveEnd - waveStart; if (waveLenCnt > fc) { //this wave is a phase shift - //prnt("DEBUG: phase shift at: %d, len: %d, nextClk: %d, i: %d, fc: %d",waveStart,waveLenCnt,lastClkBit+*clock-tol,i+1,fc); + /* + prnt("DEBUG: phase shift at: %d, len: %d, nextClk: %d, i: %d, fc: %d" + , waveStart + , waveLenCnt + , lastClkBit + *clock - tol + , i + 1 + , fc); + */ if (i + 1 >= lastClkBit + *clock - tol) { //should be a clock bit curPhase ^= 1; dest[numBits++] = curPhase;