Summary: Wasting time in a main loop scheduler can make testing system-level timing a whole lot easier.It's common enough to see a main loop scheduler in an embedded system along the lines of the following:for(;;){ Task1(); Task2(); Task3();}I've heard this referred to as a "static scheduler,"...