19#include "uart/sensors/sensors.hpp"
22namespace NAV::vendor::ublox
50 std::unique_ptr<uart::protocol::Packet>
findPacket(uint8_t dataByte);
77 const uart::xplat::TimeStamp& timestamp,
78 uart::sensors::UartSensor::ValidPacketFoundHandler dispatchPacket,
void* dispatchPacketUserData,
99 static constexpr uart::Endianness
ENDIANNESS = uart::Endianness::ENDIAN_LITTLE;
130#if LOG_LEVEL <= LOG_LEVEL_DATA
Utility class for logging to console and file.
Class to read out Ublox Sensors.
Definition UbloxUartSensor.hpp:26
uint8_t _binaryMsgClass
Message class of the current packet.
Definition UbloxUartSensor.hpp:116
static constexpr uint8_t BINARY_SYNC_CHAR_2
b - Second sync character which begins a new binary message
Definition UbloxUartSensor.hpp:53
bool _binaryMsgIdFound
Flag if the message id was found.
Definition UbloxUartSensor.hpp:111
std::unique_ptr< uart::protocol::Packet > findPacket(uint8_t dataByte)
Collects data bytes and searches for packages inside of them.
UbloxUartSensor & operator=(UbloxUartSensor &&)=delete
Move assignment operator.
uart::sensors::UartSensor * operator->()
Arrow operator overload.
Definition UbloxUartSensor.hpp:45
static bool isResponseFunction(const uart::protocol::Packet &packet)
Function which determines, if the packet is a Response.
static constexpr uint8_t ASCII_END_CHAR_2
Second Ascii End character.
Definition UbloxUartSensor.hpp:102
UbloxUartSensor()=default
Default constructor.
bool _binaryMsgClassFound
Flag if the message class was found.
Definition UbloxUartSensor.hpp:110
static bool isErrorFunction(const uart::protocol::Packet &packet)
Function which determines, if the packet is an Error Packet.
bool _binaryPayloadLength2Found
Flag if the second byte of the payload length was found.
Definition UbloxUartSensor.hpp:113
UbloxUartSensor & operator=(const UbloxUartSensor &)=delete
Copy assignment operator.
const std::string _name
Name of the Parent Node.
Definition UbloxUartSensor.hpp:58
bool _asciiEndChar1Found
Flag if the first ascii end character was found.
Definition UbloxUartSensor.hpp:108
void resetTracking()
Resets the current message tracking.
static constexpr uint8_t ASCII_ESCAPE_CHAR
Ascii Escape charater.
Definition UbloxUartSensor.hpp:103
bool _currentlyBuildingAsciiPacket
Flag if currently a ascii packet is built.
Definition UbloxUartSensor.hpp:105
uart::sensors::UartSensor _sensor
UartSensor object which handles the UART interface.
Definition UbloxUartSensor.hpp:61
static constexpr uint8_t ASCII_END_CHAR_1
First Ascii End character.
Definition UbloxUartSensor.hpp:101
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.
static constexpr size_t PACKET_HEADER_LENGTH
Length of the header of each packet.
Definition UbloxUartSensor.hpp:100
bool _currentlyBuildingBinaryPacket
Flag if currently a binary packet is built.
Definition UbloxUartSensor.hpp:106
static constexpr uint8_t ASCII_START_CHAR
Ascii character which begins a new ascii message.
Definition UbloxUartSensor.hpp:54
static constexpr uart::Endianness ENDIANNESS
Endianess of the sensor.
Definition UbloxUartSensor.hpp:99
bool _binaryPayloadLength1Found
Flag if the first byte of the payload length was found.
Definition UbloxUartSensor.hpp:112
UbloxUartSensor(const UbloxUartSensor &)=delete
Copy constructor.
static constexpr uint8_t BINARY_SYNC_CHAR_1
ยต - First sync character which begins a new binary message
Definition UbloxUartSensor.hpp:52
size_t _numOfBytesRemainingForCompletePacket
Amount of bytes remaining for a complete packet.
Definition UbloxUartSensor.hpp:128
std::vector< uint8_t > _unrecognizedBytes
Bytes which were not recognized as messages.
Definition UbloxUartSensor.hpp:132
UbloxUartSensor(std::string name)
Constructor.
~UbloxUartSensor()=default
Destructor.
uint16_t _binaryPayloadLength
Payload length of the current packet.
Definition UbloxUartSensor.hpp:120
size_t _runningDataIndex
Used for correlating raw data with where the packet was found for the end user.
Definition UbloxUartSensor.hpp:126
static bool checksumFunction(const uart::protocol::Packet &packet)
Function which is called to verify packet integrity.
static uart::protocol::Packet::Type packetTypeFunction(const uart::protocol::Packet &packet)
Function which is called to determine the packet type (ascii/binary)
std::vector< uint8_t > _buffer
Buffer to collect messages till they are complete.
Definition UbloxUartSensor.hpp:123
UbloxUartSensor(UbloxUartSensor &&)=delete
Move constructor.
uint8_t _binaryMsgId
Message id of the current packet.
Definition UbloxUartSensor.hpp:118
bool _binarySyncChar2Found
Flag if the second binary end character was found.
Definition UbloxUartSensor.hpp:109