From 1123c4d4df58aa1b2b37495651774f1c68c50076 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 11 Oct 2023 11:37:48 +0200 Subject: [PATCH] WDT --- eive_tmtc/tmtc/__init__.py | 1 + eive_tmtc/tmtc/wdt.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/eive_tmtc/tmtc/__init__.py b/eive_tmtc/tmtc/__init__.py index 93a44f6..618cee5 100644 --- a/eive_tmtc/tmtc/__init__.py +++ b/eive_tmtc/tmtc/__init__.py @@ -6,3 +6,4 @@ from .health import add_health_cmd_defs from .system import add_system_cmd_defs from .tm_store import add_persistent_tm_store_cmd_defs from .tcs import add_tmp_sens_cmds +from .wdt import add_xiphos_wdt_defs diff --git a/eive_tmtc/tmtc/wdt.py b/eive_tmtc/tmtc/wdt.py index 27980a8..fb63ac7 100644 --- a/eive_tmtc/tmtc/wdt.py +++ b/eive_tmtc/tmtc/wdt.py @@ -34,7 +34,7 @@ def pack_wdt_commands(q: DefaultPusQueueHelper, op_code: str): @tmtc_definitions_provider -def add_health_cmd_defs(defs: TmtcDefinitionWrapper): +def add_xiphos_wdt_defs(defs: TmtcDefinitionWrapper): oce = OpCodeEntry() oce.add(keys=OpCode.ENABLE, info=Info.ENABLE) oce.add(keys=OpCode.ENABLE, info=Info.DISABLE)