eive-tmtc/pus_tc/devs/gps.py

64 lines
2.2 KiB
Python
Raw Normal View History

2021-09-08 13:20:22 +02:00
import enum
2022-05-24 01:34:33 +02:00
from config.definitions import CustomServiceList
from tmtccmd.config import add_op_code_entry, add_service_op_code_entry
from tmtccmd.tc.pus_3_fsfw_hk import make_sid, generate_one_hk_command
from tmtccmd.config.definitions import QueueCommands, ServiceOpCodeDictT
from tmtccmd.logging import get_console_logger
2021-09-08 13:20:22 +02:00
from tmtccmd.tc.definitions import TcQueueT
from tmtccmd.tc.pus_8_funccmd import generate_action_command
2021-09-08 13:20:22 +02:00
from config.object_ids import GPS_HANDLER_1_ID, GPS_HANDLER_0_ID
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
def add_gps_cmds(cmd_dict: ServiceOpCodeDictT):
op_code_dict = dict()
add_op_code_entry(
op_code_dict=op_code_dict, keys=OpCodes.RESET_GNSS, info=Info.RESET_GNSS
)
add_op_code_entry(
op_code_dict=op_code_dict, keys=OpCodes.REQ_OS_HK, info=Info.REQ_OS_HK
)
add_service_op_code_entry(
srv_op_code_dict=cmd_dict,
op_code_entry=op_code_dict,
name=CustomServiceList.GPS_CTRL.value,
info="GPS/GNSS Controller"
)
2021-09-08 13:20:22 +02:00
2021-09-08 14:47:33 +02:00
def pack_gps_command(object_id: bytes, tc_queue: TcQueueT, op_code: str):
2022-05-24 01:34:33 +02:00
if op_code in OpCodes.RESET_GNSS:
2021-09-08 13:20:22 +02:00
if object_id == GPS_HANDLER_0_ID:
2022-05-24 01:34:33 +02:00
# TODO: This needs to be re-implemented
LOGGER.warning("Reset pin handling needs to be re-implemented")
return
# tc_queue.appendleft((QueueCommands.PRINT, "Resetting GPS device 0"))
2021-09-08 13:20:22 +02:00
elif object_id == GPS_HANDLER_1_ID:
2022-05-24 01:34:33 +02:00
LOGGER.warning("Reset pin handling needs to be re-implemented")
return
# tc_queue.appendleft((QueueCommands.PRINT, "Resetting GPS device 1"))
2021-09-08 13:20:22 +02:00
cmd = generate_action_command(object_id=object_id, action_id=int(op_code))
tc_queue.appendleft(cmd.pack_command_tuple())
2022-05-24 01:34:33 +02:00
if op_code in OpCodes.REQ_OS_HK:
tc_queue.appendleft((QueueCommands.PRINT, f"GMSS: {Info.REQ_OS_HK}"))
cmd = generate_one_hk_command(sid=make_sid(object_id=object_id, set_id=SetIds.HK), ssc=0)
tc_queue.appendleft(cmd.pack_command_tuple())