eive-tmtc/config/custom_mode_op.py

20 lines
476 B
Python
Raw Normal View History

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
from tmtccmd.core.backend import TmTcHandler
2021-06-28 19:06:09 +02:00
from tmtccmd.utility.logger 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
def custom_mode_operation(tmtc_backend: TmTcHandler, mode: int):
2021-03-19 17:50:09 +01:00
pass