0.3.0
Loading...
Searching...
No Matches
UartPacketConverter.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
14
15#pragma once
16
17#include <cstdint>
19
20namespace NAV
21{
24{
25 public:
38
40 [[nodiscard]] static std::string typeStatic();
41
43 [[nodiscard]] std::string type() const override;
44
46 [[nodiscard]] static std::string category();
47
50 void guiConfig() override;
51
53 [[nodiscard]] json save() const override;
54
57 void restore(const json& j) override;
58
59 private:
60 constexpr static size_t OUTPUT_PORT_INDEX_CONVERTED = 0;
61 constexpr static size_t INPUT_PORT_INDEX_UART_PACKET = 0;
62 constexpr static size_t INPUT_PORT_INDEX_SYNC_IN = 1;
63
71
74
76 bool _syncInPin = false;
77
79 int64_t _lastSyncInCnt = 0;
80
82 int64_t _lastSyncOutCnt = 0;
83
85 int64_t _syncOutCntCorr = 0;
86
88 int64_t _syncInCntCorr = 0;
89
91 bool initialize() override;
92
96 void receiveObs(InputPin::NodeDataQueue& queue, size_t pinIdx);
97};
98
99} // namespace NAV
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Node Class.
Abstract parent class for all nodes.
Definition Node.hpp:86
Decrypts Uart packets.
Definition UartPacketConverter.hpp:24
json save() const override
Saves the node into a json object.
UartPacketConverter & operator=(UartPacketConverter &&)=delete
Move assignment operator.
bool _syncInPin
Show the SyncIn Pin.
Definition UartPacketConverter.hpp:76
static std::string typeStatic()
String representation of the Class Type.
void restore(const json &j) override
Restores the node from a json object.
UartPacketConverter()
Default constructor.
OutputType _outputType
The selected output type in the GUI.
Definition UartPacketConverter.hpp:73
int64_t _syncOutCntCorr
Corrected SyncOut counter in case of a reset (initiator)
Definition UartPacketConverter.hpp:85
static constexpr size_t INPUT_PORT_INDEX_UART_PACKET
Flow (UartPacket)
Definition UartPacketConverter.hpp:61
UartPacketConverter(const UartPacketConverter &)=delete
Copy constructor.
UartPacketConverter(UartPacketConverter &&)=delete
Move constructor.
bool initialize() override
Initialize the node.
static constexpr size_t OUTPUT_PORT_INDEX_CONVERTED
Flow.
Definition UartPacketConverter.hpp:60
int64_t _lastSyncOutCnt
Last received syncOutCnt.
Definition UartPacketConverter.hpp:82
UartPacketConverter & operator=(const UartPacketConverter &)=delete
Copy assignment operator.
void guiConfig() override
ImGui config window which is shown on double click.
~UartPacketConverter() override
Destructor.
OutputType
Enum specifying the type of the output message.
Definition UartPacketConverter.hpp:66
@ OutputType_UbloxObs
Extract UbloxObs data.
Definition UartPacketConverter.hpp:67
@ OutputType_EmlidObs
Extract EmlidObs data.
Definition UartPacketConverter.hpp:68
@ OutputType_WiFiObs
Extract WiFiObs data.
Definition UartPacketConverter.hpp:69
static constexpr size_t INPUT_PORT_INDEX_SYNC_IN
Flow (SyncIn)
Definition UartPacketConverter.hpp:62
static std::string category()
String representation of the Class Category.
std::string type() const override
String representation of the Class Type.
void receiveObs(InputPin::NodeDataQueue &queue, size_t pinIdx)
Converts the UartPacket to the selected message type.
int64_t _lastSyncInCnt
Last received syncInCnt.
Definition UartPacketConverter.hpp:79
int64_t _syncInCntCorr
Corrected SyncIn counter in case of a reset (target)
Definition UartPacketConverter.hpp:88