distortos  v0.7.0
object-oriented C++ RTOS for microcontrollers
UartParity.hpp
Go to the documentation of this file.
1 
12 #ifndef INCLUDE_DISTORTOS_DEVICES_COMMUNICATION_UARTPARITY_HPP_
13 #define INCLUDE_DISTORTOS_DEVICES_COMMUNICATION_UARTPARITY_HPP_
14 
15 #include <cstdint>
16 
17 namespace distortos
18 {
19 
20 namespace devices
21 {
22 
29 enum class UartParity : uint8_t
30 {
32  none,
34  even,
36  odd,
37 };
38 
39 } // namespace devices
40 
41 } // namespace distortos
42 
43 #endif // INCLUDE_DISTORTOS_DEVICES_COMMUNICATION_UARTPARITY_HPP_
Top-level namespace of distortos project.
Definition: buttons.hpp:33
UartParity
Definition: UartParity.hpp:29
odd parity control is enabled
even parity control is enabled
parity control is disabled