SerialFlags.h
Go to the documentation of this file.
1 //
3 // © Copyright 2022 SCHUNK Mobile Greifsysteme GmbH, Lauffen/Neckar Germany
4 // © Copyright 2022 FZI Forschungszentrum Informatik, Karlsruhe, Germany
5 //
6 // This file is part of the Schunk SVH Library.
7 //
8 // The Schunk SVH Library is free software: you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation, either version 3 of the License, or (at your
11 // option) any later version.
12 //
13 // The Schunk SVH Library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
16 // Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License along with
19 // the Schunk SVH Library. If not, see <https://www.gnu.org/licenses/>.
20 //
22 
23 //----------------------------------------------------------------------
35 //----------------------------------------------------------------------
36 #ifndef DRIVER_SVH_SERIAL_SERIALFLAGS_H_INCLUDED
37 #define DRIVER_SVH_SERIAL_SERIALFLAGS_H_INCLUDED
38 
39 #ifdef _SYSTEM_WIN32_
40 # include <Windows.h>
41 #endif
42 
44 
45 namespace driver_svh {
46 namespace serial {
47 
49 
53 {
54 public:
55  enum DataBits
56  {
57  DB_5 = 5,
58  DB_6 = 6,
59  DB_7 = 7,
60  DB_8 = 8
61  };
62 
63  enum StopBits
64  {
67  SB_2
68  };
69 
70  enum Parity
71  {
76  P_SPACE
77  };
78 
79  enum BaudRate
80  {
81  BR_0 = 0,
82  BR_50 = 50,
83  BR_75 = 75,
84  BR_110 = 110,
85  BR_134 = 134,
86  BR_150 = 150,
87  BR_200 = 200,
88  BR_300 = 300,
89  BR_600 = 600,
90  BR_1200 = 1200,
91  BR_1800 = 1800,
92  BR_2400 = 2400,
93  BR_4800 = 4800,
94  BR_9600 = 9600,
95  BR_19200 = 19200,
96  BR_38400 = 38400,
97  BR_57600 = 57600,
98  BR_115200 = 115200,
99  BR_230400 = 230400,
100  BR_500000 = 500000,
101  BR_921600 = 921600
102  };
103 
105  {
107  FC_HAND_SHAKE
108  };
109 
111  {
112  MCF_NULL = 0x000,
113  MCF_DTR = 0x002,
114  MCF_RTS = 0x004,
115  MCF_UNDEFINED = 0x800
116  };
117 
119  : m_data_bits(DB_8)
120  , m_stop_bits(SB_1)
121  , m_parity(P_NONE)
122  , m_baud_rate(BR_9600)
123  , m_flow_control(FC_HAND_SHAKE)
124  , m_use_modem_control(true)
125  , m_modem_control_flags(MCF_UNDEFINED)
126  , m_enable_receiver(false)
127  , m_enable_stop_on_receive(false)
128  {
129  }
130 
132  Parity parity = P_NONE,
133  bool use_modem_control = false,
134  bool enable_receiver = false,
135  bool enable_stop_on_receive = false,
136  ModemControlFlags modem_control_flags = MCF_UNDEFINED)
137  : m_data_bits(data_bits)
138  , m_stop_bits(SB_1)
139  , m_parity(parity)
140  , m_baud_rate(BR_9600)
141  , m_flow_control(FC_HAND_SHAKE)
142  , m_use_modem_control(use_modem_control)
143  , m_modem_control_flags(modem_control_flags)
144  , m_enable_receiver(enable_receiver)
145  , m_enable_stop_on_receive(enable_stop_on_receive)
146  {
147  }
148 
150  DataBits data_bits,
151  Parity parity = P_NONE,
152  bool use_modem_control = false,
153  bool enable_receiver = false,
154  bool enable_stop_on_receive = false,
155  ModemControlFlags modem_control_flags = MCF_UNDEFINED)
156  : m_data_bits(data_bits)
157  , m_stop_bits(SB_1)
158  , m_parity(parity)
159  , m_baud_rate(baud_rate)
160  , m_flow_control(FC_HAND_SHAKE)
161  , m_use_modem_control(use_modem_control)
162  , m_modem_control_flags(modem_control_flags)
163  , m_enable_receiver(enable_receiver)
164  , m_enable_stop_on_receive(enable_stop_on_receive)
165  {
166  }
167 
169  Parity parity,
170  DataBits data_bits,
171  StopBits stop_bits,
172  bool use_modem_control = false,
173  bool enable_receiver = false,
174  bool enable_stop_on_receive = false,
175  ModemControlFlags modem_control_flags = MCF_UNDEFINED)
176  : m_data_bits(data_bits)
177  , m_stop_bits(stop_bits)
178  , m_parity(parity)
179  , m_baud_rate(baud_rate)
180  , m_flow_control(FC_HAND_SHAKE)
181  , m_use_modem_control(use_modem_control)
182  , m_modem_control_flags(modem_control_flags)
183  , m_enable_receiver(enable_receiver)
184  , m_enable_stop_on_receive(enable_stop_on_receive)
185  {
186  }
187 
188  SerialFlags(const SerialFlags& flags)
189  : m_data_bits(flags.m_data_bits)
190  , m_stop_bits(flags.m_stop_bits)
191  , m_parity(flags.m_parity)
192  , m_baud_rate(flags.m_baud_rate)
193  , m_flow_control(flags.m_flow_control)
194  , m_use_modem_control(flags.m_use_modem_control)
195  , m_modem_control_flags(flags.m_modem_control_flags)
196  , m_enable_receiver(flags.m_enable_receiver)
197  , m_enable_stop_on_receive(false)
198  {
199  }
200 
201  BaudRate getBaudRate() const { return m_baud_rate; }
202  DataBits getDataBits() const { return m_data_bits; }
203  bool enableStopOnReceive() const { return m_enable_stop_on_receive; }
204  bool enableReceiver() const { return m_enable_receiver; }
205  FlowControl getFlowControl() const { return m_flow_control; }
206  Parity getParity() const { return m_parity; }
207  StopBits getStopBits() const { return m_stop_bits; }
208  bool useModemControl() const { return m_use_modem_control; }
209 
210  void setBaudRate(BaudRate baud_rate) { m_baud_rate = baud_rate; }
211 
212  ModemControlFlags getModemControlFlags() const { return m_modem_control_flags; }
213 
214 #ifdef _SYSTEM_POSIX_
215  unsigned long cFlags() const;
216  static unsigned long cFlags(BaudRate baud_rate);
217 #endif
218 #ifdef _SYSTEM_WIN32_
219  void GetDCB(LPDCB dcb) const;
220 #endif
221 
222 private:
232 };
233 
234 } // namespace serial
235 } // namespace driver_svh
236 
237 #endif
ModemControlFlags m_modem_control_flags
Definition: SerialFlags.h:229
#define DRIVER_SVH_IMPORT_EXPORT
Definition: ImportExport.h:50
void setBaudRate(BaudRate baud_rate)
Definition: SerialFlags.h:210
SerialFlags(BaudRate baud_rate, DataBits data_bits, Parity parity=P_NONE, bool use_modem_control=false, bool enable_receiver=false, bool enable_stop_on_receive=false, ModemControlFlags modem_control_flags=MCF_UNDEFINED)
Definition: SerialFlags.h:149
FlowControl getFlowControl() const
Definition: SerialFlags.h:205
ModemControlFlags getModemControlFlags() const
Definition: SerialFlags.h:212
SerialFlags(BaudRate baud_rate, Parity parity, DataBits data_bits, StopBits stop_bits, bool use_modem_control=false, bool enable_receiver=false, bool enable_stop_on_receive=false, ModemControlFlags modem_control_flags=MCF_UNDEFINED)
Definition: SerialFlags.h:168
SerialFlags(const SerialFlags &flags)
Definition: SerialFlags.h:188
SerialFlags(DataBits data_bits, Parity parity=P_NONE, bool use_modem_control=false, bool enable_receiver=false, bool enable_stop_on_receive=false, ModemControlFlags modem_control_flags=MCF_UNDEFINED)
Definition: SerialFlags.h:131
Short description of tSerialFlags.
Definition: SerialFlags.h:52


schunk_svh_library
Author(s): Georg Heppner, Lars Pfotzer, Felix Exner, Johannes Mangler, Stefan Scherzinger, Pascal Becker
autogenerated on Fri Apr 14 2023 02:26:23