eive-obsw/mission/devices/GPSHyperionHandler.h

49 lines
1.6 KiB
C
Raw Normal View History

2021-06-24 11:42:40 +02:00
#ifndef MISSION_DEVICES_GPSHYPERIONHANDLER_H_
#define MISSION_DEVICES_GPSHYPERIONHANDLER_H_
2020-12-22 00:32:11 +01:00
2021-08-11 18:52:33 +02:00
#include "fsfw/FSFW.h"
2021-06-24 11:42:40 +02:00
#include "fsfw/devicehandlers/DeviceHandlerBase.h"
#include "fsfw/controller/ExtendedControllerBase.h"
2021-06-24 11:42:40 +02:00
#include "devicedefinitions/GPSDefinitions.h"
2021-06-16 17:19:14 +02:00
#include "lwgps/lwgps.h"
2020-12-22 00:32:11 +01:00
2021-06-15 13:40:58 +02:00
/**
* @brief Device handler for the Hyperion HT-GPS200 device
* @details
2021-06-15 13:58:19 +02:00
* Flight manual:
* https://egit.irs.uni-stuttgart.de/redmine/projects/eive-flight-manual/wiki/Hyperion_HT-GPS200
2021-06-15 13:40:58 +02:00
*/
class GPSHyperionHandler: public ExtendedControllerBase {
2020-12-22 00:32:11 +01:00
public:
2021-09-16 17:24:34 +02:00
2022-01-11 10:55:26 +01:00
GPSHyperionHandler(object_id_t objectId, object_id_t parentId,
bool debugHyperionGps = false);
2021-06-24 11:42:40 +02:00
virtual ~GPSHyperionHandler();
2020-12-22 00:32:11 +01:00
2021-09-16 17:24:34 +02:00
using gpioResetFunction_t = ReturnValue_t (*) (void* args);
2021-09-07 16:14:54 +02:00
void setResetPinTriggerFunction(gpioResetFunction_t resetCallback, void*args);
ReturnValue_t handleCommandMessage(CommandMessage *message) override;
void performControlOperation() override;
LocalPoolDataSetBase* getDataSetHandle(sid_t sid) override;
ReturnValue_t checkModeCommand(Mode_t mode, Submode_t submode,
uint32_t *msToReachTheMode) override;
ReturnValue_t executeAction(ActionId_t actionId,
MessageQueueId_t commandedBy, const uint8_t* data,
size_t size) override;
2021-09-16 17:24:34 +02:00
ReturnValue_t initialize() override;
2020-12-22 00:32:11 +01:00
protected:
2021-09-07 16:14:54 +02:00
gpioResetFunction_t resetCallback = nullptr;
void* resetCallbackArgs = nullptr;
2021-09-07 16:11:02 +02:00
2021-01-14 11:37:32 +01:00
ReturnValue_t initializeLocalDataPool(localpool::DataPool &localDataPoolMap,
2020-12-22 00:32:11 +01:00
LocalDataPoolManager &poolManager) override;
2020-12-22 00:32:11 +01:00
private:
2021-06-24 11:42:40 +02:00
GpsPrimaryDataset gpsSet;
2021-08-11 18:52:33 +02:00
bool debugHyperionGps = false;
2020-12-22 00:32:11 +01:00
};
2021-06-24 11:42:40 +02:00
#endif /* MISSION_DEVICES_GPSHYPERIONHANDLER_H_ */