One task needs to time out after about 100 ms, another after about 30 sec. So if I set up Timer1, say, to roll over every 100 ms, then one rollover would timeout my first task, and 300 rollovers would ...
I have an rtos task that I need to exit if it takes too long. I tried using the rtos_overrun function to see if it takes too long, but it does not seem to work unless I first yield to the rtos, in whi ...