Compare commits

..

No commits in common. "66105e155a7babc9a7a4b655812c527b955d9ac5" and "558c3a0a4186eff1f0cfd4c90a0ce026f759334a" have entirely different histories.

View file

@ -37,7 +37,7 @@
#define IQ_SAMPLES 32
#define IQ_BLOCK_LEN (2 * IQ_SAMPLES)
#define IQ_QUEUE_LEN 2
#define IQ_QUEUE_LEN 4
#define LO_BITS_DEPTH 15
#define LO_WORDS (1 << (LO_BITS_DEPTH - 2))
@ -598,8 +598,6 @@ static void do_rx()
if (queue_try_remove(&iq_queue, &block)) {
fwrite(block, IQ_BLOCK_LEN, 1, stdout);
fflush(stdout);
} else {
sleep_us(25);
}
}