2022-09-20 14:15:55 +02:00
|
|
|
#ifndef NAVIGATION_H_
|
|
|
|
#define NAVIGATION_H_
|
|
|
|
|
2022-11-03 10:43:27 +01:00
|
|
|
#include "../controllerdefinitions/AcsCtrlDefinitions.h"
|
2022-09-27 11:06:11 +02:00
|
|
|
#include "AcsParameters.h"
|
|
|
|
#include "MultiplicativeKalmanFilter.h"
|
2022-11-03 10:43:27 +01:00
|
|
|
#include "SensorProcessing.h"
|
2022-09-27 11:06:11 +02:00
|
|
|
#include "SensorValues.h"
|
2022-09-20 14:15:55 +02:00
|
|
|
|
2022-11-03 10:43:27 +01:00
|
|
|
class Navigation {
|
|
|
|
public:
|
2023-02-27 16:37:46 +01:00
|
|
|
Navigation();
|
2022-11-03 10:43:27 +01:00
|
|
|
virtual ~Navigation();
|
|
|
|
|
2023-02-21 17:09:49 +01:00
|
|
|
ReturnValue_t useMekf(ACS::SensorValues *sensorValues,
|
|
|
|
acsctrl::GyrDataProcessed *gyrDataProcessed,
|
|
|
|
acsctrl::MgmDataProcessed *mgmDataProcessed,
|
2023-02-27 16:37:46 +01:00
|
|
|
acsctrl::SusDataProcessed *susDataProcessed, acsctrl::MekfData *mekfData,
|
|
|
|
AcsParameters *acsParameters);
|
2023-02-21 17:09:49 +01:00
|
|
|
void resetMekf(acsctrl::MekfData *mekfData);
|
2022-11-03 10:43:27 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
private:
|
|
|
|
MultiplicativeKalmanFilter multiplicativeKalmanFilter;
|
2023-02-23 15:05:10 +01:00
|
|
|
ReturnValue_t mekfStatus = MultiplicativeKalmanFilter::MEKF_UNINITIALIZED;
|
2022-09-20 14:15:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* ACS_NAVIGATION_H_ */
|