Skip to content

Commit

Permalink
boards: particle_boron: increase uart kernel buffers
Browse files Browse the repository at this point in the history
Signed-off-by: Wilfred Mallawa <[email protected]>
  • Loading branch information
twilfredo committed Jan 23, 2024
1 parent 26b4433 commit 4c577ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boards/particle_boron/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,15 +380,15 @@ 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(
board_kernel,
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!());
Expand Down

0 comments on commit 4c577ce

Please sign in to comment.