add back ping TC

This commit is contained in:
Robin Müller 2022-09-09 17:43:13 +02:00
parent d1f3898be8
commit 0e27436284
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
1 changed files with 5 additions and 0 deletions

View File

@ -17,6 +17,11 @@ def common_fsfw_service_op_code_dict() -> TmtcDefinitionWrapper:
"200", info="PUS Service 200 Mode MGMT", op_code_entry=op_code_entry
)
op_code_entry = OpCodeEntry()
op_code_entry.add(keys="ping", info="Send ping command")
def_wrapper.add_service(
"17", info="PUS Service 17 Ping", op_code_entry=op_code_entry
)
add_tc_sched_cmds(def_wrapper)
add_param_cmds(def_wrapper)
add_hk_cmds(def_wrapper)