Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
c
f
l
o
p
r
s
t
+
Functions
f
l
o
t
Variables
Typedefs
Enumerations
Enumerator
+
Classes
Class List
Class Hierarchy
+
Class Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
~
+
Functions
a
c
d
e
f
g
i
l
o
p
r
s
t
u
w
~
+
Variables
a
c
d
f
i
k
m
p
r
s
t
u
v
w
Enumerations
+
Enumerator
b
d
f
h
m
p
r
s
+
Files
File List
+
File Members
All
Functions
Variables
Macros
include
schunk_svh_library
serial
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
43
#include "
schunk_svh_library/ImportExport.h
"
44
#include "
schunk_svh_library/serial/SerialFlags.h
"
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
68
class
DRIVER_SVH_IMPORT_EXPORT
Serial
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
175
int
fileDescriptor
()
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
;
203
SerialFlags
m_serial_flags
;
204
int
m_status
;
205
};
206
207
}
// namespace serial
208
}
// namespace driver_svh
209
210
#endif
SerialFlags.h
Contains tSerialFlags.
driver_svh::serial::Serial::fileDescriptor
int fileDescriptor()
Definition:
Serial.h:175
DRIVER_SVH_IMPORT_EXPORT
#define DRIVER_SVH_IMPORT_EXPORT
Definition:
ImportExport.h:50
driver_svh::serial::Serial::m_status
int m_status
Definition:
Serial.h:204
driver_svh
Definition:
SVHControlCommand.h:39
driver_svh::serial::Serial::status
int status() const
Definition:
Serial.h:166
driver_svh::serial::SerialFlags::BaudRate
BaudRate
Definition:
SerialFlags.h:79
ImportExport.h
driver_svh::serial::Serial::deviceName
const char * deviceName() const
Definition:
Serial.h:170
driver_svh::serial::Serial::m_dev_name
char * m_dev_name
Definition:
Serial.h:202
driver_svh::serial::Serial
Enables acces to serial devices.
Definition:
Serial.h:68
driver_svh::serial::Serial::open
bool open(const SerialFlags &flags)
Definition:
Serial.h:123
driver_svh::serial::Serial::m_serial_flags
SerialFlags m_serial_flags
Definition:
Serial.h:203
driver_svh::serial::SerialFlags
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