Fix no Sensors for Control FDIR #858
@ -23,6 +23,8 @@ will consitute of a breaking change warranting a new major release:
|
|||||||
- PLOC SUPV latchup report could not be handled previously.
|
- PLOC SUPV latchup report could not be handled previously.
|
||||||
- Bugfix in PLOC SUPV latchup report parsing.
|
- Bugfix in PLOC SUPV latchup report parsing.
|
||||||
- Bugfix in PLOC MPSoC HK set: Set and variables were not set valid.
|
- Bugfix in PLOC MPSoC HK set: Set and variables were not set valid.
|
||||||
|
- The `PTG_CTRL_NO_ATTITUDE_INFORMATION` will now actually trigger a fallback into safe mode
|
||||||
|
and is triggered by the `AcsController` now.
|
||||||
|
|
||||||
# [v7.6.1] 2024-02-05
|
# [v7.6.1] 2024-02-05
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#include "StrFdir.h"
|
#include "StrFdir.h"
|
||||||
|
|
||||||
#include "mission/acs/defs.h"
|
#include <eive/objects.h>
|
||||||
|
#include <fsfw/events/EventManagerIF.h>
|
||||||
|
#include <mission/acs/defs.h>
|
||||||
|
|
||||||
StrFdir::StrFdir(object_id_t strObject)
|
StrFdir::StrFdir(object_id_t strObject)
|
||||||
: DeviceHandlerFailureIsolation(strObject, objects::NO_OBJECT) {}
|
: DeviceHandlerFailureIsolation(strObject, objects::NO_OBJECT) {}
|
||||||
@ -12,3 +14,13 @@ ReturnValue_t StrFdir::eventReceived(EventMessage* event) {
|
|||||||
}
|
}
|
||||||
return DeviceHandlerFailureIsolation::eventReceived(event);
|
return DeviceHandlerFailureIsolation::eventReceived(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ReturnValue_t StrFdir::initialize() {
|
||||||
|
ReturnValue_t result = DeviceHandlerFailureIsolation::initialize();
|
||||||
|
if (result != returnvalue::OK) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
EventManagerIF* manager = ObjectManager::instance()->get<EventManagerIF>(objects::EVENT_MANAGER);
|
||||||
|
return manager->subscribeToEvent(eventQueue->getId(),
|
||||||
|
event::getEventId(acs::PTG_CTRL_NO_ATTITUDE_INFORMATION));
|
||||||
|
}
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
class StrFdir : public DeviceHandlerFailureIsolation {
|
class StrFdir : public DeviceHandlerFailureIsolation {
|
||||||
public:
|
public:
|
||||||
StrFdir(object_id_t strObject);
|
StrFdir(object_id_t strObject);
|
||||||
|
ReturnValue_t initialize() override;
|
||||||
ReturnValue_t eventReceived(EventMessage* event) override;
|
ReturnValue_t eventReceived(EventMessage* event) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user