moved EIVE to new tmtc commander

This commit is contained in:
2021-03-19 17:39:52 +01:00
parent 4d9df1ba87
commit 27c1da4f77
39 changed files with 317 additions and 466 deletions

19
config/custom_mode_op.py Normal file
View File

@ -0,0 +1,19 @@
"""
@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
from tmtccmd.utility.tmtcc_logger import get_logger
LOGGER = get_logger()
class CustomModeList(enum.IntEnum):
pass
def custom_mode_operation(tmtc_backend: TmTcHandler, mode: int):
pass