From 6b406b8e9acc0bd95c04d8e3ea70c05667a245a8 Mon Sep 17 00:00:00 2001 From: Markus Kranz Date: Tue, 28 Mar 2023 16:07:34 +0200 Subject: [PATCH] fixed mgt off cmd to off from on --- eive_tmtc/tmtc/power/pdu1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eive_tmtc/tmtc/power/pdu1.py b/eive_tmtc/tmtc/power/pdu1.py index 603d9dd..8cbe6e3 100644 --- a/eive_tmtc/tmtc/power/pdu1.py +++ b/eive_tmtc/tmtc/power/pdu1.py @@ -255,7 +255,7 @@ def mgt_off_cmd(q: DefaultPusQueueHelper): def create_mgt_off_cmd() -> PusTelecommand: - return create_generic_on_cmd(PDU_1_HANDLER_ID, Pdu1ChIndex.MGT) + return create_generic_off_cmd(PDU_1_HANDLER_ID, Pdu1ChIndex.MGT) def sun_sensor_nominal_on_cmd(q: DefaultPusQueueHelper):