Skip to content

Commit d657a17

Browse files
authored
micro-ROS humble Library auto-update 10-05-2025 06:24 (#1973)
Co-authored-by: pablogs9 <[email protected]>
1 parent 39363a1 commit d657a17

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

built_packages

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ https://github.com/ros2/common_interfaces.git 7e9e761d97d61bcbc9fdcde9d9d4a433d8
2020
https://github.com/ros2/example_interfaces.git f8deb566a1facf91bd38b9f00c4cf684c5007d85
2121
https://github.com/ros2/libyaml_vendor.git 239f695ceaa0820255f3d0fe02ec8c2bd41b8e78
2222
https://github.com/ros2/rcl.git db83bd8e727148e77cd76e2f6e0857e773f7b2b4
23-
https://github.com/ros2/rcl_interfaces.git 5e01a28f9866a564491480e12d8659a134678741
23+
https://github.com/ros2/rcl_interfaces.git 401fd11e4d8da7b25a0372c46d69c7d88da413b8
2424
https://github.com/ros2/rcl_logging.git 1b7a4e34884005f28eeb04065b5d94565c67b11d
2525
https://github.com/ros2/rclc 65d293dba0856fc0352ec74b046ec5e59a5332b8
2626
https://github.com/ros2/rcpputils.git 66cad68a198a147d50780dbb56e9f9c0a4728555

src/builtin_interfaces/msg/detail/duration__struct.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@ extern "C"
2525
*/
2626
typedef struct builtin_interfaces__msg__Duration
2727
{
28-
/// Seconds component, range is valid over any possible int32 value.
28+
/// The seconds component, valid over all int32 values.
2929
int32_t sec;
30-
/// Nanoseconds component in the range of [0, 10e9).
30+
/// The nanoseconds component, valid in the range [0, 1e9), to be added to the seconds component.
31+
/// e.g.
32+
/// The duration -1.7 seconds is represented as {sec: -2, nanosec: 3e8}
33+
/// The duration 1.7 seconds is represented as {sec: 1, nanosec: 7e8}
3134
uint32_t nanosec;
3235
} builtin_interfaces__msg__Duration;
3336

src/builtin_interfaces/msg/detail/time__struct.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ typedef struct builtin_interfaces__msg__Time
2626
{
2727
/// The seconds component, valid over all int32 values.
2828
int32_t sec;
29-
/// The nanoseconds component, valid in the range [0, 10e9).
29+
/// The nanoseconds component, valid in the range [0, 1e9), to be added to the seconds component.
30+
/// e.g.
31+
/// The time -1.7 seconds is represented as {sec: -2, nanosec: 3e8}
32+
/// The time 1.7 seconds is represented as {sec: 1, nanosec: 7e8}
3033
uint32_t nanosec;
3134
} builtin_interfaces__msg__Time;
3235

0 commit comments

Comments
 (0)