19#include "uart/sensors/sensors.hpp"
21namespace NAV::vendor::espressif
49 std::unique_ptr<uart::protocol::Packet>
findPacket(uint8_t dataByte);
75 const uart::xplat::TimeStamp& timestamp,
76 uart::sensors::UartSensor::ValidPacketFoundHandler dispatchPacket,
void* dispatchPacketUserData,
97 static constexpr uart::Endianness
ENDIANNESS = uart::Endianness::ENDIAN_LITTLE;
Class to read out Espressif Sensors.
Definition EspressifUartSensor.hpp:25
size_t _runningDataIndex
Used for correlating raw data with where the packet was found for the end user.
Definition EspressifUartSensor.hpp:113
uart::sensors::UartSensor _sensor
UartSensor object which handles the UART interface.
Definition EspressifUartSensor.hpp:59
static constexpr uint8_t BINARY_SYNC_CHAR_2
b - Second sync character which begins a new binary message
Definition EspressifUartSensor.hpp:52
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.
std::unique_ptr< uart::protocol::Packet > findPacket(uint8_t dataByte)
Collects data bytes and searches for packages inside of them.
static bool isResponseFunction(const uart::protocol::Packet &packet)
Function which determines, if the packet is a Response.
static constexpr uint8_t BINARY_SYNC_CHAR_1
ยต - First sync character which begins a new binary message
Definition EspressifUartSensor.hpp:51
EspressifUartSensor()=default
Default constructor.
static constexpr size_t PACKET_HEADER_LENGTH
Length of the header of each packet.
Definition EspressifUartSensor.hpp:98
bool _currentlyBuildingBinaryPacket
Flag if currently a binary packet is built.
Definition EspressifUartSensor.hpp:100
bool _binaryPayloadLength1Found
Flag if the first byte of the payload length was found.
Definition EspressifUartSensor.hpp:103
EspressifUartSensor(std::string name)
Constructor.
EspressifUartSensor(EspressifUartSensor &&)=delete
Move constructor.
bool _binarySyncChar2Found
Flag if the second binary end character was found.
Definition EspressifUartSensor.hpp:102
const std::string _name
Name of the Parent Node.
Definition EspressifUartSensor.hpp:56
EspressifUartSensor & operator=(EspressifUartSensor &&)=delete
Move assignment operator.
~EspressifUartSensor()=default
Destructor.
static bool checksumFunction(const uart::protocol::Packet &packet)
Function which is called to verify packet integrity.
size_t _numOfBytesRemainingForCompletePacket
Amount of bytes remaining for a complete packet.
Definition EspressifUartSensor.hpp:115
EspressifUartSensor & operator=(const EspressifUartSensor &)=delete
Copy assignment operator.
uint16_t _binaryPayloadLength
Payload length of the current packet.
Definition EspressifUartSensor.hpp:107
bool _binaryPayloadLength2Found
Flag if the second byte of the payload length was found.
Definition EspressifUartSensor.hpp:104
static uart::protocol::Packet::Type packetTypeFunction(const uart::protocol::Packet &packet)
Function which is called to determine the packet type (ascii/binary)
void resetTracking()
Resets the current message tracking.
std::vector< uint8_t > _buffer
Buffer to collect messages till they are complete.
Definition EspressifUartSensor.hpp:110
static bool isErrorFunction(const uart::protocol::Packet &packet)
Function which determines, if the packet is an Error Packet.
EspressifUartSensor(const EspressifUartSensor &)=delete
Copy constructor.
uart::sensors::UartSensor * operator->()
Arrow operator overload.
Definition EspressifUartSensor.hpp:44
static constexpr uart::Endianness ENDIANNESS
Endianess of the sensor.
Definition EspressifUartSensor.hpp:97