fsfw/src/fsfw/devicehandlers/ChildHandlerFDIR.cpp

10 lines
353 B
C++
Raw Normal View History

2021-07-13 20:22:54 +02:00
#include "fsfw/devicehandlers/ChildHandlerFDIR.h"
2022-02-02 10:29:30 +01:00
ChildHandlerFDIR::ChildHandlerFDIR(object_id_t owner, object_id_t faultTreeParent,
uint32_t recoveryCount)
: DeviceHandlerFailureIsolation(owner, faultTreeParent) {
recoveryCounter.setFailureThreshold(recoveryCount);
}
2022-02-02 10:29:30 +01:00
ChildHandlerFDIR::~ChildHandlerFDIR() {}