While Loop & Repeat Loop Question


#1

Sorry if this is posted in the wrong section, I wasn’t sure where to put it. Just have a quick question.

How often do While loops and Repeat loops execute commands? I know they repeat until conditions are met, but what I’m trying to figure out is, how frequent is the execution?

Thanks.


#2

If I’m understanding the question correctly, commands will be executed as fast as wc can if you don’t put a wait inside the loop.


#3

Thank you. I was trying to replace a timer with a loop.


#4

webcore (on either platform) will be limited on execution time for a single event / wakeup.

So in general, you cannot put it into a poll loop for very long, as it will get terminated.

You really want things to be event driven…