From fbdc9b5f1c8e0d063b7443e7bcc0b5bef12ceab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Hamal=20Dvo=C5=99=C3=A1k?= Date: Tue, 27 Feb 2024 00:09:53 +0100 Subject: [PATCH] Shorten RX buffers a bit --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 7ac7a51..7a7c7ca 100644 --- a/src/main.c +++ b/src/main.c @@ -52,7 +52,7 @@ static uint32_t lo_cos[LO_WORDS] __attribute__((__aligned__(LO_WORDS * 4))); static uint32_t lo_sin[LO_WORDS] __attribute__((__aligned__(LO_WORDS * 4))); -#define RX_BITS_DEPTH 12 +#define RX_BITS_DEPTH 8 #define RX_WORDS (1 << RX_BITS_DEPTH) static uint32_t rx_cos[RX_WORDS] __attribute__((__aligned__(RX_WORDS * 4))); static uint32_t rx_sin[RX_WORDS] __attribute__((__aligned__(RX_WORDS * 4)));