From d2e8b30622351205e8679a19241d909eaf980417 Mon Sep 17 00:00:00 2001 From: Ryan Summers Date: Tue, 17 Nov 2020 14:27:17 +0100 Subject: [PATCH] Increasing batch size --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index bdede85..4fcdb0c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -55,7 +55,7 @@ use heapless::{consts::*, String}; const SAMPLE_FREQUENCY_KHZ: u32 = 500; // The desired ADC sample processing buffer size. -const SAMPLE_BUFFER_SIZE: usize = 1; +const SAMPLE_BUFFER_SIZE: usize = 2; #[link_section = ".sram3.eth"] static mut DES_RING: ethernet::DesRing = ethernet::DesRing::new();