diff --git a/eive_tmtc/tmtc/power/__init__.py b/eive_tmtc/tmtc/power/__init__.py index 7167fcc..b1d859b 100644 --- a/eive_tmtc/tmtc/power/__init__.py +++ b/eive_tmtc/tmtc/power/__init__.py @@ -1 +1,2 @@ from .subsystem import add_eps_subsystem_cmds +from .pwr_ctrl import pwr_cmd_defs diff --git a/eive_tmtc/tmtc/power/pwr_ctrl.py b/eive_tmtc/tmtc/power/pwr_ctrl.py index bbc1104..5a13012 100644 --- a/eive_tmtc/tmtc/power/pwr_ctrl.py +++ b/eive_tmtc/tmtc/power/pwr_ctrl.py @@ -78,7 +78,7 @@ class Info: @tmtc_definitions_provider -def acs_cmd_defs(defs: TmtcDefinitionWrapper): +def pwr_cmd_defs(defs: TmtcDefinitionWrapper): oce = OpCodeEntry() oce.add(keys=OpCodes.OFF, info=Info.OFF) oce.add(keys=OpCodes.ON, info=Info.ON)