fixing bug in handlers
This commit is contained in:
parent
35effb9e68
commit
a93fe8ef8e
@ -225,9 +225,6 @@ class PdecHandler : public SystemObject,
|
|||||||
|
|
||||||
enum class State : uint8_t { INIT, RUNNING, WAIT_FOR_RECOVERY };
|
enum class State : uint8_t { INIT, RUNNING, WAIT_FOR_RECOVERY };
|
||||||
|
|
||||||
PdecPrintClcwAction pdecPrintClcwAction = PdecPrintClcwAction(this);
|
|
||||||
PdecPrintMonAction pdecPrintMonAction = PdecPrintMonAction(this);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Reads and handles messages stored in the commandQueue
|
* @brief Reads and handles messages stored in the commandQueue
|
||||||
*/
|
*/
|
||||||
@ -369,6 +366,9 @@ class PdecHandler : public SystemObject,
|
|||||||
|
|
||||||
ActionHelper actionHelper;
|
ActionHelper actionHelper;
|
||||||
|
|
||||||
|
PdecPrintClcwAction pdecPrintClcwAction = PdecPrintClcwAction(this);
|
||||||
|
PdecPrintMonAction pdecPrintMonAction = PdecPrintMonAction(this);
|
||||||
|
|
||||||
StorageManagerIF* tcStore = nullptr;
|
StorageManagerIF* tcStore = nullptr;
|
||||||
|
|
||||||
MessageQueueIF* commandQueue = nullptr;
|
MessageQueueIF* commandQueue = nullptr;
|
||||||
|
@ -17,8 +17,8 @@
|
|||||||
#include <array>
|
#include <array>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "devices/heaterSwitcherList.h"
|
|
||||||
#include "devicedefinitions/HeaterDefinitions.h"
|
#include "devicedefinitions/HeaterDefinitions.h"
|
||||||
|
#include "devices/heaterSwitcherList.h"
|
||||||
|
|
||||||
class PowerSwitchIF;
|
class PowerSwitchIF;
|
||||||
class HealthTableIF;
|
class HealthTableIF;
|
||||||
@ -68,7 +68,7 @@ class HeaterHandler : public ExecutableObjectIF,
|
|||||||
MessageQueueId_t getCommandQueue() const override;
|
MessageQueueId_t getCommandQueue() const override;
|
||||||
ActionHelper* getActionHelper() override;
|
ActionHelper* getActionHelper() override;
|
||||||
ReturnValue_t executeAction(Action* action) override;
|
ReturnValue_t executeAction(Action* action) override;
|
||||||
ReturnValue_t handleAction(SetHeaterAction *heaterAction);
|
ReturnValue_t handleAction(SetHeaterAction* heaterAction);
|
||||||
|
|
||||||
ReturnValue_t initialize() override;
|
ReturnValue_t initialize() override;
|
||||||
|
|
||||||
@ -88,7 +88,6 @@ class HeaterHandler : public ExecutableObjectIF,
|
|||||||
|
|
||||||
enum SwitchState : bool { ON = true, OFF = false };
|
enum SwitchState : bool { ON = true, OFF = false };
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Struct holding information about a heater command to execute.
|
* @brief Struct holding information about a heater command to execute.
|
||||||
*
|
*
|
||||||
@ -136,13 +135,11 @@ class HeaterHandler : public ExecutableObjectIF,
|
|||||||
/** Switch number of the heater power supply switch */
|
/** Switch number of the heater power supply switch */
|
||||||
power::Switch_t mainLineSwitch;
|
power::Switch_t mainLineSwitch;
|
||||||
|
|
||||||
SetHeaterAction setHeaterAction = SetHeaterAction(this);
|
|
||||||
|
|
||||||
ActionHelper actionHelper;
|
ActionHelper actionHelper;
|
||||||
|
|
||||||
StorageManagerIF* ipcStore = nullptr;
|
SetHeaterAction setHeaterAction = SetHeaterAction(this);
|
||||||
|
|
||||||
SetHeaterAction heaterAction = SetHeaterAction(this);
|
StorageManagerIF* ipcStore = nullptr;
|
||||||
|
|
||||||
void readCommandQueue();
|
void readCommandQueue();
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#ifndef MISSION_DEVICES_SOLARARRAYDEPLOYMENT_H_
|
#ifndef MISSION_DEVICES_SOLARARRAYDEPLOYMENT_H_
|
||||||
#define MISSION_DEVICES_SOLARARRAYDEPLOYMENT_H_
|
#define MISSION_DEVICES_SOLARARRAYDEPLOYMENT_H_
|
||||||
|
|
||||||
#include "devicedefinitions/SolarArrayDeploymentDefinitions.h"
|
|
||||||
#include <devices/powerSwitcherList.h>
|
#include <devices/powerSwitcherList.h>
|
||||||
#include <fsfw/action/HasActionsIF.h>
|
#include <fsfw/action/HasActionsIF.h>
|
||||||
#include <fsfw/devicehandlers/CookieIF.h>
|
#include <fsfw/devicehandlers/CookieIF.h>
|
||||||
@ -15,6 +14,8 @@
|
|||||||
|
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
|
#include "devicedefinitions/SolarArrayDeploymentDefinitions.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief This class is used to control the solar array deployment.
|
* @brief This class is used to control the solar array deployment.
|
||||||
*
|
*
|
||||||
@ -50,7 +51,7 @@ class SolarArrayDeploymentHandler : public ExecutableObjectIF,
|
|||||||
virtual ReturnValue_t performOperation(uint8_t operationCode = 0) override;
|
virtual ReturnValue_t performOperation(uint8_t operationCode = 0) override;
|
||||||
|
|
||||||
virtual MessageQueueId_t getCommandQueue() const override;
|
virtual MessageQueueId_t getCommandQueue() const override;
|
||||||
virtual ActionHelper *getActionHelper() override;
|
virtual ActionHelper* getActionHelper() override;
|
||||||
virtual ReturnValue_t executeAction(Action* action) override;
|
virtual ReturnValue_t executeAction(Action* action) override;
|
||||||
ReturnValue_t handleAction(SolarArrayDeploymentAction* action);
|
ReturnValue_t handleAction(SolarArrayDeploymentAction* action);
|
||||||
virtual ReturnValue_t initialize() override;
|
virtual ReturnValue_t initialize() override;
|
||||||
@ -127,11 +128,10 @@ class SolarArrayDeploymentHandler : public ExecutableObjectIF,
|
|||||||
*/
|
*/
|
||||||
PowerSwitchIF* mainLineSwitcher = nullptr;
|
PowerSwitchIF* mainLineSwitcher = nullptr;
|
||||||
|
|
||||||
|
ActionHelper actionHelper;
|
||||||
|
|
||||||
SolarArrayDeploymentAction deploymentAction = SolarArrayDeploymentAction(this);
|
SolarArrayDeploymentAction deploymentAction = SolarArrayDeploymentAction(this);
|
||||||
|
|
||||||
ActionHelper actionHelper;
|
|
||||||
|
|
||||||
void readCommandQueue();
|
void readCommandQueue();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user