Bump up the stack utilisation

This commit is contained in:
Kedar Sovani 2023-08-09 12:25:38 +05:30
parent 46ef8ef596
commit 0319ece0ab

View file

@ -39,7 +39,7 @@ mod dev_att;
#[cfg(feature = "std")] #[cfg(feature = "std")]
fn main() -> Result<(), Error> { fn main() -> Result<(), Error> {
let thread = std::thread::Builder::new() let thread = std::thread::Builder::new()
.stack_size(150 * 1024) .stack_size(160 * 1024)
.spawn(run) .spawn(run)
.unwrap(); .unwrap();