40 #ifndef DRIVER_SVH_SVH_RECEIVE_THREAD_H_INCLUDED 41 #define DRIVER_SVH_SVH_RECEIVE_THREAD_H_INCLUDED 59 std::function<void(const SVHSerialPacket& packet, unsigned int packet_count)>;
77 std::shared_ptr<Serial> device,
std::vector< uint8_t > m_data
length of received serial data
tState m_received_state
current state of the state machine
unsigned int m_skipped_bytes
counter for skipped bytes in case no packet is detected
ReceivedPacketCallback m_received_callback
function callback for received packages
bool receiveData()
state machine processing received data
void resetReceivedPackageCount()
resetReceivedPackageCount Resets the received package count to zero. This can be usefull to set all c...
tState
enum for receive packet state machine states
void run()
run method of the thread, executes the main program in an infinite loop
void stop()
stop the run() method
unsigned int receivedPacketCount()
return the count of received packets
uint16_t m_length
length of received serial data
std::function< void(const SVHSerialPacket &packet, unsigned int packet_count)> ReceivedPacketCallback
definition of function callback for received packages
std::shared_ptr< Serial > m_serial_device
pointer to serial device object
Class for receiving messages from the serial device.
driver_svh::ArrayBuilder m_ab
pointer to array builder object for packet receive
Contains a class that enables access to serial devices.
std::chrono::microseconds m_idle_sleep
sleep time during run() if idle
std::atomic< bool > m_continue
Flag to end the run() method from external callers.
uint8_t m_checksum1
Checksum of packet.
Enables acces to serial devices.
SVHReceiveThread(const std::chrono::microseconds &idle_sleep, std::shared_ptr< Serial > device, ReceivedPacketCallback const &received_callback)
SVHReceiveThread Constructs a new Receivethread.
~SVHReceiveThread()
Default DTOR.
std::atomic< unsigned int > m_packets_received
packets counter