source: flair-dev/tags/0.0.1/include/FlairSensorActuator/Mb800.h@ 83

Last change on this file since 83 was 13, checked in by Bayard Gildas, 8 years ago

formatting script + include reformatted

File size: 1.4 KB
Line 
1// %flair:license{
2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
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>
17#include <Gps.h>
18
19namespace flair {
20namespace core {
21class FrameworkManager;
22class SerialPort;
23}
24}
25
26namespace flair {
27namespace sensor {
28/*! \class Mb800
29*
30* \brief Class for mb800 gps receiver
31*/
32class Mb800 : public core::Thread, public Gps {
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,
46 core::SerialPort *serialport, Gps::NMEAFlags_t NMEAFlags,
47 uint8_t priority);
48
49 /*!
50 * \brief Destructor
51 *
52 */
53 ~Mb800();
54
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){};
64
65 /*!
66 * \brief Run function
67 *
68 * Reimplemented from Thread.
69 *
70 */
71 void Run(void);
72
73 void Sync(void);
74 core::SerialPort *serialport;
75};
76} // end namespace sensor
77} // end namespace framewor
78#endif // MB800_H
Note: See TracBrowser for help on using the repository browser.