Skip to content
Snippets Groups Projects
Commit c012d13d 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 2d3ac94e
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
#define ECSS_SERVICES_PARAMETERSERVICE_HPP
#include "Service.hpp"
#include "ErrorHandler.hpp"
#include "etl/map.h"
#define CONFIGLENGTH 5
......
......@@ -55,8 +55,7 @@ void ParameterService::reportParameterIds(Message paramIds) {
}
else {
// generate failure of execution notification for ST[06]
continue; // ignore the invalid ID
continue; // generate failure of execution notification (todo) for ST[06] & ignore
}
}
}
......@@ -77,8 +76,7 @@ void ParameterService::setParameterIds(Message newParamValues) {
}
else {
// generate failure of execution notification for ST[06]
continue; // ignore the invalid ID
continue; // generate failure of execution notification (todo) for ST[06] & ignore
}
}
}
......
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