2021-03-19 17:39:52 +01:00
|
|
|
"""
|
|
|
|
@brief This file transfers control of the custom definitions like modes to the user.
|
|
|
|
@details Template configuration file. Copy this folder to the TMTC commander root and adapt
|
|
|
|
it to your needs.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import enum
|
|
|
|
|
|
|
|
|
2021-06-21 17:30:37 +02:00
|
|
|
PUS_APID = 0x65
|
|
|
|
|
|
|
|
|
2021-03-19 18:01:17 +01:00
|
|
|
class CustomServiceList(enum.Enum):
|
2021-05-17 17:59:24 +02:00
|
|
|
TEST_DEVICE = "test",
|
2021-03-19 17:39:52 +01:00
|
|
|
P60DOCK = "p60dock"
|
|
|
|
PDU1 = "pdu1"
|
|
|
|
PDU2 = "pdu2"
|
|
|
|
ACU = "acu"
|
|
|
|
TMP1075_1 = "tmp1075_1"
|
|
|
|
TMP1075_2 = "tmp1075_2"
|
|
|
|
HEATER = "heater"
|
2021-03-26 13:56:02 +01:00
|
|
|
IMTQ = "imtq"
|
2021-04-11 11:08:52 +02:00
|
|
|
PLOC = "ploc"
|
2021-05-17 17:59:24 +02:00
|
|
|
PCDU = "pcdu",
|
|
|
|
SA_DEPLYOMENT = "sa_depl"
|
2021-06-29 09:51:54 +02:00
|
|
|
REACTION_WHEEL_1 = "reaction_wheel_1"
|
|
|
|
REACTION_WHEEL_2 = "reaction_wheel_2"
|
|
|
|
REACTION_WHEEL_3 = "reaction_wheel_3"
|
|
|
|
REACTION_WHEEL_4 = "reaction_wheel_4"
|
2021-07-01 11:52:25 +02:00
|
|
|
RAD_SENSOR = "rad_sensor"
|
2021-07-11 14:29:11 +02:00
|
|
|
PLOC_SUPV = "ploc_supv"
|