43 [[nodiscard]] std::string
type()
const override;
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
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