From 013cf04398a1f99f2b91111f881669ca116ca805 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Hamal=20Dvo=C5=99=C3=A1k?= Date: Tue, 27 Feb 2024 20:33:41 +0100 Subject: [PATCH] Make sure we do not fall behind on RX --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 821188c..1e19e5f 100644 --- a/src/main.c +++ b/src/main.c @@ -591,7 +591,7 @@ static void rf_rx(void) while (delta < 2 * DECIMATION) { delta = prev_transfers - dma_hw->ch[dma_ch_in_cos].transfer_count; - sleep_us(100); + sleep_us(10); } prev_transfers -= 2 * DECIMATION;