removed HasReturnValuesIF
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit

This commit is contained in:
Marius Eggert 2022-09-26 10:39:57 +02:00
parent 2ede1ed27c
commit 96bbde7bbc
4 changed files with 6 additions and 8 deletions

View File

@ -10,7 +10,6 @@
#include <fsfw/src/fsfw/globalfunctions/math/MatrixOperations.h>
#include <fsfw/src/fsfw/globalfunctions/math/QuaternionOperations.h>
#include <fsfw/src/fsfw/globalfunctions/math/VectorOperations.h>
#include <fsfw/src/fsfw/returnvalues/HasReturnvaluesIF.h>
#include "MultiplicativeKalmanFilter.h"
#include <acs/util/CholeskyDecomposition.h>
#include <acs/util/MathOperations.h>
@ -300,7 +299,7 @@ ReturnValue_t MultiplicativeKalmanFilter::mekfEst(
else{
sensorsAvail = 8; //no measurements
validMekf = false;
return RETURN_FAILED;
return returnvalue::FAILED;
}
// If we are here, MEKF will perform
@ -1201,5 +1200,5 @@ ReturnValue_t MultiplicativeKalmanFilter::mekfEst(
// Check for new data in measurement -> SensorProcessing ?
return RETURN_OK;
return returnvalue::OK;
}

View File

@ -21,7 +21,7 @@
#include "AcsParameters.h"
class MultiplicativeKalmanFilter : public HasReturnvaluesIF {
class MultiplicativeKalmanFilter{
public:
/* @brief: Constructor
* @param: acsParameters_ Pointer to object which defines the ACS configuration parameters

View File

@ -19,11 +19,10 @@
#include <acs/SensorValues.h>
#include <acs/OutputValues.h>
#include <acs/AcsParameters.h>
#include "acs/config/classIds.h"
#include <fsfw/src/fsfw/returnvalues/HasReturnvaluesIF.h>
#include <acs/config/classIds.h>
#include <time.h>
class PtgCtrl : public HasReturnvaluesIF {
class PtgCtrl{
public:
/* @brief: Constructor

View File

@ -17,7 +17,7 @@
#include <fsfw/src/fsfw/returnvalues/HasReturnvaluesIF.h>
#include <time.h>
class SafeCtrl : public HasReturnvaluesIF {
class SafeCtrl{
public: