First Version of ACS Controller #329

Merged
muellerr merged 106 commits from acs-ctrl-v1 into develop 2022-12-02 16:21:58 +01:00
4 changed files with 6 additions and 8 deletions
Showing only changes of commit 96bbde7bbc - Show all commits

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: