eive-obsw/mission/devices/GPSHyperionHandler.h

62 lines
2.4 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
2022-01-18 11:41:19 +01:00
#include "devicedefinitions/GPSDefinitions.h"
2021-08-11 18:52:33 +02:00
#include "fsfw/FSFW.h"
2022-01-18 11:41:19 +01:00
#include "fsfw/devicehandlers/DeviceHandlerBase.h"
2022-01-26 17:59:31 +01:00
#include "lwgps/lwgps.h"
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
*/
2022-01-26 17:59:31 +01:00
class GPSHyperionHandler : public DeviceHandlerBase {
2022-01-18 11:41:19 +01:00
public:
2022-01-26 17:59:31 +01:00
GPSHyperionHandler(object_id_t objectId, object_id_t deviceCommunication, CookieIF *comCookie,
bool debugHyperionGps = false);
2022-01-18 11:41:19 +01:00
virtual ~GPSHyperionHandler();
2022-01-26 17:59:31 +01:00
using gpioResetFunction_t = ReturnValue_t (*)(void *args);
void setResetPinTriggerFunction(gpioResetFunction_t resetCallback, void *args);
ReturnValue_t acceptExternalDeviceCommands() override;
2022-01-18 11:41:19 +01:00
ReturnValue_t initialize() override;
protected:
gpioResetFunction_t resetCallback = nullptr;
2022-01-26 17:59:31 +01:00
void *resetCallbackArgs = nullptr;
enum class InternalStates { NONE, WAIT_FIRST_MESSAGE, IDLE };
InternalStates internalState = InternalStates::NONE;
bool commandExecuted = false;
/* DeviceHandlerBase overrides */
ReturnValue_t buildTransitionDeviceCommand(DeviceCommandId_t *id) override;
void doStartUp() override;
void doShutDown() override;
ReturnValue_t buildNormalDeviceCommand(DeviceCommandId_t *id) override;
ReturnValue_t buildCommandFromCommand(DeviceCommandId_t deviceCommand, const uint8_t *commandData,
size_t commandDataLen) override;
ReturnValue_t scanForReply(const uint8_t *start, size_t len, DeviceCommandId_t *foundId,
size_t *foundLen) override;
ReturnValue_t interpretDeviceReply(DeviceCommandId_t id, const uint8_t *packet) override;
void fillCommandAndReplyMap() override;
void modeChanged() override;
uint32_t getTransitionDelayMs(Mode_t from, Mode_t to) override;
ReturnValue_t initializeLocalDataPool(localpool::DataPool &localDataPoolMap,
LocalDataPoolManager &poolManager) override;
virtual void debugInterface(uint8_t positionTracker = 0, object_id_t objectId = 0,
uint32_t parameter = 0) override;
2022-01-18 11:41:19 +01:00
private:
2022-01-26 17:59:31 +01:00
lwgps_t gpsData = {};
2022-01-18 11:41:19 +01:00
GpsPrimaryDataset gpsSet;
bool debugHyperionGps = false;
2020-12-22 00:32:11 +01:00
};
2021-06-24 11:42:40 +02:00
#endif /* MISSION_DEVICES_GPSHYPERIONHANDLER_H_ */