bump dependencies

This commit is contained in:
Robin Müller 2022-08-24 15:31:06 +02:00
parent 81a3abe850
commit c83e00a67b
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
3 changed files with 11 additions and 7 deletions

View File

@ -168,6 +168,9 @@ def setup_params(hook_obj: TmTcCfgHookBase) -> SetupWrapper:
print(f"-- spacepackets v{spacepackets.__version__} --") print(f"-- spacepackets v{spacepackets.__version__} --")
params = SetupParams() params = SetupParams()
parser_wrapper = ArgParserWrapper(hook_obj) parser_wrapper = ArgParserWrapper(hook_obj)
parser_wrapper.create_default_parent_parser()
parser_wrapper.create_default_parser()
parser_wrapper.add_def_proc_args()
parser_wrapper.parse() parser_wrapper.parse()
tmtccmd.init_printout(parser_wrapper.use_gui) tmtccmd.init_printout(parser_wrapper.use_gui)
parser_wrapper.set_params(params) parser_wrapper.set_params(params)

View File

@ -11,7 +11,7 @@ from tmtccmd.tc.pus_20_params import (
) )
from tmtccmd.tc.pus_3_fsfw_hk import make_sid, generate_one_hk_command from tmtccmd.tc.pus_3_fsfw_hk import make_sid, generate_one_hk_command
import tmtccmd.tc.pus_3_fsfw_hk as srv3 import tmtccmd.tc.pus_3_fsfw_hk as srv3
from tmtccmd.tc.pus_8_funccmd import generate_action_command from tmtccmd.tc.pus_8_funccmd import make_fsfw_action_cmd
from common_tmtc.config.object_ids import TEST_DEVICE_0_ID, TEST_DEVICE_1_ID from common_tmtc.config.object_ids import TEST_DEVICE_0_ID, TEST_DEVICE_1_ID
@ -166,7 +166,5 @@ def pack_notification_basic_test(
q.add_log_cmd("Triggering notification") q.add_log_cmd("Triggering notification")
q.add_pus_tc( q.add_pus_tc(
generate_action_command( make_fsfw_action_cmd(object_id=object_id, action_id=TEST_NOTIFICATION_ACTION_ID)
object_id=object_id, action_id=TEST_NOTIFICATION_ACTION_ID
)
) )

View File

@ -3,12 +3,13 @@
@details Template configuration file. Copy this folder to the TMTC commander root and adapt @details Template configuration file. Copy this folder to the TMTC commander root and adapt
it to your needs. it to your needs.
""" """
from spacepackets.ecss.pus_17_test import Service17Tm
import spacepackets.ecss.pus_17_test as pus17
from spacepackets.ecss.tm import PusTelemetry from spacepackets.ecss.tm import PusTelemetry
from spacepackets.util import PrintFormats from spacepackets.util import PrintFormats
from tmtccmd.logging.pus import RawTmtcTimedLogWrapper from tmtccmd.logging.pus import RawTmtcTimedLogWrapper
from tmtccmd.pus import VerificationWrapper from tmtccmd.pus import VerificationWrapper
from tmtccmd.tm.pus_17_test import Service17TmExtended
from tmtccmd.tm.pus_2_rawcmd import Service2Tm from tmtccmd.tm.pus_2_rawcmd import Service2Tm
from tmtccmd.tm.pus_20_fsfw_parameters import Service20FsfwTm from tmtccmd.tm.pus_20_fsfw_parameters import Service20FsfwTm
from tmtccmd.tm.pus_200_fsfw_modes import Service200FsfwTm from tmtccmd.tm.pus_200_fsfw_modes import Service200FsfwTm
@ -55,8 +56,10 @@ def pus_factory_hook(
elif service == 5: elif service == 5:
handle_event_packet(raw_tm=packet, printer=printer, file_logger=file_logger) handle_event_packet(raw_tm=packet, printer=printer, file_logger=file_logger)
elif service == 17: elif service == 17:
tm_packet = Service17TmExtended.unpack(raw_telemetry=packet) tm_packet = Service17Tm.unpack(raw_telemetry=packet)
dedicated_handler = False if tm_packet.subservice == pus17.Subservices.TM_REPLY:
wrapper.dlog("Received Ping Reply TM[17,2]")
dedicated_handler = True
elif service == 20: elif service == 20:
tm_packet = Service20FsfwTm.unpack(raw_telemetry=packet) tm_packet = Service20FsfwTm.unpack(raw_telemetry=packet)
dedicated_handler = False dedicated_handler = False