0.3.0
Loading...
Searching...
No Matches
WiFiObs.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
16#include "NodeData/NodeData.hpp"
18
19namespace NAV
20{
22class WiFiObs : public NodeData
23{
24 public:
27 [[nodiscard]] static std::string type()
28 {
29 return "WiFiObs";
30 }
31
34 [[nodiscard]] std::string getType() const override { return type(); }
35
38 [[nodiscard]] static std::vector<std::string> parentTypes()
39 {
40 return { NodeData::type() };
41 }
42
44 std::string macAddress;
46 double distance = 0;
48 double distanceStd = 0;
51 {
55 uint64_t timeSyncIn{};
59 uint32_t syncInCnt{};
60 };
63};
64
65} // namespace NAV
Abstract NodeData Class.
Binary Group 5 – Attitude Outputs.
Parent class for all data transmitted over Flow pins.
Definition NodeData.hpp:28
static std::string type()
Returns the type of the data class.
Definition NodeData.hpp:45
Espressif Observation Class.
Definition WiFiObs.hpp:23
double distanceStd
Standard deviation of the distance.
Definition WiFiObs.hpp:48
std::string macAddress
MAC address of the device.
Definition WiFiObs.hpp:44
static std::string type()
Returns the type of the data class.
Definition WiFiObs.hpp:27
double distance
Distance to the device.
Definition WiFiObs.hpp:46
TimeSyncInput timeOutputs
Time of observation.
Definition WiFiObs.hpp:62
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition WiFiObs.hpp:38
std::string getType() const override
Returns the type of the data class.
Definition WiFiObs.hpp:34
Struct for time sync.
Definition WiFiObs.hpp:51
uint64_t timeSyncIn
Time since last SyncIn trigger.
Definition WiFiObs.hpp:55
uint32_t syncInCnt
SyncIn trigger count.
Definition WiFiObs.hpp:59