2022-10-04 14:12:33 +02:00
|
|
|
import enum
|
2022-10-04 14:46:00 +02:00
|
|
|
from typing import Tuple, Dict
|
2022-10-04 14:12:33 +02:00
|
|
|
|
2022-10-10 10:44:45 +02:00
|
|
|
from spacepackets.ecss import PusTelecommand
|
2022-11-03 22:04:21 +01:00
|
|
|
from tmtc.common import pack_mode_cmd_with_info
|
2022-10-04 14:46:00 +02:00
|
|
|
from config.object_ids import ACS_SUBSYSTEM_ID
|
2022-10-04 14:12:33 +02:00
|
|
|
from config.definitions import CustomServiceList
|
|
|
|
from tmtccmd.config.tmtc import (
|
|
|
|
tmtc_definitions_provider,
|
|
|
|
TmtcDefinitionWrapper,
|
|
|
|
OpCodeEntry,
|
|
|
|
)
|
2022-10-10 10:44:45 +02:00
|
|
|
from tmtccmd.tc.pus_200_fsfw_modes import Subservices as ModeSubservices
|
2022-10-04 14:12:33 +02:00
|
|
|
from tmtccmd.tc import service_provider
|
|
|
|
from tmtccmd.tc.decorator import ServiceProviderParams
|
|
|
|
|
|
|
|
|
|
|
|
class OpCodes(str, enum.Enum):
|
|
|
|
OFF = "off"
|
|
|
|
SAFE = "safe"
|
2022-10-04 14:46:00 +02:00
|
|
|
DETUMBLE = "detumble"
|
2022-10-04 14:12:33 +02:00
|
|
|
IDLE = "idle"
|
2022-10-04 14:46:00 +02:00
|
|
|
TARGET_PT = "target"
|
2022-10-10 10:44:45 +02:00
|
|
|
REPORT_ALL_MODES = "all_modes"
|
2022-10-04 14:46:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
class AcsModes(enum.IntEnum):
|
|
|
|
OFF = 0
|
2022-10-11 15:18:47 +02:00
|
|
|
SAFE = 1 << 24
|
|
|
|
DETUMBLE = 2 << 24
|
|
|
|
IDLE = 3 << 24
|
|
|
|
TARGET_PT = 4 << 24
|
2022-10-04 14:12:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Info(str, enum.Enum):
|
|
|
|
OFF = "Off Command"
|
|
|
|
SAFE = "Safe Mode Command"
|
2022-10-04 14:46:00 +02:00
|
|
|
DETUMBLE = "Detumble Mode Command"
|
2022-10-04 14:12:33 +02:00
|
|
|
IDLE = "Idle Mode Command"
|
2022-10-04 14:46:00 +02:00
|
|
|
TARGET_PT = "Target Pointing Mode Command"
|
2022-10-10 10:44:45 +02:00
|
|
|
REPORT_ALL_MODES = "Report All Modes Recursively"
|
2022-10-04 14:46:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
HANDLER_LIST: Dict[str, Tuple[int, str]] = {
|
|
|
|
OpCodes.OFF: (AcsModes.OFF, Info.OFF),
|
|
|
|
OpCodes.IDLE: (AcsModes.IDLE, Info.IDLE),
|
|
|
|
OpCodes.SAFE: (AcsModes.SAFE, Info.SAFE),
|
|
|
|
OpCodes.DETUMBLE: (AcsModes.DETUMBLE, Info.DETUMBLE),
|
|
|
|
}
|
2022-10-04 14:12:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
@service_provider(CustomServiceList.ACS_SS.value)
|
|
|
|
def build_acs_subsystem_cmd(p: ServiceProviderParams):
|
|
|
|
op_code = p.op_code
|
2022-10-04 14:46:00 +02:00
|
|
|
q = p.queue_helper
|
|
|
|
info_prefix = "ACS Subsystem"
|
2022-10-10 10:44:45 +02:00
|
|
|
if op_code in OpCodes.REPORT_ALL_MODES:
|
|
|
|
q.add_log_cmd(f"{info_prefix}: {Info.REPORT_ALL_MODES}")
|
|
|
|
q.add_pus_tc(
|
|
|
|
PusTelecommand(
|
|
|
|
service=200,
|
|
|
|
subservice=ModeSubservices.TC_MODE_ANNOUNCE_RECURSIVE,
|
|
|
|
app_data=ACS_SUBSYSTEM_ID,
|
|
|
|
)
|
|
|
|
)
|
2022-10-10 11:09:17 +02:00
|
|
|
mode_info_tup = HANDLER_LIST.get(op_code)
|
2022-10-04 14:46:00 +02:00
|
|
|
if mode_info_tup is None:
|
|
|
|
return
|
|
|
|
pack_mode_cmd_with_info(
|
|
|
|
object_id=ACS_SUBSYSTEM_ID,
|
|
|
|
info=f"{info_prefix}: {mode_info_tup[1]}",
|
|
|
|
submode=0,
|
|
|
|
mode=mode_info_tup[0],
|
|
|
|
q=q,
|
|
|
|
)
|
2022-10-04 14:12:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
@tmtc_definitions_provider
|
|
|
|
def add_acs_subsystem_cmds(defs: TmtcDefinitionWrapper):
|
|
|
|
oce = OpCodeEntry()
|
|
|
|
oce.add(OpCodes.OFF, Info.OFF)
|
|
|
|
oce.add(OpCodes.SAFE, Info.SAFE)
|
|
|
|
oce.add(OpCodes.IDLE, Info.IDLE)
|
2022-10-10 10:44:45 +02:00
|
|
|
oce.add(OpCodes.REPORT_ALL_MODES, Info.REPORT_ALL_MODES)
|
2022-10-04 14:12:33 +02:00
|
|
|
defs.add_service(CustomServiceList.ACS_SS, "ACS Subsystem", oce)
|