added Antistiction, added Nadir Pointing, added performSafe()
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit

This commit is contained in:
Robin Marquardt
2022-11-08 13:48:50 +01:00
parent 75ab11fc35
commit 20936faec6
9 changed files with 213 additions and 57 deletions

View File

@ -9,6 +9,7 @@
#include "acs/Guidance.h"
#include "acs/Navigation.h"
#include "acs/SensorProcessing.h"
#include "acs/control/SafeCtrl.h"
#include "acs/control/Detumble.h"
#include "acs/control/PtgCtrl.h"
#include "controllerdefinitions/AcsCtrlDefinitions.h"
@ -34,7 +35,6 @@ class AcsController : public ExtendedControllerBase {
void performSafe();
void performDetumble();
void performPointingCtrl();
void performPointingCtrlSun();
private:
AcsParameters acsParameters;
@ -43,6 +43,7 @@ class AcsController : public ExtendedControllerBase {
ActuatorCmd actuatorCmd;
Guidance guidance;
SafeCtrl safeCtrl;
Detumble detumble;
PtgCtrl ptgCtrl;