SVHSendPacketTest.cpp
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 //----------------------------------------------------------------------
30 //----------------------------------------------------------------------
31 
36 
38 using namespace driver_svh;
39 
42 
43 // testing serial interface of svh driver
44 int main(int argc, const char* argv[])
45 {
46  std::string serial_device_name = "/dev/ttyUSB0";
47 
48  SVHSerialInterface serial_com(NULL);
49  serial_com.connect(serial_device_name);
50 
51  // build serial packet for sending
52  ArrayBuilder payload(40);
53  SVHSerialPacket test_serial_packet;
54  SVHPositionSettings test_pos_settings(0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.1);
55 
56  // Get the Position settings as payload
57  payload << test_pos_settings;
58  // Generate the header information
59  test_serial_packet.address = 5; // Set Position settings
60  test_serial_packet.index = 0; //
61  // Set the payload (converted array of position settings)
62  test_serial_packet.data = payload.array;
63 
64  // send packet via serial port
65  serial_com.sendPacket(test_serial_packet);
66 
67  serial_com.close();
68 }
uint8_t address
Adress denotes the actual function of the package.
void close()
canceling receive thread and closing connection to serial port
std::vector< uint8_t > array
array of template type TArray
bool sendPacket(SVHSerialPacket &packet)
function for sending packets via serial device to the SVH
std::vector< uint8_t > data
Payload of the package.
bool connect(const std::string &dev_name)
connecting to serial device and starting receive thread
Contains a class that enables access to serial devices.
uint8_t index
Continuosly incremented counter per package.
The SVHPositionSettings save the position controller paramters for a single motor.
Basic communication handler for the SCHUNK five finger hand.
Enables acces to serial devices.
Definition: Serial.h:68
int main(int argc, const char *argv[])
The SerialPacket holds the (non generated) header and data of one message to the SVH-Hardware.
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