From e7e97ff2d34015bc7a8a947cd831ccb4c0c5c3c9 Mon Sep 17 00:00:00 2001 From: meggert Date: Fri, 1 Dec 2023 13:03:38 +0100 Subject: [PATCH] i never pushed this lul --- eive_tmtc/pus_tm/hk_handler.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eive_tmtc/pus_tm/hk_handler.py b/eive_tmtc/pus_tm/hk_handler.py index 8391f69..949d165 100644 --- a/eive_tmtc/pus_tm/hk_handler.py +++ b/eive_tmtc/pus_tm/hk_handler.py @@ -13,6 +13,7 @@ from eive_tmtc.tmtc.payload.rad_sensor import handle_rad_sensor_data from eive_tmtc.tmtc.acs.sus import handle_sus_hk from eive_tmtc.tmtc.payload.ploc_supervisor import handle_supv_hk_data from eive_tmtc.tmtc.acs.reaction_wheels import handle_rw_hk_data +from eive_tmtc.tmtc.power.pwr_ctrl import handle_pwr_ctrl_hk_data from eive_tmtc.tmtc.com.syrlinks_handler import handle_syrlinks_hk_data from eive_tmtc.tmtc.tcs import handle_thermal_controller_hk_data from eive_tmtc.tmtc.tcs.tmp1075 import handle_tmp_1075_hk_data @@ -201,6 +202,10 @@ def handle_regular_hk_print( # noqa C901: Complexity okay here return handle_acs_ctrl_hk_data( pw=pw, set_id=set_id, hk_data=hk_data, packet_time=packet_dt ) + elif objb == obj_ids.PWR_CONTROLLER: + return handle_pwr_ctrl_hk_data( + pw=pw, set_id=set_id, hk_data=hk_data, packet_time=packet_dt + ) else: _LOGGER.info( f"Service 3 TM: Parsing for object {object_id} and set ID {set_id} "