16 lines
492 B
Python
16 lines
492 B
Python
"""
|
|
@brief This file exposes hook functions to the user.
|
|
@details Template configuration file. Copy this folder to the TMTC commander root and adapt
|
|
it to your needs.
|
|
"""
|
|
from tmtc_core.pus_tc.tmtcc_pus_tc_base import PusTelecommand
|
|
|
|
|
|
def command_preparation_hook() -> PusTelecommand:
|
|
"""
|
|
Can be used to pack user-defined commands by generating and returning a PusTelecommand
|
|
class instance
|
|
"""
|
|
return PusTelecommand(service=17, subservice=1, ssc=20)
|
|
|