diff --git a/pus_tc/tmtcc_tc_heater.py b/pus_tc/tmtcc_tc_heater.py index 23e99e4..1168f9a 100644 --- a/pus_tc/tmtcc_tc_heater.py +++ b/pus_tc/tmtcc_tc_heater.py @@ -10,19 +10,6 @@ from tmtc_core.pus_tc.tmtcc_pus_tc_packer import TcQueueT from tmtc_core.pus_tc.tmtcc_pus_tc_base import PusTelecommand -class TestProcedure: - """ - @brief The variables in this class can be used to configure the heater test procedure. - """ - allOn = False # All heaters will be turned on - allOff = False # All heaters will be turned off - # Set to true if a specific heater shall be set to on or off - singleHeaterOn = True - singleHeaterOff = False - # When in single heater test mode, define here the heater to switch - singleHeaterSelection = 0xFF - - class SwitchNumbers: HEATER_0 = 0 HEATER_1 = 1 @@ -35,11 +22,6 @@ class SwitchNumbers: NUMBER_OF_SWITCHES = 8 -class SwitchActions: - OFF = 0 - ON = 1 - - class ActionIds: SWITCH_HEATER = bytearray([0x0, 0x0, 0x0, 0x0])