forked from ros-controls/realtime_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml
29 lines (24 loc) · 1.18 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
<package>
<name>realtime_tools</name>
<version>1.8.2</version>
<description>This package contains a set of tools that can be used from a hard
realtime thread, without breaking the realtime behavior. The
tools currently only provides the realtime publisher, which makes
it possible to publish messages to a ROS topic from a realtime
thread. We plan to add a basic implementation of a realtime
buffer, to make it possible to get data from a (non-realtime)
topic callback into the realtime loop. Once the lockfree buffer is
created, the realtime publisher will start using it, which will
result in major API changes for the realtime publisher (removal of
all lock methods).</description>
<maintainer email="[email protected]">Stuart Glaser</maintainer>
<license>BSD</license>
<url type="website">http://ros.org/wiki/realtime_tools</url>
<!-- <url type="bugtracker"></url> -->
<author email="[email protected]">Stuart Glaser</author>
<buildtool_depend>catkin</buildtool_depend>
<build_depend>roscpp</build_depend>
<build_depend>rospy</build_depend>
<run_depend>roscpp</run_depend>
<run_depend>rospy</run_depend>
</package>