SVHReceiveFeedbackPacketTest.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 
32 #include <boost/bind/bind.hpp>
38 
40 using namespace driver_svh;
41 #if BOOST_VERSION >= 106000 // Moved to namespace in boost 1.60
42 using namespace boost::placeholders;
43 #endif
44 
45 void receivedPacketCallback(const SVHSerialPacket& packet, unsigned int packet_count)
46 {
47  std::cout << "Received new packet with number " << packet_count << std::endl;
48 
49  // Extract Channel
50  uint8_t channel = (packet.address >> 4) & 0x0F;
51  // Prepare Data for conversion
52  ArrayBuilder ab;
53  ab.appendWithoutConversion(packet.data);
54 
55  std::cout << "channel = " << static_cast<int>(channel) << std::endl;
56 
57  if ((packet.address & 0x0F) ==
58  SVH_SET_CONTROL_COMMAND) // || ((packet.address & 0x0F) == SVH_SET_CONTROL_COMMAND)
59  {
60  SVHControllerFeedback controller_feedback;
61 
62  ab >> controller_feedback;
63  SVH_LOG_INFO_STREAM("SVHController",
64  "Received a Control Feedback/Control Command packet for channel "
65  << channel);
66 
67  std::cout << "Controller Feedback " << controller_feedback << std::endl;
68  }
69 }
70 
71 // testing serial interface of svh driver
72 int main(int argc, const char* argv[])
73 {
74  icl_core::logging::initialize();
75 
76  std::string serial_device_name = "/dev/ttyUSB0";
77 
78  SVHSerialInterface serial_com(boost::bind(&receivedPacketCallback, _1, _2));
79  serial_com.connect(serial_device_name);
80 
81  while (true)
82  {
83  }
84 
85  serial_com.close();
86 }
const uint8_t SVH_SET_CONTROL_COMMAND
Sets the target position of a channel.
#define SVH_LOG_INFO_STREAM(NAME, M)
Definition: Logger.h:46
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 > data
Payload of the package.
bool connect(const std::string &dev_name)
connecting to serial device and starting receive thread
void receivedPacketCallback(const SVHSerialPacket &packet, unsigned int packet_count)
The SVHControllerFeedback saves the feedback of a single motor.
void appendWithoutConversion(const T &data)
add data without any byte conversion
Basic communication handler for the SCHUNK five finger hand.
int main(int argc, const char *argv[])
The SerialPacket holds the (non generated) header and data of one message to the SVH-Hardware.


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