|
Re: "Robots don't quit" error
You shouldn't see that message unless:
A) You overrode either the robotMain() or startCompetition() method, and your method actually exits instead of looping forever. See SimpleRobot.startCompetition() for typical control flow.
B) An exception occurred which was not caught by your robot's code. In this case, the exception stack trace should have been printed.
|