From 0319ece0ab61f9925c051bb262420d758da74ed1 Mon Sep 17 00:00:00 2001 From: Kedar Sovani Date: Wed, 9 Aug 2023 12:25:38 +0530 Subject: [PATCH] Bump up the stack utilisation --- examples/onoff_light/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/onoff_light/src/main.rs b/examples/onoff_light/src/main.rs index de2e199..ad72cbd 100644 --- a/examples/onoff_light/src/main.rs +++ b/examples/onoff_light/src/main.rs @@ -39,7 +39,7 @@ mod dev_att; #[cfg(feature = "std")] fn main() -> Result<(), Error> { let thread = std::thread::Builder::new() - .stack_size(150 * 1024) + .stack_size(160 * 1024) .spawn(run) .unwrap();