Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
SerialPortConfig.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_OS_LINUX_SERIALPORTCONFIG_H
4#define IMT_BASE_OS_LINUX_SERIALPORTCONFIG_H
5
7#include <string>
8
9namespace imt {
10namespace base {
11namespace os {
12namespace linux {
13
17class SerialPortConfig final {
18
19public:
20
24 enum class BitRate : uint32_t {
25 BPS_0 = 0,
26 BPS_50 = 50,
27 BPS_75 = 75,
28 BPS_110 = 110,
29 BPS_134 = 134,
30 BPS_150 = 150,
31 BPS_200 = 200,
32 BPS_300 = 300,
33 BPS_600 = 600,
34 BPS_1200 = 1200,
35 BPS_1800 = 1800,
36 BPS_2400 = 2400,
37 BPS_4800 = 4800,
38 BPS_9600 = 9600,
39 BPS_19200 = 19200,
40 BPS_38400 = 38400,
41 BPS_57600 = 57600,
42 BPS_115200 = 115200,
43 BPS_230400 = 230400,
44 BPS_460800 = 460800,
45 BPS_500000 = 500000,
46 BPS_576000 = 576000,
47 BPS_921600 = 921600,
48 BPS_1000000 = 1000000,
49 BPS_1152000 = 1152000,
50 BPS_1500000 = 1500000,
51 BPS_2000000 = 2000000,
52 BPS_2500000 = 2500000,
53 BPS_3000000 = 3000000,
54 BPS_3500000 = 3500000,
55 BPS_4000000 = 4000000
56 };
57
61 enum class NumDataBits : uint8_t {
62 FIVE,
63 SIX,
64 SEVEN,
65 EIGHT
66 };
67
71 enum class NumStopBits : uint8_t {
72 ONE,
73 TWO
74 };
75
79 enum class Parity : uint8_t {
80 NONE,
81 EVEN,
82 ODD,
83 };
84
89 OFF,
90 ON
91 };
92
97 void setDeviceName(std::string const& deviceName);
98
103 std::string const& getDeviceName() const noexcept;
104
109 void setBitRate(BitRate rate) noexcept;
110
115 BitRate getBitRate() const noexcept;
116
121 void setNumDataBits(NumDataBits dataBits) noexcept;
122
127 NumDataBits getNumDataBits() const noexcept;
128
133 void setNumStopBits(NumStopBits stopBits) noexcept;
134
139 NumStopBits getNumStopBits() const noexcept;
140
145 void setParity(Parity portParity) noexcept;
146
151 Parity getParity() const noexcept;
152
158
164
165private:
166
167 std::string m_deviceName {};
168 BitRate m_bitRate {BitRate::BPS_115200};
169 NumDataBits m_dataBits {NumDataBits::EIGHT};
170 NumStopBits m_stopBits {NumStopBits::ONE};
171 Parity m_par {Parity::NONE};
173};
174
175} // namespace linux
176} // namespace os
177} // namespace base
178} // namespace imt
179
180#endif // IMT_BASE_OS_LINUX_SERIALPORTCONFIG_H
Maintains configuration information of a serial port.
BitRate getBitRate() const noexcept
Returns the bit rate.
void setDeviceName(std::string const &deviceName)
Sets the serial port device name.
HardwareFlowControl getHardwareFlowControl() const noexcept
Returns the hardware flow control.
Parity getParity() const noexcept
Returns the parity.
void setBitRate(BitRate rate) noexcept
Sets the bit rate.
std::string const & getDeviceName() const noexcept
Gets the serial port device name.
void setNumDataBits(NumDataBits dataBits) noexcept
Sets the number of data bits.
void setNumStopBits(NumStopBits stopBits) noexcept
Sets the number of stop bits.
NumDataBits getNumDataBits() const noexcept
Returns the number of data bits.
void setHardwareFlowControl(HardwareFlowControl hwFlowCtrl) noexcept
Sets the hardware flow control.
void setParity(Parity portParity) noexcept
Sets the parity.
NumStopBits getNumStopBits() const noexcept
Returns the number of stop bits.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62