eive-tmtc/pus_tc/system/common.py

26 lines
590 B
Python
Raw Normal View History

2022-05-27 11:53:57 +02:00
from typing import Union
2022-03-22 19:29:55 +01:00
from spacepackets.ecss.tc import PusTelecommand
2022-07-04 17:59:09 +02:00
from tmtccmd.tc import QueueHelper
from tmtccmd.tc.pus_200_fsfw_modes import pack_mode_data, Modes, Subservices
2022-03-22 19:29:55 +01:00
def command_mode(
2022-05-27 11:53:57 +02:00
object_id: bytes,
mode: Union[int, Modes],
submode: int,
2022-07-04 17:59:09 +02:00
q: QueueHelper,
2022-05-27 11:53:57 +02:00
info: str,
2022-03-22 19:29:55 +01:00
):
2022-07-04 17:59:09 +02:00
q.add_log_cmd(info)
2022-03-22 19:29:55 +01:00
mode_data = pack_mode_data(
object_id=object_id,
mode=mode,
submode=submode,
)
2022-07-04 17:59:09 +02:00
q.add_pus_tc(
PusTelecommand(
service=200, subservice=Subservices.TC_MODE_COMMAND, app_data=mode_data
)
2022-03-22 19:29:55 +01:00
)