skeleton controller now unittested including fsfw. Still dirty WIP
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit

This commit is contained in:
2022-02-10 18:54:09 +01:00
parent f9721eb1ae
commit f1249392cf
6 changed files with 78 additions and 4 deletions

View File

@ -5,11 +5,22 @@
class ThermalController {
class ThermalController : public ExtendedControllerBase {
public:
ThermalController(object_id_t objectId);
ReturnValue_t perform();
protected:
virtual ReturnValue_t handleCommandMessage(CommandMessage* message) override;
virtual void performControlOperation() override;
virtual ReturnValue_t initializeLocalDataPool(localpool::DataPool& localDataPoolMap,
LocalDataPoolManager& poolManager) override;
virtual LocalPoolDataSetBase* getDataSetHandle(sid_t sid) override;
// Mode abstract functions
virtual ReturnValue_t checkModeCommand(Mode_t mode, Submode_t submode,
uint32_t* msToReachTheMode) override;
};
#endif /* MISSION_CONTROLLER_THERMALCONTROLLER_H_ */