Removed jogging wait stuff
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Pünkösd Marcell 2021-04-08 23:53:42 +02:00
parent 769ee0aeca
commit 49a5c07f98
1 changed files with 0 additions and 6 deletions

View File

@ -27,20 +27,14 @@ class ProgramExecutor(Thread):
self._current_step_desc = {}
self._pc = 0
self._loop_counter = 0
# TODO: jogging wait
self._state = ProgramExecutorStates.PREPARING
self._logger = logging.getLogger("program_executor")
def abort(self):
self._state = ProgramExecutorStates.ABORTED
# TODO: implement abort
def cont(self):
# TODO: jogging wait
pass
def get_status(self) -> dict:
return {
"current_step": self._pc,