10-29-2018 01:25 PM
Thanks..
the while loop for a state machine will work, right?? I do not need to add another loop, right?
also where should I put the reset FGV? outside the state machine? or the previous case within the same state machine?
10-29-2018 01:38 PM
@idjuven1 wrote:
also where should I put the reset FGV? outside the state machine? or the previous case within the same state machine?
You do it in your state machine wherever you need the timer to be reset.
10-29-2018 01:54 PM
Thanks but if you put the "read time" in the same case where you "reset" the timer, the "read time" FGV does not respond..
10-29-2018 02:42 PM
Right. You want to reset once and then continually read. fF you reset every time you read, you will always be measuring (TimeNow-TimeNow) as your elapsed time (=0).