Combining high speed buses with stop mode and avoiding race conditions?
I working with the STM32F446-microcontroller and my project is using a simple home-made task scheduler: while (TRUE) { if (0 < numQueuedTasks(TASK_LOW_LEVEL_DRIVERS)) { handleNextTask(TASK_LOW_LEVEL_DRIVERS); continue; } ...