The answer is probably: * Make your spi bus * put it in a mutex * put the mutex(spi bus) in a StaticCell, so you have a `&'static Mutex<YourSpi>` * Pass that ref to the tasks * in each task, make a new SpiDevice from the ref