0.3.0
Loading...
Searching...
No Matches
EmlidUartSensor.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 <memory>
17
18#include "uart/sensors/sensors.hpp"
19
20namespace NAV::vendor::emlid
21{
24{
25 public:
28 explicit EmlidUartSensor(std::string name);
29
31 EmlidUartSensor() = default;
33 ~EmlidUartSensor() = default;
43 uart::sensors::UartSensor* operator->() { return &_sensor; };
44
48 std::unique_ptr<uart::protocol::Packet> findPacket(uint8_t dataByte);
49
50 static constexpr uint8_t BINARY_SYNC_CHAR_1 = 0x82;
51 static constexpr uint8_t BINARY_SYNC_CHAR_2 = 0x45;
52 static constexpr uint8_t ASCII_START_CHAR = '$';
53
54 private:
56 const std::string _name;
57
67
74 static void packetFinderFunction(const std::vector<uint8_t>& data,
75 const uart::xplat::TimeStamp& timestamp,
76 uart::sensors::UartSensor::ValidPacketFoundHandler dispatchPacket, void* dispatchPacketUserData,
77 void* userData);
78
82 static uart::protocol::Packet::Type packetTypeFunction(const uart::protocol::Packet& packet);
83
87 static bool checksumFunction(const uart::protocol::Packet& packet);
88
91 static bool isErrorFunction(const uart::protocol::Packet& packet);
92
95 static bool isResponseFunction(const uart::protocol::Packet& packet);
96
97 static constexpr uart::Endianness ENDIANNESS = uart::Endianness::ENDIAN_LITTLE;
98 static constexpr size_t PACKET_HEADER_LENGTH = 2;
99 static constexpr uint8_t ASCII_END_CHAR_1 = '\r';
100 static constexpr uint8_t ASCII_END_CHAR_2 = '\n';
101 static constexpr uint8_t ASCII_ESCAPE_CHAR = '\0';
102
105
106 bool _asciiEndChar1Found{ false };
107 bool _binarySyncChar2Found{ false };
108 bool _binaryMsgIdFound{ false };
111
113 uint8_t _binaryMsgId{ 0 };
115 uint16_t _binaryPayloadLength{ 0 };
116
118 std::vector<uint8_t> _buffer;
119
121 size_t _runningDataIndex{ 0 };
124
127};
128
129} // namespace NAV::vendor::emlid
Class to read out Emlid Sensors.
Definition EmlidUartSensor.hpp:24
bool _binaryPayloadLength1Found
Flag if the first byte of the payload length was found.
Definition EmlidUartSensor.hpp:109
bool _binarySyncChar2Found
Flag if the second binary end character was found.
Definition EmlidUartSensor.hpp:107
bool _binaryPayloadLength2Found
Flag if the second byte of the payload length was found.
Definition EmlidUartSensor.hpp:110
bool _binaryMsgIdFound
Flag if the message id was found.
Definition EmlidUartSensor.hpp:108
static void packetFinderFunction(const std::vector< uint8_t > &data, const uart::xplat::TimeStamp &timestamp, uart::sensors::UartSensor::ValidPacketFoundHandler dispatchPacket, void *dispatchPacketUserData, void *userData)
Function which is called to find packets in the provided data buffer.
uart::sensors::UartSensor * operator->()
Arrow operator overload.
Definition EmlidUartSensor.hpp:43
static constexpr size_t PACKET_HEADER_LENGTH
Length of the header of each packet.
Definition EmlidUartSensor.hpp:98
static bool isErrorFunction(const uart::protocol::Packet &packet)
Function which determines, if the packet is an Error Packet.
~EmlidUartSensor()=default
Destructor.
size_t _runningDataIndex
Used for correlating raw data with where the packet was found for the end user.
Definition EmlidUartSensor.hpp:121
bool _currentlyBuildingAsciiPacket
Flag if currently a ascii packet is built.
Definition EmlidUartSensor.hpp:103
EmlidUartSensor(EmlidUartSensor &&)=delete
Move constructor.
EmlidUartSensor & operator=(const EmlidUartSensor &)=delete
Copy assignment operator.
static constexpr uint8_t ASCII_END_CHAR_1
First Ascii End character.
Definition EmlidUartSensor.hpp:99
static bool isResponseFunction(const uart::protocol::Packet &packet)
Function which determines, if the packet is a Response.
std::vector< uint8_t > _buffer
Buffer to collect messages till they are complete.
Definition EmlidUartSensor.hpp:118
void resetTracking()
Resets the current message tracking.
static constexpr uart::Endianness ENDIANNESS
Endianess of the sensor.
Definition EmlidUartSensor.hpp:97
static constexpr uint8_t BINARY_SYNC_CHAR_2
E - Second sync character which begins a new binary message.
Definition EmlidUartSensor.hpp:51
uint16_t _binaryPayloadLength
Payload length of the current packet.
Definition EmlidUartSensor.hpp:115
const std::string _name
Name of the Parent Node.
Definition EmlidUartSensor.hpp:56
static bool checksumFunction(const uart::protocol::Packet &packet)
Function which is called to verify packet integrity.
EmlidUartSensor(const EmlidUartSensor &)=delete
Copy constructor.
EmlidUartSensor()=default
Default constructor.
static constexpr uint8_t ASCII_START_CHAR
Ascii character which begins a new ascii message.
Definition EmlidUartSensor.hpp:52
size_t _numOfBytesRemainingForCompletePacket
Amount of bytes remaining for a complete packet.
Definition EmlidUartSensor.hpp:123
EmlidUartSensor & operator=(EmlidUartSensor &&)=delete
Move assignment operator.
static constexpr uint8_t ASCII_ESCAPE_CHAR
Ascii Escape charater.
Definition EmlidUartSensor.hpp:101
uart::sensors::UartSensor _sensor
UartSensor object which handles the UART interface.
Definition EmlidUartSensor.hpp:59
std::unique_ptr< uart::protocol::Packet > findPacket(uint8_t dataByte)
Collects data bytes and searches for packages inside of them.
static constexpr uint8_t ASCII_END_CHAR_2
Second Ascii End character.
Definition EmlidUartSensor.hpp:100
uint8_t _binaryMsgId
Message id of the current packet.
Definition EmlidUartSensor.hpp:113
static uart::protocol::Packet::Type packetTypeFunction(const uart::protocol::Packet &packet)
Function which is called to determine the packet type (ascii/binary)
EmlidUartSensor(std::string name)
Constructor.
bool _asciiEndChar1Found
Flag if the first ascii end character was found.
Definition EmlidUartSensor.hpp:106
static constexpr uint8_t BINARY_SYNC_CHAR_1
R - First sync character which begins a new binary message.
Definition EmlidUartSensor.hpp:50
bool _currentlyBuildingBinaryPacket
Flag if currently a binary packet is built.
Definition EmlidUartSensor.hpp:104