Skip to content
Snippets Groups Projects
Commit b3e6db9e authored by Grigoris Pavlakis's avatar Grigoris Pavlakis
Browse files

Prepare for replacement of if statements checking message type with assertions...

Prepare for replacement of if statements checking message type with assertions and proper notification messages provided by ErrorHandler
parent 11acc36c
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#define ECSS_SERVICES_PARAMETERSERVICE_HPP #define ECSS_SERVICES_PARAMETERSERVICE_HPP
#include "Service.hpp" #include "Service.hpp"
#include "ErrorHandler.hpp"
#include "etl/map.h" #include "etl/map.h"
#define CONFIGLENGTH 5 #define CONFIGLENGTH 5
......
...@@ -55,8 +55,7 @@ void ParameterService::reportParameterIds(Message paramIds) { ...@@ -55,8 +55,7 @@ void ParameterService::reportParameterIds(Message paramIds) {
} }
else { else {
// generate failure of execution notification for ST[06] continue; // generate failure of execution notification (todo) for ST[06] & ignore
continue; // ignore the invalid ID
} }
} }
} }
...@@ -77,8 +76,7 @@ void ParameterService::setParameterIds(Message newParamValues) { ...@@ -77,8 +76,7 @@ void ParameterService::setParameterIds(Message newParamValues) {
} }
else { else {
// generate failure of execution notification for ST[06] continue; // generate failure of execution notification (todo) for ST[06] & ignore
continue; // ignore the invalid ID
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment