eive-tmtc/eive_tmtc/cfdp/fault_handler.py
Robin Mueller 88161ed125
All checks were successful
EIVE/-/pipeline/head This commit looks good
more cleaning up, new cfdp module
2023-08-17 11:33:42 +02:00

16 lines
380 B
Python

from tmtccmd.cfdp.mib import DefaultFaultHandlerBase
class EiveCfdpFaultHandler(DefaultFaultHandlerBase):
def notice_of_suspension_cb(self, cond: ConditionCode):
pass
def notice_of_cancellation_cb(self, cond: ConditionCode):
pass
def abandoned_cb(self, cond: ConditionCode):
pass
def ignore_cb(self, cond: ConditionCode):
pass