source: flair-src/trunk/lib/FlairFilter/src/SimulatedAhrs.h@ 375

Last change on this file since 375 was 286, checked in by Sanahuja Guillaume, 5 years ago

draw vrpn axis in simulator

File size: 1.3 KB
RevLine 
[10]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[10]4// %flair:license}
[7]5/*!
[286]6 * \file SimulatedAhrs.h
[7]7 * \brief Class for a simulation Ahrs
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2014/02/07
10 * \version 4.0
11 */
12
13#ifndef SIMUAHRS_H
14#define SIMUAHRS_H
15
16#include <Ahrs.h>
17#include <stdint.h>
18
[15]19namespace flair {
20namespace filter {
[286]21/*! \class SimulatedAhrs
[15]22*
23* \brief Class for a simulation Ahrs
24*
[286]25* This class constructs a SimulatedImu as Imu of this Ahrs.
[15]26*/
[286]27class SimulatedAhrs : public filter::Ahrs {
[15]28public:
29 /*!
30 * \brief Constructor
31 *
[137]32 * Construct a simulation Ahrs. It will be child of the FrameworkManager.
[15]33 *
34 * \param name name
[158]35 * \param modelId Model id
36 * \param deviceId Ahrs id of the Model
[286]37 * \param priority priority of the SimulatedImu Thread
[15]38 */
[286]39 SimulatedAhrs(std::string name,
[158]40 uint32_t modelId,uint32_t deviceId, uint8_t priority);
[7]41
[15]42 /*!
43 * \brief Destructor
44 *
45 */
[286]46 ~SimulatedAhrs();
[7]47
[15]48private:
49 /*!
50 * \brief Update using provided datas
51 *
52 * Reimplemented from IODevice.
53 *
54 * \param data data from the parent to process
55 */
56 void UpdateFrom(const core::io_data *data);
57};
[7]58} // end namespace filter
59} // end namespace flair
60#endif // SIMUAHRS_H
Note: See TracBrowser for help on using the repository browser.