2020-12-22 00:32:11 +01:00
|
|
|
#ifndef MISSION_DEVICES_GPSHANDLER_H_
|
|
|
|
#define MISSION_DEVICES_GPSHANDLER_H_
|
|
|
|
|
|
|
|
#include <fsfw/devicehandlers/DeviceHandlerBase.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
|
|
|
*/
|
2020-12-22 00:32:11 +01:00
|
|
|
class GPSHandler: public DeviceHandlerBase {
|
|
|
|
public:
|
|
|
|
GPSHandler(object_id_t objectId, object_id_t deviceCommunication,
|
|
|
|
CookieIF* comCookie);
|
|
|
|
virtual ~GPSHandler();
|
|
|
|
|
|
|
|
protected:
|
2021-06-15 16:44:31 +02:00
|
|
|
enum class InternalStates {
|
|
|
|
NONE,
|
|
|
|
WAIT_FIRST_MESSAGE,
|
|
|
|
IDLE
|
|
|
|
};
|
|
|
|
InternalStates internalState = InternalStates::NONE;
|
|
|
|
bool commandExecuted = false;
|
2020-12-22 00:32:11 +01:00
|
|
|
|
|
|
|
/* 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;
|
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;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MISSION_DEVICES_GPSHANDLER_H_ */
|