
When you build firmware for a microcontroller, you usually end up choosing between two patterns: the simple Arduino-style loop() or a full RTOS-based design. Both can work well, but they solve different problems. The Arduino super loop is easy to understand: run setup once, then repeatedly execute the same code in a …
Read More