23 lines
724 B
Python
23 lines
724 B
Python
"""
|
|
@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 sys
|
|
|
|
from config.tmtcc_definitions import ModeList
|
|
from core.tmtc_backend import TmTcHandler
|
|
from test.obsw_pus_service_test import run_selected_pus_tests
|
|
from tmtc_core.utility.tmtcc_logger import get_logger
|
|
from utility.tmtcc_binary_uploader import BinaryFileUploader
|
|
|
|
LOGGER = get_logger()
|
|
|
|
|
|
def perform_mode_operation_user(tmtc_backend: TmTcHandler, mode: ModeList):
|
|
"""
|
|
Custom modes can be implemented here
|
|
"""
|
|
LOGGER.error(f"Unknown mode {mode}, Configuration error !")
|
|
sys.exit()
|