fixing bug in handlers

This commit is contained in:
2022-08-19 14:31:22 +02:00
parent 35effb9e68
commit a93fe8ef8e
3 changed files with 11 additions and 14 deletions

View File

@ -225,9 +225,6 @@ class PdecHandler : public SystemObject,
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
*/
@ -369,6 +366,9 @@ class PdecHandler : public SystemObject,
ActionHelper actionHelper;
PdecPrintClcwAction pdecPrintClcwAction = PdecPrintClcwAction(this);
PdecPrintMonAction pdecPrintMonAction = PdecPrintMonAction(this);
StorageManagerIF* tcStore = nullptr;
MessageQueueIF* commandQueue = nullptr;