diff --git a/eive_tmtc/tmtc/acs/acs_ctrl.py b/eive_tmtc/tmtc/acs/acs_ctrl.py index 61dcc30..151accf 100644 --- a/eive_tmtc/tmtc/acs/acs_ctrl.py +++ b/eive_tmtc/tmtc/acs/acs_ctrl.py @@ -21,6 +21,7 @@ from tmtccmd.tc.pus_3_fsfw_hk import ( make_sid, enable_periodic_hk_command_with_interval, disable_periodic_hk_command, + create_request_one_diag_command, ) from tmtccmd.util.tmtc_printer import FsfwTmTcPrinter @@ -286,7 +287,9 @@ def pack_acs_ctrl_command(p: ServiceProviderParams): elif op_code in OpCodes.REQUEST_PROC_GYR_HK: q.add_log_cmd(Info.REQUEST_PROC_GYR_HK) q.add_pus_tc( - generate_one_hk_command(make_sid(ACS_CONTROLLER, SetId.GYR_PROC_SET)) + create_request_one_diag_command( + make_sid(ACS_CONTROLLER, SetId.GYR_PROC_SET) + ) ) elif op_code in OpCodes.ENABLE_PROC_GYR_HK: q.add_log_cmd(Info.ENABLE_PROC_GYR_HK)