From ebae2b13d4a762ba470031b058070edd873f0725 Mon Sep 17 00:00:00 2001 From: Stephen D <webmaster@scd31.com> Date: Mon, 21 Aug 2023 21:07:30 -0300 Subject: [PATCH] increase buffer length a bit --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 161e8b6..365b111 100644 --- a/src/main.rs +++ b/src/main.rs @@ -29,7 +29,7 @@ mod app { use crate::spi_data::{self, SpiData}; // in # packets - const BUFFER_LEN: usize = 50; + const BUFFER_LEN: usize = 150; // in bytes // explicitly make this smaller than a packet so that we don't buffer things in the tx DMA for a while -- GitLab