2021-09-08 13:20:22 +02:00
|
|
|
import enum
|
|
|
|
|
2022-11-29 16:53:29 +01:00
|
|
|
from eive_tmtc.config.definitions import CustomServiceList
|
2022-08-12 10:18:21 +02:00
|
|
|
from tmtccmd.config import TmtcDefinitionWrapper, OpCodeEntry
|
|
|
|
from tmtccmd.config.tmtc import tmtc_definitions_provider
|
2022-08-08 16:32:18 +02:00
|
|
|
from tmtccmd.tc import DefaultPusQueueHelper
|
2022-05-24 01:34:33 +02:00
|
|
|
from tmtccmd.tc.pus_3_fsfw_hk import make_sid, generate_one_hk_command
|
|
|
|
from tmtccmd.logging import get_console_logger
|
2021-09-08 13:20:22 +02:00
|
|
|
|
|
|
|
|
2022-05-24 01:34:33 +02:00
|
|
|
LOGGER = get_console_logger()
|
2021-09-08 13:20:22 +02:00
|
|
|
|
2022-05-24 01:34:33 +02:00
|
|
|
|
|
|
|
class OpCodes:
|
|
|
|
REQ_OS_HK = ["0", "hk-os"]
|
|
|
|
RESET_GNSS = ["5", "reset"]
|
|
|
|
|
|
|
|
|
|
|
|
class Info:
|
|
|
|
REQ_OS_HK = "Request One-Shot HK"
|
|
|
|
RESET_GNSS = "Reset GNSS using reset pin"
|
|
|
|
|
|
|
|
|
|
|
|
class SetIds:
|
|
|
|
HK = 0
|
|
|
|
|
|
|
|
|
2022-08-12 10:18:21 +02:00
|
|
|
@tmtc_definitions_provider
|
|
|
|
def add_gps_cmds(defs: TmtcDefinitionWrapper):
|
2022-07-05 02:12:54 +02:00
|
|
|
oce = OpCodeEntry()
|
|
|
|
oce.add(keys=OpCodes.RESET_GNSS, info=Info.RESET_GNSS)
|
|
|
|
oce.add(keys=OpCodes.REQ_OS_HK, info=Info.REQ_OS_HK)
|
|
|
|
defs.add_service(
|
2022-05-24 01:34:33 +02:00
|
|
|
name=CustomServiceList.GPS_CTRL.value,
|
2022-05-25 10:37:38 +02:00
|
|
|
info="GPS/GNSS Controller",
|
2022-07-05 02:12:54 +02:00
|
|
|
op_code_entry=oce,
|
2022-05-24 01:34:33 +02:00
|
|
|
)
|
2021-09-08 13:20:22 +02:00
|
|
|
|
|
|
|
|
2022-08-08 16:32:18 +02:00
|
|
|
def pack_gps_command(object_id: bytes, q: DefaultPusQueueHelper, op_code: str):
|
2022-05-24 01:34:33 +02:00
|
|
|
if op_code in OpCodes.RESET_GNSS:
|
2022-05-24 01:49:57 +02:00
|
|
|
# TODO: This needs to be re-implemented
|
|
|
|
LOGGER.warning("Reset pin handling needs to be re-implemented")
|
2022-05-24 01:34:33 +02:00
|
|
|
if op_code in OpCodes.REQ_OS_HK:
|
2022-07-04 17:59:09 +02:00
|
|
|
q.add_log_cmd(f"GMSS: {Info.REQ_OS_HK}")
|
|
|
|
q.add_pus_tc(
|
|
|
|
generate_one_hk_command(sid=make_sid(object_id=object_id, set_id=SetIds.HK))
|
2022-05-25 10:37:38 +02:00
|
|
|
)
|