Files
fsfw/src/fsfw/devicehandlers/ChildHandlerFDIR.cpp
T

12 lines
325 B
C++
Raw Normal View History

2021-07-13 20:22:54 +02:00
#include "fsfw/devicehandlers/ChildHandlerFDIR.h"
2020-10-12 18:18:41 +02:00
ChildHandlerFDIR::ChildHandlerFDIR(object_id_t owner,
object_id_t faultTreeParent, uint32_t recoveryCount) :
2018-07-12 16:29:32 +02:00
DeviceHandlerFailureIsolation(owner, faultTreeParent) {
recoveryCounter.setFailureThreshold(recoveryCount);
}
ChildHandlerFDIR::~ChildHandlerFDIR() {
}