-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml
36 lines (32 loc) · 1.45 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<package>
<name>yocs_cmd_vel_mux</name>
<version>0.12.1</version>
<description>
A multiplexer for command velocity inputs. Arbitrates incoming cmd_vel messages from several topics,
allowing one topic at a time to command the robot, based on priorities. It also deallocates current
allowed topic if no messages are received after a configured timeout. All topics, together with their
priority and timeout are configured through a YAML file, that can be reload at runtime.
</description>
<author>Jorge Santos Simon</author>
<maintainer email="[email protected]">Jihoon Lee</maintainer>
<license>BSD</license>
<url type="website">http://ros.org/wiki/yocs_cmd_vel_mux</url>
<url type="repository">https://github.com/yujinrobot/yujin_ocs</url>
<url type="bugtracker">https://github.com/yujinrobot/yujin_ocs/issues</url>
<buildtool_depend>catkin</buildtool_depend>
<build_depend>roscpp</build_depend>
<build_depend>nodelet</build_depend>
<build_depend>dynamic_reconfigure</build_depend>
<build_depend>pluginlib</build_depend>
<build_depend>geometry_msgs</build_depend>
<build_depend>yaml-cpp</build_depend>
<run_depend>roscpp</run_depend>
<run_depend>geometry_msgs</run_depend>
<run_depend>pluginlib</run_depend>
<run_depend>nodelet</run_depend>
<run_depend>dynamic_reconfigure</run_depend>
<run_depend>yaml-cpp</run_depend>
<export>
<nodelet plugin="${prefix}/plugins/nodelets.xml" />
</export>
</package>