update for tmtc and other submodules

This commit is contained in:
Robin Müller 2022-07-27 14:41:07 +02:00
parent beeb699c17
commit 43e611950b
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
8 changed files with 18 additions and 11 deletions

View File

@ -0,0 +1,7 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="example" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="fsfw-example-hosted" TARGET_NAME="fsfw-example-hosted" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="fsfw-example-hosted" RUN_TARGET_NAME="fsfw-example-hosted">
<method v="2">
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
</method>
</configuration>
</component>

@ -1 +1 @@
Subproject commit 43060b3be7114813947d82e6eca55d069181988d
Subproject commit c483202852e3c0300164511de26b4e653cfba997

2
fsfw

@ -1 +1 @@
Subproject commit 064b195c752f2f6e7c0cb4660bb294cf8a8e6db1
Subproject commit 740644f2c8398227734fd4a4110b3d8ae09f3351

@ -1 +1 @@
Subproject commit 1f3e04bde45b73c2cfeb79316147de8b897b0878
Subproject commit 4a908412822796b133254f95853f3604d7024a3f

View File

@ -12,10 +12,11 @@ class FsfwHookBase(CommonFsfwHookBase):
return common_fsfw_service_op_code_dict()
def assign_communication_interface(self, com_if_key: str) -> Optional[ComInterface]:
from tmtccmd.config.com_if import create_communication_interface_default
return create_communication_interface_default(
from tmtccmd.config.com_if import create_com_interface_default, \
create_com_interface_cfg_default
cfg = create_com_interface_cfg_default(
com_if_key=com_if_key,
json_cfg_path=self.json_cfg_path,
space_packet_ids=TM_SP_IDS,
space_packet_ids=TM_SP_IDS
)
return create_com_interface_default(cfg)

@ -1 +1 @@
Subproject commit 5317f4c384321b5b5d8832f51c530fa91d3b2ae5
Subproject commit 8d417d7d8887982fcd9c7dc53c69d13a25e6bda0

@ -1 +1 @@
Subproject commit 4d34585d45ede975f14e16c730390b6bd8343e8f
Subproject commit 77295364b3af77ebab576c703035387546aca736

View File

@ -16,8 +16,7 @@ from tmtccmd.logging.pus import (
TimedLogWhen,
)
from tmtccmd.pus import VerificationWrapper
from tmtccmd.utility.tmtc_printer import FsfwTmTcPrinter
from tmtccmd.util.tmtc_printer import FsfwTmTcPrinter
LOGGER = get_console_logger()