From 4c577ce8181e3072ed39d206f6cd3b83d6069ccc Mon Sep 17 00:00:00 2001 From: Wilfred Mallawa Date: Wed, 17 Jan 2024 10:02:05 +1000 Subject: [PATCH] boards: particle_boron: increase uart kernel buffers Signed-off-by: Wilfred Mallawa --- boards/particle_boron/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boards/particle_boron/src/main.rs b/boards/particle_boron/src/main.rs index a67b174f74..8485e93d9d 100644 --- a/boards/particle_boron/src/main.rs +++ b/boards/particle_boron/src/main.rs @@ -380,7 +380,7 @@ pub unsafe fn start_particle_boron() -> ( // Create a shared UART channel for the console and for kernel debug. let uart_mux = components::console::UartMuxComponent::new(uart_channel, 115200) - .finalize(components::uart_mux_component_static!()); + .finalize(components::uart_mux_component_static!(132)); // Setup the console. let console = components::console::ConsoleComponent::new( @@ -388,7 +388,7 @@ pub unsafe fn start_particle_boron() -> ( capsules_core::console::DRIVER_NUM, uart_mux, ) - .finalize(components::console_component_static!()); + .finalize(components::console_component_static!(132, 132)); // Create the debugger object that handles calls to `debug!()`. components::debug_writer::DebugWriterComponent::new(uart_mux) .finalize(components::debug_writer_component_static!());