18#include "uart/sensors/sensors.hpp"
20namespace NAV::vendor::kvh
48 std::unique_ptr<uart::protocol::Packet>
findPacket(uint8_t dataByte);
56 static constexpr uart::Endianness
ENDIANNESS = uart::Endianness::ENDIAN_BIG;
79 const uart::xplat::TimeStamp& timestamp,
80 uart::sensors::UartSensor::ValidPacketFoundHandler dispatchPacket,
void* dispatchPacketUserData,
Class to read out KVH Sensors.
Definition KvhUartSensor.hpp:24
HeaderType bFindImuHeader(uint8_t ui8Data)
Function which finds the header from the provided data.
static constexpr uint32_t HEADER_FMT_XBIT2
Header Format X Bit 2.
Definition KvhUartSensor.hpp:54
HeaderType _packetType
Current packet type determined by the header.
Definition KvhUartSensor.hpp:138
KvhUartSensor & operator=(const KvhUartSensor &)=delete
Copy assignment operator.
static constexpr uint32_t HEADER_FMT_A
Header Format A.
Definition KvhUartSensor.hpp:50
KvhUartSensor & operator=(KvhUartSensor &&)=delete
Move assignment operator.
static constexpr uint32_t HEADER_FMT_B
Header Format B.
Definition KvhUartSensor.hpp:51
std::unique_ptr< uart::protocol::Packet > findPacket(uint8_t dataByte)
Collects data bytes and searches for packages inside of them.
static constexpr size_t PACKET_HEADER_LENGTH
Length of the packet header.
Definition KvhUartSensor.hpp:101
bool _asciiEndChar1Found
Flag if the first ascii end character was found.
Definition KvhUartSensor.hpp:111
const std::string _name
Name of the Parent Node.
Definition KvhUartSensor.hpp:60
static constexpr uart::Endianness ENDIANNESS
Endianess of the sensor.
Definition KvhUartSensor.hpp:56
void resetTracking()
Resets the current message tracking.
std::vector< uint8_t > _buffer
Buffer to collect messages till they are complete.
Definition KvhUartSensor.hpp:146
uart::sensors::UartSensor _sensor
UartSensor object which handles the UART interface.
Definition KvhUartSensor.hpp:63
~KvhUartSensor()=default
Destructor.
size_t _runningDataIndex
Used for correlating raw data with where the packet was found for the end user.
Definition KvhUartSensor.hpp:149
KvhUartSensor(KvhUartSensor &&)=delete
Move constructor.
static constexpr uint8_t ASCII_END_CHAR_1
First Ascii End character.
Definition KvhUartSensor.hpp:103
bool _currentlyBuildingBinaryPacket
Flag if currently a binary packet is built.
Definition KvhUartSensor.hpp:109
static bool isResponseFunction(const uart::protocol::Packet &packet)
Function which determines, if the packet is a Response.
HeaderType
Possible Header Types.
Definition KvhUartSensor.hpp:128
@ FMT_A
Use header A.
Definition KvhUartSensor.hpp:129
@ FMT_B
Use header B.
Definition KvhUartSensor.hpp:130
@ FMT_C
Use header C.
Definition KvhUartSensor.hpp:131
@ FMT_XBIT2
Format XBIT2.
Definition KvhUartSensor.hpp:133
@ FMT_UNKNOWN
Unknown format.
Definition KvhUartSensor.hpp:134
@ FMT_XBIT
Format XBIT.
Definition KvhUartSensor.hpp:132
static constexpr uint32_t HEADER_FMT_C
Header Format C.
Definition KvhUartSensor.hpp:52
static uart::protocol::Packet::Type packetTypeFunction(const uart::protocol::Packet &packet)
Function which is called to determine the packet type (ascii/binary)
static constexpr uint32_t HEADER_FMT_XBIT
Header Format X Bit.
Definition KvhUartSensor.hpp:53
static bool checksumFunction(const uart::protocol::Packet &packet)
Function which is called to verify packet integrity.
static constexpr uint8_t ASCII_END_CHAR_2
Second Ascii End character.
Definition KvhUartSensor.hpp:104
TagState
Possible states in the header building process.
Definition KvhUartSensor.hpp:115
@ SM_IDLE
IDLE.
Definition KvhUartSensor.hpp:120
@ SM_H1
H1.
Definition KvhUartSensor.hpp:116
@ SM_H3
H3.
Definition KvhUartSensor.hpp:118
@ SM_H2
H2.
Definition KvhUartSensor.hpp:117
@ SM_X3
X3.
Definition KvhUartSensor.hpp:119
KvhUartSensor(std::string name)
Constructor.
static bool isErrorFunction(const uart::protocol::Packet &packet)
Function which determines, if the packet is an Error Packet.
static constexpr size_t MAX_SIZE_ASCII_PACKET
Maximum size of a ascii packet before resetting it.
Definition KvhUartSensor.hpp:106
static constexpr uint8_t ASCII_ESCAPE_CHAR
Ascii Escape charater.
Definition KvhUartSensor.hpp:105
TagState _eState
Current state of the header building process.
Definition KvhUartSensor.hpp:124
uart::sensors::UartSensor * operator->()
Arrow operator overload.
Definition KvhUartSensor.hpp:43
bool _currentlyBuildingAsciiPacket
Flag if currently a ascii packet is built.
Definition KvhUartSensor.hpp:108
static void packetFinderFunction(const std::vector< uint8_t > &data, const uart::xplat::TimeStamp ×tamp, uart::sensors::UartSensor::ValidPacketFoundHandler dispatchPacket, void *dispatchPacketUserData, void *userData)
Function which is called to find packets in the provided data buffer.
KvhUartSensor(const KvhUartSensor &)=delete
Copy constructor.
KvhUartSensor()=default
Default constructor.