0.3.0
Loading...
Searching...
No Matches
KvhObs.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 "ImuObs.hpp"
17#include "uart/protocol/packet.hpp"
18#include <bitset>
19
20namespace NAV
21{
23class KvhObs final : public ImuObs
24{
25 public:
29 KvhObs(const ImuPos& imuPos, uart::protocol::Packet& packet)
30 : ImuObs(imuPos), raw(packet) {}
31
34 explicit KvhObs(const ImuPos& imuPos)
35 : ImuObs(imuPos) {}
36
39 [[nodiscard]] static std::string type()
40 {
41 return "KvhObs";
42 }
43
46 [[nodiscard]] std::string getType() const override { return type(); }
47
50 [[nodiscard]] static std::vector<std::string> parentTypes()
51 {
52 return { ImuObs::type() };
53 }
54
56 [[nodiscard]] static std::vector<std::string> GetStaticDataDescriptors()
57 {
59 desc.emplace_back("Status [bits]");
60 desc.emplace_back("Sequence Number [-]");
61 return desc;
62 }
63
65 [[nodiscard]] static constexpr size_t GetStaticDescriptorCount() { return ImuObs::GetStaticDescriptorCount() + 2; }
66
68 [[nodiscard]] std::vector<std::string> staticDataDescriptors() const override { return GetStaticDataDescriptors(); }
69
71 [[nodiscard]] size_t staticDescriptorCount() const override { return GetStaticDescriptorCount(); }
72
76 [[nodiscard]] std::optional<double> getValueAt(size_t idx) const override
77 {
79 if (idx < ImuObs::GetStaticDescriptorCount()) { return ImuObs::getValueAt(idx); }
80 switch (idx)
81 {
82 case ImuObs::GetStaticDescriptorCount() + 0: // Status [bits]
83 return static_cast<double>(status.to_ulong());
84 case ImuObs::GetStaticDescriptorCount() + 1: // Sequence Number [-]
85 if (sequenceNumber < 128) { return sequenceNumber; }
86 break;
87 default:
88 return std::nullopt;
89 }
90 return std::nullopt;
91 }
92
94 uart::protocol::Packet raw;
95
107 std::bitset<8> status;
108
110 uint8_t sequenceNumber = UINT8_MAX;
111};
112
113} // namespace NAV
#define INS_ASSERT(_EXPR)
Assert function wrapper.
Definition Assert.h:19
Parent Class for all IMU Observations.
IMU Observation storage class.
Definition ImuObs.hpp:25
static std::string type()
Returns the type of the data class.
Definition ImuObs.hpp:34
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition ImuObs.hpp:51
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition ImuObs.hpp:69
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition ImuObs.hpp:80
const ImuPos & imuPos
Position and rotation information for conversion from platform to body frame.
Definition ImuObs.hpp:184
IMU Position.
Definition ImuPos.hpp:26
Kvh Observation storage Class.
Definition KvhObs.hpp:24
uart::protocol::Packet raw
Complete message raw binary data including header and checksum.
Definition KvhObs.hpp:94
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition KvhObs.hpp:50
static std::string type()
Returns the type of the data class.
Definition KvhObs.hpp:39
std::string getType() const override
Returns the type of the data class.
Definition KvhObs.hpp:46
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition KvhObs.hpp:65
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition KvhObs.hpp:56
uint8_t sequenceNumber
Increments for each message and resets to 0 after 127.
Definition KvhObs.hpp:110
KvhObs(const ImuPos &imuPos, uart::protocol::Packet &packet)
Constructor.
Definition KvhObs.hpp:29
std::bitset< 8 > status
Status Byte.
Definition KvhObs.hpp:107
std::vector< std::string > staticDataDescriptors() const override
Returns a vector of data descriptors.
Definition KvhObs.hpp:68
size_t staticDescriptorCount() const override
Get the amount of descriptors.
Definition KvhObs.hpp:71
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition KvhObs.hpp:76
KvhObs(const ImuPos &imuPos)
Constructor.
Definition KvhObs.hpp:34