Skip to content

Commit 1071c31

Browse files
micro-ROS humble Library auto-update 27-05-2024 06:20 (#1768)
Co-authored-by: pablogs9 <[email protected]>
1 parent 11b7ca6 commit 1071c31

File tree

4 files changed

+140
-2
lines changed

4 files changed

+140
-2
lines changed

built_packages

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ https://github.com/eProsima/Micro-CDR.git ed4fd513a24a53b93d548d342cb7aa0a18716f
99
https://github.com/eProsima/Micro-XRCE-DDS-Client.git 83f129a80770a09aac9e823896ecbf6a0eddf0fc
1010
https://github.com/micro-ROS/micro_ros_msgs.git 10be4d005fbc7d8dd60dbb213b65f4171419bfe9
1111
https://github.com/micro-ROS/micro_ros_utilities 6d025eb716c10f8d4c04a5559ab22c9a50755538
12-
https://github.com/micro-ROS/rcl c9ce6e41e2bcee9d843e8cbe73d30f474c05ea67
12+
https://github.com/micro-ROS/rcl f726b224f11c7437492293e14e26d636ebd7698f
1313
https://github.com/micro-ROS/rcutils 3ae278cf916867d7bc52f49636e5c07dd07f5f6c
1414
https://github.com/micro-ROS/rmw-microxrcedds.git 3144202d117b146a925b059dfb9ba43e6bf15f25
1515
https://github.com/micro-ROS/rosidl_typesupport.git 20f4849939c60d46f6e39b3720bb581e111bd166
@@ -19,7 +19,7 @@ https://github.com/ros2/ament_cmake_ros.git 60572fa1bec50b9e6fbe64e1b23640d21c15
1919
https://github.com/ros2/common_interfaces.git 53761cba9a000902602e7e695cb40de78eadee7f
2020
https://github.com/ros2/example_interfaces.git f8deb566a1facf91bd38b9f00c4cf684c5007d85
2121
https://github.com/ros2/libyaml_vendor.git 239f695ceaa0820255f3d0fe02ec8c2bd41b8e78
22-
https://github.com/ros2/rcl.git 619dfb3083bf1121d60767f190eff11ef975e476
22+
https://github.com/ros2/rcl.git 135d8c177d959bd71e12811ee0ce2a78306d1d14
2323
https://github.com/ros2/rcl_interfaces.git 5e01a28f9866a564491480e12d8659a134678741
2424
https://github.com/ros2/rcl_logging.git 1b7a4e34884005f28eeb04065b5d94565c67b11d
2525
https://github.com/ros2/rclc 65d293dba0856fc0352ec74b046ec5e59a5332b8

src/rcl/version.h

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Copyright 2015 Open Source Robotics Foundation, Inc.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
#ifndef RCL__VERSION_H_
16+
#define RCL__VERSION_H_
17+
18+
/// \def RCL_VERSION_MAJOR
19+
/// Defines RCL major version number
20+
#define RCL_VERSION_MAJOR (5)
21+
22+
/// \def RCL_VERSION_MINOR
23+
/// Defines RCL minor version number
24+
#define RCL_VERSION_MINOR (3)
25+
26+
/// \def RCL_VERSION_PATCH
27+
/// Defines RCL version patch number
28+
#define RCL_VERSION_PATCH (8)
29+
30+
/// \def RCL_VERSION_STR
31+
/// Defines RCL version string
32+
#define RCL_VERSION_STR "5.3.8"
33+
34+
/// \def RCL_VERSION_GTE
35+
/// Defines a macro to check whether the version of RCL is greater than or equal to
36+
/// the given version triple.
37+
#define RCL_VERSION_GTE(major, minor, patch) ( \
38+
(major < RCL_VERSION_MAJOR) ? true \
39+
: (major > RCL_VERSION_MAJOR) ? false \
40+
: (minor < RCL_VERSION_MINOR) ? true \
41+
: (minor > RCL_VERSION_MINOR) ? false \
42+
: (patch < RCL_VERSION_PATCH) ? true \
43+
: (patch > RCL_VERSION_PATCH) ? false \
44+
: true)
45+
46+
#endif // RCL__VERSION_H_

src/rcl_action/version.h

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Copyright 2015 Open Source Robotics Foundation, Inc.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
#ifndef RCL_ACTION__VERSION_H_
16+
#define RCL_ACTION__VERSION_H_
17+
18+
/// \def RCL_ACTION_VERSION_MAJOR
19+
/// Defines RCL_ACTION major version number
20+
#define RCL_ACTION_VERSION_MAJOR (5)
21+
22+
/// \def RCL_ACTION_VERSION_MINOR
23+
/// Defines RCL_ACTION minor version number
24+
#define RCL_ACTION_VERSION_MINOR (3)
25+
26+
/// \def RCL_ACTION_VERSION_PATCH
27+
/// Defines RCL_ACTION version patch number
28+
#define RCL_ACTION_VERSION_PATCH (8)
29+
30+
/// \def RCL_ACTION_VERSION_STR
31+
/// Defines RCL_ACTION version string
32+
#define RCL_ACTION_VERSION_STR "5.3.8"
33+
34+
/// \def RCL_ACTION_VERSION_GTE
35+
/// Defines a macro to check whether the version of RCL_ACTION is greater than or equal to
36+
/// the given version triple.
37+
#define RCL_ACTION_VERSION_GTE(major, minor, patch) ( \
38+
(major < RCL_ACTION_VERSION_MAJOR) ? true \
39+
: (major > RCL_ACTION_VERSION_MAJOR) ? false \
40+
: (minor < RCL_ACTION_VERSION_MINOR) ? true \
41+
: (minor > RCL_ACTION_VERSION_MINOR) ? false \
42+
: (patch < RCL_ACTION_VERSION_PATCH) ? true \
43+
: (patch > RCL_ACTION_VERSION_PATCH) ? false \
44+
: true)
45+
46+
#endif // RCL_ACTION__VERSION_H_

src/rcl_lifecycle/version.h

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Copyright 2015 Open Source Robotics Foundation, Inc.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
#ifndef RCL_LIFECYCLE__VERSION_H_
16+
#define RCL_LIFECYCLE__VERSION_H_
17+
18+
/// \def RCL_LIFECYCLE_VERSION_MAJOR
19+
/// Defines RCL_LIFECYCLE major version number
20+
#define RCL_LIFECYCLE_VERSION_MAJOR (5)
21+
22+
/// \def RCL_LIFECYCLE_VERSION_MINOR
23+
/// Defines RCL_LIFECYCLE minor version number
24+
#define RCL_LIFECYCLE_VERSION_MINOR (3)
25+
26+
/// \def RCL_LIFECYCLE_VERSION_PATCH
27+
/// Defines RCL_LIFECYCLE version patch number
28+
#define RCL_LIFECYCLE_VERSION_PATCH (8)
29+
30+
/// \def RCL_LIFECYCLE_VERSION_STR
31+
/// Defines RCL_LIFECYCLE version string
32+
#define RCL_LIFECYCLE_VERSION_STR "5.3.8"
33+
34+
/// \def RCL_LIFECYCLE_VERSION_GTE
35+
/// Defines a macro to check whether the version of RCL_LIFECYCLE is greater than or equal to
36+
/// the given version triple.
37+
#define RCL_LIFECYCLE_VERSION_GTE(major, minor, patch) ( \
38+
(major < RCL_LIFECYCLE_VERSION_MAJOR) ? true \
39+
: (major > RCL_LIFECYCLE_VERSION_MAJOR) ? false \
40+
: (minor < RCL_LIFECYCLE_VERSION_MINOR) ? true \
41+
: (minor > RCL_LIFECYCLE_VERSION_MINOR) ? false \
42+
: (patch < RCL_LIFECYCLE_VERSION_PATCH) ? true \
43+
: (patch > RCL_LIFECYCLE_VERSION_PATCH) ? false \
44+
: true)
45+
46+
#endif // RCL_LIFECYCLE__VERSION_H_

0 commit comments

Comments
 (0)