eive-tmtc/config/definitions.py

23 lines
539 B
Python
Raw Normal View History

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-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"