bugfix for EPS
EIVE/-/pipeline/head This commit looks good Details

This commit is contained in:
Robin Müller 2024-03-26 17:50:37 +01:00
parent f87095bf68
commit 92c0172b59
1 changed files with 3 additions and 3 deletions

View File

@ -116,9 +116,9 @@ def handle_pus_procedure(
def handle_eps_procedure(queue_helper: DefaultPusQueueHelper, cmd_path_list: List[str]):
obj_id_man = get_object_ids()
if len(cmd_path_list) == 1:
return pack_power_commands(queue_helper, cmd_path_list[0])
assert len(cmd_path_list) >= 2
assert len(cmd_path_list) >= 1
if cmd_path_list[0] == "power":
return pack_power_commands(queue_helper, cmd_path_list[1])
if cmd_path_list[0] == "pwr_ctrl":
return pack_power_ctrl_command(queue_helper, cmd_path_list[1])
if cmd_path_list[0] == "p60_dock":