robot_time/package.xml
2026-01-10 10:17:17 +07:00

26 lines
1.1 KiB
XML

<package>
<name>robot_time</name>
<version>0.7.10</version>
<description>
robot_time provides time utilities for robot applications, similar to ros::Time
but independent of ROS. It includes:
- Time: Represents a point in time with nanosecond precision
- Duration: Represents a time interval (can be positive or negative)
- Rate: Helps run loops at a desired frequency (Hz)
- Timer: Calls a callback function periodically in a separate thread
- WallRate: Rate using wall-clock time instead of simulated time
The library supports both simulated time and wall-clock time, and is designed
for use in control loops, event-driven systems, and multi-threaded applications.
All operations are thread-safe and cross-platform (Linux/Windows).
</description>
<author>Tully Foote</author>
<author>Eitan Marder-Eppstein</author>
<author>Wim Meeussen</author>
<maintainer email="tfoote@osrfoundation.org">Tully Foote</maintainer>
<license>BSD</license>
<url type="website">http://www.ros.org/wiki/robot_time</url>
<buildtool_depend version_gte="0.5.68">catkin</buildtool_depend>
</package>