Skip to content

Commit

Permalink
Increase ISR stack size
Browse files Browse the repository at this point in the history
Without this, the CoAP example on particle-xenon crashes during a
fauxhoc.py run.
  • Loading branch information
chrysn committed Apr 22, 2024
1 parent 6e311a6 commit 95742cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/riot-rs-rt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ cfg_if::cfg_if! {
}

const ISR_STACKSIZE: usize =
riot_rs_utils::usize_from_env_or!("CONFIG_ISR_STACKSIZE", 8192, "ISR stack size (in bytes)");
riot_rs_utils::usize_from_env_or!("CONFIG_ISR_STACKSIZE", 16384, "ISR stack size (in bytes)");

#[link_section = ".isr_stack"]
#[used(linker)]
Expand Down

0 comments on commit 95742cb

Please sign in to comment.