IRSOL
C++ code implementing socket server for interacting with Baumer camera.
irsol::protocol::Serializer::SpecialBytes Struct Reference

Special byte constants used in the Simple Communication Protocol. More...

#include <serializer.hpp>

Static Public Attributes

static constexpr irsol::types::byte_t SOH {0x01}
 Start of Header (SOH) byte: 0x01.
 
static constexpr irsol::types::byte_t STX {0x02}
 Start of Text (STX) byte: 0x02.
 
static constexpr irsol::types::byte_t ETX {0x03}
 End of Text (ETX) byte: 0x03.
 

Detailed Description

Special byte constants used in the Simple Communication Protocol.

These bytes mark the start of header, start of text, and end of text in binary protocol messages.

Definition at line 54 of file serializer.hpp.

Member Data Documentation

◆ ETX

constexpr irsol::types::byte_t irsol::protocol::Serializer::SpecialBytes::ETX {0x03}
staticconstexpr

End of Text (ETX) byte: 0x03.

Definition at line 61 of file serializer.hpp.

61{0x03};

◆ SOH

constexpr irsol::types::byte_t irsol::protocol::Serializer::SpecialBytes::SOH {0x01}
staticconstexpr

Start of Header (SOH) byte: 0x01.

Definition at line 57 of file serializer.hpp.

57{0x01};

◆ STX

constexpr irsol::types::byte_t irsol::protocol::Serializer::SpecialBytes::STX {0x02}
staticconstexpr

Start of Text (STX) byte: 0x02.

Definition at line 59 of file serializer.hpp.

59{0x02};

The documentation for this struct was generated from the following file: