What is the best way to configure a state machine in order to prevent polling - is this even possible?
I currently have a state machine running through 13 states (13 different tests). However, some of the states require input from the user before proceeding and therefore the loop polls until it the user presses a button to continue. Is there a more efficient way to do this? I can't use an event structure because I already have one in another while loop in the same frame (the state machine is in a different while loop than the event structure).
Thanks for the help!
-Erik