eive-tmtc/config/globals_config.py

37 lines
1.2 KiB
Python
Raw Normal View History

2021-03-19 17:39:52 +01:00
"""
@brief This file transfers definitions of global variables to the user.
@details Template configuration file. Copy this folder to the TMTC commander root and adapt
it to your needs.
"""
import enum
import argparse
# All globals can be added here and will be part of a globals dictionary.
from config.definitions import CustomServiceList
from config.custom_mode_op import CustomModeList
2021-05-17 17:42:04 +02:00
from tmtccmd.config.definitions import CoreComInterfaces, CoreServiceList, CoreGlobalIds
from tmtccmd.config.globals import set_default_globals_pre_args_parsing, \
set_default_globals_post_args_parsing
2021-03-19 17:39:52 +01:00
from tmtccmd.core.globals_manager import update_global
2021-05-17 17:42:04 +02:00
from tmtccmd.utility.logger import get_logger
2021-03-19 17:39:52 +01:00
LOGGER = get_logger()
class CustomGlobalIds(enum.Enum):
from enum import auto
pass
2021-03-19 17:50:09 +01:00
def set_globals_pre_args_parsing(gui: bool = False):
2021-05-17 17:42:04 +02:00
set_default_globals_pre_args_parsing(gui=gui, apid=0x65, com_if_id=CoreComInterfaces.TCPIP_UDP.value)
2021-03-19 18:01:17 +01:00
2021-03-19 17:39:52 +01:00
2021-05-17 17:42:04 +02:00
def add_globals_post_args_parsing(args: argparse.Namespace, json_cfg_path: str):
2021-03-19 17:39:52 +01:00
set_default_globals_post_args_parsing(
2021-04-10 22:59:51 +02:00
args=args, custom_services_list=[CustomServiceList],
2021-05-17 17:42:04 +02:00
custom_modes_list=[CustomModeList], json_cfg_path=json_cfg_path
2021-03-19 17:39:52 +01:00
)