You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cwm9cwm9 edited this page Nov 22, 2022
·
8 revisions
opModeActive() -> isStopRequested()
opModeActive() returns false when stop is pressed while in init mode. This makes the method unusable for stop-pressed-detection during the init phase. Your robot must be able to exit from the init phase without timing out. Most programs do not spend much time in Init, but if you do, you must add isStopRequested() tests and exit when requested. Judges may fail your software inspection if you cannot exit init mode with a stop command.