start ccsds wrapper

This commit is contained in:
Robin Müller 2022-09-09 10:53:12 +02:00
parent e296554827
commit 4b511d8d30
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
1 changed files with 10 additions and 0 deletions

View File

@ -47,6 +47,16 @@ from tmtccmd.cfdp.handler import DestHandler, SourceHandler
LOGGER = get_console_logger()
class CfdpCcsdsWrapper:
def __init__(
self,
cfg: LocalEntityCfg,
seq_cnt_provider: ProvidesSeqCount,
remote_cfg: Sequence[RemoteEntityCfg],
):
self.handler = CfdpHandler(cfg, seq_cnt_provider, remote_cfg)
class CfdpHandler(CfdpUserBase):
def __init__(
self,