Fixing buffer size

This commit is contained in:
Ryan Summers 2020-12-02 17:11:06 +01:00
parent d3bb5ab0e4
commit 91f722f450

View File

@ -58,7 +58,7 @@ use heapless::{consts::*, String};
const SAMPLE_FREQUENCY_KHZ: u32 = 500;
// The desired ADC sample processing buffer size.
const SAMPLE_BUFFER_SIZE: usize = 2;
const SAMPLE_BUFFER_SIZE: usize = 1;
#[link_section = ".sram3.eth"]
static mut DES_RING: ethernet::DesRing = ethernet::DesRing::new();