diondokter: sounds promising.. I looked at some embassy examples and found this in the multi-prio examples: ```rust // Low priority executor: runs in thread mode, using WFE/SEV let executor = EXECUTOR_LOW.init(Executor::new()); executor.run(|spawner| { unwrap!(spawner.spawn(run_low())); }); ``` so I would run this portion of a code inside the FreeRTOS task?