New SCEX commands #103

Merged
muellerr merged 21 commits from irini into main 2022-07-13 15:34:00 +02:00
115 changed files with 3995 additions and 2892 deletions
Showing only changes of commit 7012a6c41f - Show all commits

View File

@ -50,3 +50,4 @@ class CustomServiceList(enum.Enum):
RTD = "rtd"
TVTTESTPROCEDURE = "tvtestproc"
CONTROLLERS = "controllers"
SCEX = "scex"

0
pus_tc/devs/scex.py Normal file
View File

View File

@ -242,8 +242,10 @@ def pack_service_queue_user(
tc_queue=service_queue, object_id=RW_ASSEMBLY, op_code=op_code
)
if service == CustomServiceList.CONTROLLERS.value:
return pack_controller_commands(tc_queue=service_queue, op_code=op_code)
LOGGER.warning(f"Invalid Service {service}")
return pack_cmd_ctrl_to_prompted_mode(tc_queue=service_queue)
if service == CustomServiceList.SCEX.value:
pass
LOGGER.warning("Invalid Service !")
def create_total_tc_queue_user() -> TcQueueT:

Submodule tmtccmd updated: 4de1bb09c9...8f69fa22c7