eive-tmtc/config/definitions.py

43 lines
1.1 KiB
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-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"
2021-09-13 18:06:25 +02:00
ACS = "acs"
2021-03-19 17:39:52 +01:00
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"
RAD_SENSOR = "rad_sensor"
2021-07-11 14:29:11 +02:00
PLOC_SUPV = "ploc_supv"
2021-08-07 14:34:26 +02:00
PLOC_UPDATER = "ploc_updater"
2021-09-08 13:20:22 +02:00
GPS_0 = "gps0"
GPS_1 = "gps1"
2021-08-31 11:17:01 +02:00
PLOC_MEMORY_DUMPER = "ploc_memory_dumper"
2021-08-03 15:28:28 +02:00
CORE = 'core'
2021-08-16 10:03:40 +02:00
STAR_TRACKER = 'star_tracker'
2021-11-24 15:56:25 +01:00
CCSDS_HANDLER = 'ccsds_handler'
PDEC_HANDLER = 'pdec_handler'
2021-12-02 08:01:18 +01:00
STR_IMG_HELPER = 'str_img_helper'
2021-12-02 09:25:31 +01:00
SYRLINKS = 'syrlinks'