Skip to content

Commit 37f2fca

Browse files
Changes to match the ROS2 version
1 parent 0348018 commit 37f2fca

32 files changed

+311
-8
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(ros_tcp_endpoint)
3+
4+
find_package(catkin REQUIRED COMPONENTS
5+
rospy
6+
std_msgs
7+
)
8+
9+
catkin_python_setup()
10+
11+
catkin_package(CATKIN_DEPENDS message_runtime )
File renamed without changes.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0"?>
2+
<package format="2">
3+
<name>ros_tcp_endpoint</name>
4+
<version>0.3.0</version>
5+
<description>Acts as the bridge between Unity messages sent via Websocket and ROS messages.</description>
6+
7+
<maintainer email="unity-robotics@unity3d.com">Unity Robotics</maintainer>
8+
9+
<license>Apache 2.0</license>
10+
<buildtool_depend>catkin</buildtool_depend>
11+
<build_depend>rospy</build_depend>
12+
<build_depend>message_generation</build_depend>
13+
<build_export_depend>rospy</build_export_depend>
14+
<exec_depend>rospy</exec_depend>
15+
<exec_depend>message_runtime</exec_depend>
16+
17+
18+
<!-- The export tag contains other, unspecified, tags -->
19+
<export>
20+
<!-- Other tools can request additional information be placed here -->
21+
22+
</export>
23+
</package>
File renamed without changes.

src/ros_tcp_endpoint/client.py renamed to ROS_Packages/ros_tcp_endpoint/src/ros_tcp_endpoint/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import threading
2121

2222
from .exceptions import TopicOrServiceNameDoesNotExistError
23-
from ros_tcp_endpoint.msg import RosUnitySrvMessage
23+
from unity_interfaces.msg import RosUnitySrvMessage
2424

2525

2626
class ClientThread(threading.Thread):

0 commit comments

Comments
 (0)