2023-03-08 18:09:50 +01:00
|
|
|
#ifndef MISSION_SYSTEM_FDIR_STRFDIR_H_
|
|
|
|
#define MISSION_SYSTEM_FDIR_STRFDIR_H_
|
|
|
|
|
|
|
|
#include <fsfw/devicehandlers/DeviceHandlerFailureIsolation.h>
|
|
|
|
|
|
|
|
class StrFdir : public DeviceHandlerFailureIsolation {
|
|
|
|
public:
|
2023-07-13 16:52:33 +02:00
|
|
|
StrFdir(object_id_t strObject, uint32_t missedReplyThreshold);
|
2023-03-08 18:09:50 +01:00
|
|
|
ReturnValue_t eventReceived(EventMessage* event) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MISSION_SYSTEM_FDIR_STRFDIR_H_ */
|