PennController for IBEX › Forums › Support › problems with timeout › Reply To: problems with timeout
May 2, 2023 at 10:54 am
#10499
Keymaster
Hi Noelia,
All the Timer elements in your trial are started and waited for upon creation: defaultTimer.start().wait()
This applies to the one named “hurry” too, so newTimer("hurry", 1000).log().start() implicitly stands for newTimer("hurry", 1000).start().wait().log().start()
Remove .wait() from the default commands, and include it explicitly where you need it
Jeremy