From 3d2dee8c9c6265162579d363eeed6e55d03f36b9 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 11 Oct 2022 15:18:47 +0200 Subject: [PATCH] command correct sequence IDs now --- tmtc/acs_subsystem.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tmtc/acs_subsystem.py b/tmtc/acs_subsystem.py index 650a1f7..26477ec 100644 --- a/tmtc/acs_subsystem.py +++ b/tmtc/acs_subsystem.py @@ -26,11 +26,10 @@ class OpCodes(str, enum.Enum): class AcsModes(enum.IntEnum): OFF = 0 - SAFE = 1 - DETUMBLE = 2 - IDLE = 3 - TARGET_PT = 4 - REPORT_ALL_MODES = 5 + SAFE = 1 << 24 + DETUMBLE = 2 << 24 + IDLE = 3 << 24 + TARGET_PT = 4 << 24 class Info(str, enum.Enum):