Arduino KVComm  master
Key-Value pair communication library for Arduino
SLIP.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <stdint.h> // uint8_t
4 
7 
9 namespace SLIP_Constants {
10 const static uint8_t END = 0300;
11 const static uint8_t ESC = 0333;
12 const static uint8_t ESC_END = 0334;
13 const static uint8_t ESC_ESC = 0335;
14 } // namespace SLIP_Constants
15 
16 /// @}
SLIP_Constants
SLIP special character codes.
Definition: SLIP.hpp:9
SLIP_Constants::ESC_END
const static uint8_t ESC_END
ESC ESC_END means END data byte.
Definition: SLIP.hpp:12
SLIP_Constants::ESC_ESC
const static uint8_t ESC_ESC
ESC ESC_ESC means ESC data byte.
Definition: SLIP.hpp:13
SLIP_Constants::ESC
const static uint8_t ESC
indicates byte stuffing
Definition: SLIP.hpp:11
SLIP_Constants::END
const static uint8_t END
indicates end of packet
Definition: SLIP.hpp:10