Minor fix for IQ data display

This commit is contained in:
Andreas Eversberg 2017-07-14 20:54:43 +02:00
parent fda224c27f
commit a088536533
1 changed files with 6 additions and 2 deletions

View File

@ -207,8 +207,12 @@ void display_iq(float *samples, int length)
putchar('+');
else
putchar('-');
} else
putchar('|');
} else {
if (j == 0 || j == SIZE - 1)
putchar('+');
else
putchar('|');
}
} else if (screen[j][k] == ':' || screen[j][k] == '.' || screen[j][k] == '\'') {
/* red / green plot */
if (overdrive[j][k]) {