source: flair-dev/trunk/include/FlairSensorActuator/Mb800.h@ 48

Last change on this file since 48 was 32, checked in by Sanahuja Guillaume, 8 years ago

m

File size: 1.4 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 Mb800.h
7 * \brief Class for mb800 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 MB800_H
14#define MB800_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 Mb800
29*
30* \brief Class for mb800 gps receiver
31*/
[32]32class Mb800 : public core::Thread, public NmeaGps {
[13]33public:
34 /*!
35 * \brief Constructor
36 *
37 * Construct a Mb800.
38 *
39 * \param parent parent
40 * \param name name
41 * \param serialport serialport
42 * \param NMEAFlags NMEA sentances to enable
43 * \param priority priority of the Thread
44 */
45 Mb800(const core::FrameworkManager *parent, 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 ~Mb800();
[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 void Sync(void);
74 core::SerialPort *serialport;
75};
[4]76} // end namespace sensor
77} // end namespace framewor
78#endif // MB800_H
Note: See TracBrowser for help on using the repository browser.