[4] | 1 | // %flair:license{
|
---|
[13] | 2 | // This file is part of the Flair framework distributed under the
|
---|
| 3 | // CECILL-C License, Version 1.0.
|
---|
[4] | 4 | // %flair:license}
|
---|
| 5 | /*!
|
---|
| 6 | * \file SimuGps.h
|
---|
| 7 | * \brief Class for a simulation GPS
|
---|
| 8 | * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
| 9 | * \date 2013/08/23
|
---|
| 10 | * \version 4.0
|
---|
| 11 | */
|
---|
| 12 |
|
---|
| 13 | #ifndef SIMUGPS_H
|
---|
| 14 | #define SIMUGPS_H
|
---|
| 15 |
|
---|
| 16 | #include <Thread.h>
|
---|
[32] | 17 | #include <NmeaGps.h>
|
---|
[4] | 18 |
|
---|
[13] | 19 | namespace flair {
|
---|
[32] | 20 | namespace core {
|
---|
| 21 | class FrameworkManager;
|
---|
| 22 | class SharedMem;
|
---|
| 23 | }
|
---|
| 24 | namespace gui {
|
---|
| 25 | class SpinBox;
|
---|
| 26 | class DoubleSpinBox;
|
---|
| 27 | }
|
---|
[4] | 28 | }
|
---|
| 29 |
|
---|
[13] | 30 | namespace flair {
|
---|
| 31 | namespace sensor {
|
---|
| 32 | /*! \class SimuGps
|
---|
| 33 | *
|
---|
| 34 | * \brief Class for a simulation GPS
|
---|
| 35 | */
|
---|
[32] | 36 | class SimuGps : public core::Thread, public NmeaGps {
|
---|
[13] | 37 | public:
|
---|
| 38 | /*!
|
---|
| 39 | * \brief Constructor
|
---|
| 40 | *
|
---|
[32] | 41 | * Construct a simulation GPS. Control part.
|
---|
[13] | 42 | *
|
---|
| 43 | * \param parent parent
|
---|
| 44 | * \param name name
|
---|
| 45 | * \param NMEAFlags NMEA sentances to enable
|
---|
[32] | 46 | * \param deviceId device id
|
---|
[13] | 47 | * \param priority priority of the Thread
|
---|
| 48 | */
|
---|
| 49 | SimuGps(const core::FrameworkManager *parent, std::string name,
|
---|
[32] | 50 | NmeaGps::NMEAFlags_t NMEAFlags, uint32_t deviceId,uint8_t priority);
|
---|
[4] | 51 |
|
---|
[13] | 52 | /*!
|
---|
[32] | 53 | * \brief Constructor
|
---|
| 54 | *
|
---|
| 55 | * Construct a simulation GPS. Simulation part.\n
|
---|
| 56 | * The Thread of this class should not be run.
|
---|
| 57 | *
|
---|
| 58 | * \param parent parent
|
---|
| 59 | * \param name name
|
---|
| 60 | * \param deviceId device id
|
---|
| 61 | */
|
---|
| 62 | SimuGps(const core::IODevice *parent, std::string name, uint32_t deviceId);
|
---|
| 63 |
|
---|
| 64 | /*!
|
---|
[13] | 65 | * \brief Destructor
|
---|
| 66 | *
|
---|
| 67 | */
|
---|
| 68 | ~SimuGps();
|
---|
[4] | 69 |
|
---|
[13] | 70 | private:
|
---|
| 71 | /*!
|
---|
| 72 | * \brief Update using provided datas
|
---|
| 73 | *
|
---|
| 74 | * Reimplemented from IODevice.
|
---|
| 75 | *
|
---|
| 76 | * \param data data from the parent to process
|
---|
| 77 | */
|
---|
[32] | 78 | void UpdateFrom(const core::io_data *data);
|
---|
[4] | 79 |
|
---|
[13] | 80 | /*!
|
---|
| 81 | * \brief Run function
|
---|
| 82 | *
|
---|
| 83 | * Reimplemented from Thread.
|
---|
| 84 | *
|
---|
| 85 | */
|
---|
| 86 | void Run(void);
|
---|
[32] | 87 |
|
---|
| 88 | typedef struct {
|
---|
[34] | 89 | float e;
|
---|
| 90 | float n;
|
---|
| 91 | float u;
|
---|
| 92 | float ve;
|
---|
| 93 | float vn;
|
---|
[32] | 94 | } gps_states_t;
|
---|
| 95 |
|
---|
| 96 | core::SharedMem *shmem;
|
---|
| 97 | gui::SpinBox *dataRate,*fixQuality,*numberOfSatellites;
|
---|
| 98 | gui::DoubleSpinBox *latitudeRef,*longitudeRef,*altitudeRef;
|
---|
[13] | 99 | };
|
---|
[4] | 100 | } // end namespace sensor
|
---|
| 101 | } // end namespace framewor
|
---|
| 102 | #endif // SIMUGPS_H
|
---|