From 895987ebf3ed35371b0a0329c542f38a7b4d4003 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 7 Feb 2023 14:42:53 +0100 Subject: [PATCH] added store object IDS --- eive_tmtc/config/object_ids.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eive_tmtc/config/object_ids.py b/eive_tmtc/config/object_ids.py index 4893b79..f948260 100644 --- a/eive_tmtc/config/object_ids.py +++ b/eive_tmtc/config/object_ids.py @@ -141,6 +141,11 @@ TCS_CONTROLLER = bytes([0x43, 0x40, 0x00, 0x01]) ACS_CONTROLLER = bytes([0x43, 0x00, 0x00, 0x02]) CORE_CONTROLLER_ID = bytes([0x43, 0x00, 0x00, 0x03]) +MISC_TM_STORE = bytes([0x73, 0x02, 0x00, 0x01]) +OK_TM_STORE = bytes([0x73, 0x02, 0x00, 0x02]) +NOT_OK_TM_STORE = bytes([0x73, 0x02, 0x00, 0x03]) +HK_TM_STORE = bytes([0x73, 0x02, 0x00, 0x04]) +CFDP_TM_STORE = bytes([0x73, 0x03, 0x00, 0x00]) ObjectIdDict = Dict[bytes, ObjectIdU32]