Skip to content

Commit b777627

Browse files
committed
More debug code.
1 parent 257d2e3 commit b777627

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/demod_afsk.c

+20
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
// #define DEBUG4 1 /* capture AFSK demodulator output to log files */
2626
/* Can be used to make nice plots. */
2727

28+
// #define DEBUG5 1 // Write just demodulated bit stream to file. */
29+
2830

2931
/*------------------------------------------------------------------
3032
*
@@ -875,6 +877,24 @@ static void nudge_pll (int chan, int subchan, int slice, float demod_out, struct
875877
int quality = fabsf(demod_out) * 100.0f / amplitude;
876878
if (quality > 100) quality = 100;
877879

880+
#if DEBUG5
881+
// Write bit stream to a file.
882+
883+
static FILE *bsfp = NULL;
884+
static int bcount = 0;
885+
if (chan == 0 && subchan == 0 && slice == 0) {
886+
if (bsfp == NULL) {
887+
bsfp = fopen ("bitstream.txt", "w");
888+
}
889+
fprintf (bsfp, "%d", demod_out > 0);
890+
bcount++;
891+
if (bcount % 64 == 0) {
892+
fprintf (bsfp, "\n");
893+
}
894+
}
895+
896+
#endif
897+
878898
hdlc_rec_bit (chan, subchan, slice, demod_out > 0, 0, quality);
879899
pll_dcd_each_symbol2 (D, chan, subchan, slice);
880900
}

0 commit comments

Comments
 (0)