From 7e5fa2e61a3f2b50860fe2e3427f31f7ebaf854f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 6 Apr 2023 19:08:04 +0200 Subject: [PATCH] add RW health cmds --- eive_tmtc/tmtc/obj_prompt.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/eive_tmtc/tmtc/obj_prompt.py b/eive_tmtc/tmtc/obj_prompt.py index 6252281..c3d3558 100644 --- a/eive_tmtc/tmtc/obj_prompt.py +++ b/eive_tmtc/tmtc/obj_prompt.py @@ -12,7 +12,9 @@ from eive_tmtc.config.object_ids import ( MGM_0_LIS3_HANDLER_ID, MGM_1_RM3100_HANDLER_ID, SUS_0_N_LOC_XFYFZM_PT_XF, - SUS_6_R_LOC_XFYBZM_PT_XF + SUS_6_R_LOC_XFYBZM_PT_XF, + RW1_ID, + RW2_ID, ) SUBSYSTEM_DICT = { @@ -33,7 +35,9 @@ ACS_OBJ_DICT = { 8: ("MGM 1 RM3100", MGM_1_RM3100_HANDLER_ID), 9: ("GPS 0 Health Device", GPS_0_HEALTH_DEV), 10: ("SUS 0", SUS_0_N_LOC_XFYFZM_PT_XF), - 11: ("SUS 6", SUS_6_R_LOC_XFYBZM_PT_XF) + 11: ("SUS 6", SUS_6_R_LOC_XFYBZM_PT_XF), + 12: ("RW 1", RW1_ID), + 13: ("RW 2", RW2_ID), }