0.3.0
Loading...
Searching...
No Matches
EspressifUartSensor.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
14
15#pragma once
16
17#include <memory>
18
19#include "uart/sensors/sensors.hpp"
20
21namespace NAV::vendor::espressif
22{
25{
26 public:
29 explicit EspressifUartSensor(std::string name);
30
44 uart::sensors::UartSensor* operator->() { return &_sensor; };
45
49 std::unique_ptr<uart::protocol::Packet> findPacket(uint8_t dataByte);
50
51 static constexpr uint8_t BINARY_SYNC_CHAR_1 = 0xB5;
52 static constexpr uint8_t BINARY_SYNC_CHAR_2 = 0x62;
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
101
102 bool _binarySyncChar2Found{ false };
105
107 uint16_t _binaryPayloadLength{ 0 };
108
110 std::vector<uint8_t> _buffer;
111
113 size_t _runningDataIndex{ 0 };
116
119};
120
121} // namespace NAV::vendor::espressif
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 &timestamp, 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.
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