Hi all,
I am getting this error when running an app in the sim - but it works fine on my FR235:
Failed invoking <symbol>
Too Many Timers Error
I have 4 timers running and the behaviour is slightly different depending on the scenario:
1) timer counting up each second
countup.start( method(:countupTimerCallback), 1000, true );
2) timer counting down each second
countdown.start( method(:countdownTimerCallback), 1000, true )
3) timer checking if the countdown timer is (still) paused after 5 seconds
pausedTimer.start(method(:pausedTimerCallback), 5000, true);
4) timer checking if exit pressed 3 times within 3 seconds (non-repeating timer)
exitTimer.start(method(:exitTimerCallback), 3000, false);
If I have 1 and 2 running I can call timer 4 and it all works fine
If I have 1,2 and 3 running then I get the error when trying to call 4
Can you have more than 3 timers running at the same time?