2021-03-19 17:39:52 +01:00
|
|
|
"""
|
|
|
|
@brief This file transfers control of custom mode handling to the user.
|
|
|
|
@details Template configuration file. Copy this folder to the TMTC commander root and adapt
|
|
|
|
it to your needs.
|
|
|
|
"""
|
|
|
|
import enum
|
|
|
|
|
2022-07-05 02:12:54 +02:00
|
|
|
from tmtccmd import CcsdsTmtcBackend
|
2022-04-05 00:51:52 +02:00
|
|
|
from tmtccmd.logging import get_console_logger
|
2021-03-19 17:39:52 +01:00
|
|
|
|
2021-06-28 19:06:09 +02:00
|
|
|
LOGGER = get_console_logger()
|
2021-03-19 17:39:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
class CustomModeList(enum.IntEnum):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2022-07-05 02:12:54 +02:00
|
|
|
def custom_mode_operation(_tmtc_backend: CcsdsTmtcBackend, _mode: int):
|
2021-03-19 17:50:09 +01:00
|
|
|
pass
|