0.3.0
Loading...
Searching...
No Matches
Navio2Sensor.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
17
18#if !__APPLE__ && !defined(WIN32) && !defined(_WIN32) && !defined(__WIN32)
19 #include "Navio/Common/InertialSensor.h"
20#endif
21
23#include <chrono>
24
25namespace NAV
26{
28class Navio2Sensor : public Imu
29{
30 public:
34 ~Navio2Sensor() override;
36 Navio2Sensor(const Navio2Sensor&) = delete;
43
45 [[nodiscard]] static std::string typeStatic();
46
48 [[nodiscard]] std::string type() const override;
49
51 [[nodiscard]] static std::string category();
52
55 void guiConfig() override;
56
58 [[nodiscard]] json save() const override;
59
62 void restore(const json& j) override;
63
65 bool resetNode() override;
66
67 private:
68 constexpr static size_t OUTPUT_PORT_INDEX_IMU_OBS = 0;
69
71 bool initialize() override;
72
74 void deinitialize() override;
75
77 enum ImuType : uint8_t
78 {
82 LSM
83 };
84
85#if !__APPLE__ && !defined(WIN32) && !defined(_WIN32) && !defined(__WIN32)
87 std::unique_ptr<InertialSensor> _sensor;
88#endif
89
92
95
99 std::chrono::time_point<std::chrono::steady_clock> _startTime;
100
102 float _ax{};
104 float _ay{};
106 float _az{};
108 float _gx{};
110 float _gy{};
112 float _gz{};
114 float _mx{};
116 float _my{};
118 float _mz{};
119
122 static void readImuThread(void* userData);
123};
124
125} // namespace NAV
Starts a Periodic Timer.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Abstract IMU Class.
Manages a thread which calls a specified function at a specified interval.
Definition CallbackTimer.hpp:22
Abstract IMU Class.
Definition Imu.hpp:24
Navio2Sensor Sensor Class.
Definition Navio2Sensor.hpp:29
CallbackTimer _timer
Timer object to handle async data requests.
Definition Navio2Sensor.hpp:97
static void readImuThread(void *userData)
Function which performs the async data reading.
bool initialize() override
Initialize the node.
float _ay
Accelerometer Y data, which are read into by the sensor.
Definition Navio2Sensor.hpp:104
float _az
Accelerometer Z data, which are read into by the sensor.
Definition Navio2Sensor.hpp:106
static std::string typeStatic()
String representation of the Class Type.
std::string type() const override
String representation of the Class Type.
static std::string category()
String representation of the Class Category.
Navio2Sensor()
Default constructor.
float _ax
Accelerometer X data, which are read into by the sensor.
Definition Navio2Sensor.hpp:102
void guiConfig() override
ImGui config window which is shown on double click.
bool resetNode() override
Resets the node. It is guaranteed that the node is initialized when this is called.
json save() const override
Saves the node into a json object.
ImuType
Enumeration of IMUs on the Navio2.
Definition Navio2Sensor.hpp:78
@ LSM
LSM9DS1.
Definition Navio2Sensor.hpp:82
@ MPU
MPU9250.
Definition Navio2Sensor.hpp:80
float _mx
Magnetometer X data, which are read into by the sensor.
Definition Navio2Sensor.hpp:114
~Navio2Sensor() override
Destructor.
static constexpr size_t OUTPUT_PORT_INDEX_IMU_OBS
Flow (ImuObs)
Definition Navio2Sensor.hpp:68
void restore(const json &j) override
Restores the node from a json object.
float _my
Magnetometer Y data, which are read into by the sensor.
Definition Navio2Sensor.hpp:116
int _outputFrequency
OutputFrequency to calculate rateDivisor field.
Definition Navio2Sensor.hpp:94
Navio2Sensor(Navio2Sensor &&)=delete
Move constructor.
float _gy
Gyroscope Y data, which are read into by the sensor.
Definition Navio2Sensor.hpp:110
float _gz
Gyroscope Z data, which are read into by the sensor.
Definition Navio2Sensor.hpp:112
std::chrono::time_point< std::chrono::steady_clock > _startTime
Start Time to calculate the TimeSinceStartup.
Definition Navio2Sensor.hpp:99
Navio2Sensor & operator=(Navio2Sensor &&)=delete
Move assignment operator.
ImuType _imuType
The Imu type.
Definition Navio2Sensor.hpp:91
Navio2Sensor & operator=(const Navio2Sensor &)=delete
Copy assignment operator.
Navio2Sensor(const Navio2Sensor &)=delete
Copy constructor.
void deinitialize() override
Deinitialize the node.
std::unique_ptr< InertialSensor > _sensor
Sensor object.
Definition Navio2Sensor.hpp:87
float _gx
Gyroscope X data, which are read into by the sensor.
Definition Navio2Sensor.hpp:108
float _mz
Magnetometer Z data, which are read into by the sensor.
Definition Navio2Sensor.hpp:118