Serial.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 //----------------------------------------------------------------------
36 //----------------------------------------------------------------------
37 #ifndef DRIVER_SVH_SERIAL_SERIAL_H_INCLUDED
38 #define DRIVER_SVH_SERIAL_SERIAL_H_INCLUDED
39 
40 #include <string>
41 #include <sys/types.h>
42 
45 
46 #ifdef _SYSTEM_WIN32_
47 typedef unsigned int speed_t;
48 typedef int ssize_t;
49 #endif
50 
51 #ifdef _SYSTEM_POSIX_
52 # include <unistd.h>
53 # ifdef _SYSTEM_DARWIN_
54 # include <termios.h>
55 # else
56 # include <termio.h>
57 # endif
58 #endif
59 
60 namespace driver_svh {
61 namespace serial {
62 
64 
69 {
70 public:
88  Serial(const char* dev_name, const SerialFlags& flags);
89 
94  Serial(const char* dev_name, SerialFlags::BaudRate baud_rate, const SerialFlags& flags);
95 
99  ~Serial();
108  int changeBaudrate(SerialFlags::BaudRate speed);
109 
113  int clearReceiveBuffer();
114 
118  int clearSendBuffer();
119 
123  bool open(const SerialFlags& flags)
124  {
125  m_serial_flags = flags;
126  return open();
127  }
128 
132  bool open();
133 
138  bool isOpen() const;
139 
143  void close();
144 
145 
149  ssize_t write(const void* data, ssize_t size);
158  ssize_t read(void* data, ssize_t size, unsigned long time = 100, bool return_on_less_data = true);
166  int status() const { return m_status; }
167 
168  std::string statusText() const;
169 
170  const char* deviceName() const { return m_dev_name; }
171 
176  {
177 #ifdef _SYSTEM_POSIX_
178  return m_file_descr;
179 #else
180  return 0;
181 #endif
182  }
183 
184 private:
185  // Forbid copying.
186  Serial(const Serial&);
187  Serial& operator=(const Serial&);
188 
189  void dumpData(void* data, size_t length);
190 
191 #ifdef _SYSTEM_WIN32_
192  HANDLE m_com;
193  unsigned char m_read_buffer[0x4000];
194  ssize_t m_read_buffer_fill;
195 #endif
196 
197 #ifdef _SYSTEM_POSIX_
198  int m_file_descr;
199  termios m_io_set_old;
200 #endif
201 
202  char* m_dev_name;
204  int m_status;
205 };
206 
207 } // namespace serial
208 } // namespace driver_svh
209 
210 #endif
Contains tSerialFlags.
#define DRIVER_SVH_IMPORT_EXPORT
Definition: ImportExport.h:50
const char * deviceName() const
Definition: Serial.h:170
Enables acces to serial devices.
Definition: Serial.h:68
bool open(const SerialFlags &flags)
Definition: Serial.h:123
SerialFlags m_serial_flags
Definition: Serial.h:203
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