source: flair-dev/trunk/include/FlairSensorActuator/Novatel.h@ 85

Last change on this file since 85 was 50, checked in by Sanahuja Guillaume, 7 years ago

doc

File size: 1.5 KB
RevLine 
[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 Novatel.h
7 * \brief Class for Novatel gps receiver
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2013/08/23
10 * \version 4.0
11 */
12
13#ifndef Novatel_H
14#define Novatel_H
15
16#include <Thread.h>
[32]17#include <NmeaGps.h>
[4]18
[13]19namespace flair {
20namespace core {
21class FrameworkManager;
22class SerialPort;
[4]23}
[13]24}
[4]25
[13]26namespace flair {
27namespace sensor {
28/*! \class Novatel
29*
30* \brief Class for Novatel gps receiver
31*/
[32]32class Novatel : public core::Thread, public NmeaGps {
[13]33public:
34 /*!
35 * \brief Constructor
36 *
37 * Construct a Novatel.
[50]38 * It will be child of the FrameworkManager.
[13]39 *
40 * \param name name
41 * \param serialport serialport
42 * \param NMEAFlags NMEA sentances to enable
43 * \param priority priority of the Thread
44 */
[50]45 Novatel(std::string name,
[32]46 core::SerialPort *serialport, NmeaGps::NMEAFlags_t NMEAFlags,
[13]47 uint8_t priority);
[4]48
[13]49 /*!
50 * \brief Destructor
51 *
52 */
53 ~Novatel();
[4]54
[13]55private:
56 /*!
57 * \brief Update using provided datas
58 *
59 * Reimplemented from IODevice.
60 *
61 * \param data data from the parent to process
62 */
63 void UpdateFrom(const core::io_data *data){};
[4]64
[13]65 /*!
66 * \brief Run function
67 *
68 * Reimplemented from Thread.
69 *
70 */
71 void Run(void);
[4]72
[13]73 core::SerialPort *serialport;
74 void Sync(void);
75};
[4]76} // end namespace sensor
[50]77} // end namespace flair
[4]78#endif // Novatel_H
Note: See TracBrowser for help on using the repository browser.