From f899d169b2a6f7454b2f425dfa2713acf029e016 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 3 Apr 2023 15:54:37 +0200 Subject: [PATCH] missing submode --- eive_tmtc/tmtc/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eive_tmtc/tmtc/system.py b/eive_tmtc/tmtc/system.py index 750bca6..37d2d6a 100644 --- a/eive_tmtc/tmtc/system.py +++ b/eive_tmtc/tmtc/system.py @@ -51,7 +51,7 @@ def build_system_cmds(p: ServiceProviderParams): q.add_pus_tc(create_announce_mode_recursive_command(EIVE_SYSTEM_ID)) elif o == OpCode.BOOT_MODE: q.add_log_cmd(f"{prefix}: {Info.BOOT_MODE}") - q.add_pus_tc(create_mode_command(EIVE_SYSTEM_ID, SystemMode.BOOT)) + q.add_pus_tc(create_mode_command(EIVE_SYSTEM_ID, SystemMode.BOOT, 0)) @tmtc_definitions_provider