From e9d10dae1bf01fd6ddb9907e4abfc9e1e2e2b1e8 Mon Sep 17 00:00:00 2001 From: Markus Kranz Date: Mon, 6 Mar 2023 10:26:58 +0100 Subject: [PATCH 1/2] tmeperature --- eive_tmtc/tmtc/tcs/tmp1075.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eive_tmtc/tmtc/tcs/tmp1075.py b/eive_tmtc/tmtc/tcs/tmp1075.py index dbd1d85..ca5df8f 100644 --- a/eive_tmtc/tmtc/tcs/tmp1075.py +++ b/eive_tmtc/tmtc/tcs/tmp1075.py @@ -40,7 +40,7 @@ class Tmp1075ActionId(enum.IntEnum): class SetId: - TMEPERATURE = 1 + TEMPERATURE = 1 def pack_tmp1075_test_into( From 0c17203825f0585e634fc7723e439ba0a5d9a3ec Mon Sep 17 00:00:00 2001 From: Markus Kranz Date: Mon, 6 Mar 2023 10:36:08 +0100 Subject: [PATCH 2/2] tmeperature --- eive_tmtc/tmtc/tcs/tmp1075.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eive_tmtc/tmtc/tcs/tmp1075.py b/eive_tmtc/tmtc/tcs/tmp1075.py index ca5df8f..6f3f3fc 100644 --- a/eive_tmtc/tmtc/tcs/tmp1075.py +++ b/eive_tmtc/tmtc/tcs/tmp1075.py @@ -64,7 +64,7 @@ def pack_tmp1075_test_into( q.add_pus_tc(PusTelecommand(service=200, subservice=1, app_data=mode_data)) if op_code == OpCode.HK: q.add_log_cmd("TMP1075: Request One-Shot HK") - q.add_pus_tc(create_request_one_hk_command(make_sid(obyt, SetId.TMEPERATURE))) + q.add_pus_tc(create_request_one_hk_command(make_sid(obyt, SetId.TEMPERATURE))) return q