Skip to content

Commit 9d2a6c5

Browse files
Merge branch 'Robotics-Sensors:main' into main
2 parents c19b778 + 1db349c commit 9d2a6c5

File tree

3 files changed

+182
-0
lines changed

3 files changed

+182
-0
lines changed
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2+
Changelog for package humanoid_robot_intelligence_control_system_framework
3+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4+
5+
0.3.2 (2023-10-03)
6+
------------------
7+
* Make it compatible for ROS1/ROS2
8+
* Fix bugs
9+
* Update package.xml and CMakeList.txt for to the latest versions
10+
* Contributors & Maintainer: Ronaldson Bellande
11+
12+
0.3.1 (2023-09-27)
13+
------------------
14+
* Starting from this point it under a new license
15+
* Fix errors and Issues
16+
* Rename Repository for a completely different purpose
17+
* Make it compatible with ROS/ROS2
18+
* Upgrade version of all builds and make it more compatible
19+
* Update package.xml and CMakeList.txt for to the latest versions
20+
* Contributors & Maintainer: Ronaldson Bellande
21+
22+
0.2.9 (2018-03-22)
23+
------------------
24+
* added serivce for setting module
25+
* deleted comment for debug
26+
* modified to prevent duplicate indirect address write
27+
* added boost system dependencies
28+
* fixed a bug that occure when handling bulk read item that does not exist
29+
* Contributors: Kayman, Zerom, Pyo
30+
31+
0.2.8 (2018-03-20)
32+
------------------
33+
* added RH-P12-RN.device file
34+
* modified CMakeLists.txt for system dependencies (yaml-cpp)
35+
* Contributors: Zerom, Pyo
36+
37+
0.2.7 (2018-03-15)
38+
------------------
39+
* changed all values read by bulk read are saved to dxl_state\_->bulk_read_table\_.
40+
* Modified to prevent duplicate indirect address write
41+
* fixed a bug that occur when handling bulk read item that does not exist
42+
* changed the License and package format to version 2
43+
* Contributors: SCH, Zerom, Pyo
44+
45+
0.2.6 (2017-08-09)
46+
------------------
47+
* multi thread bug fixed.
48+
* unnecessary debug print removed.
49+
* OpenCR control table item name changed. (torque_enable -> dynamixel_power)
50+
* fixed to not update update_time_stamp\_ if bulk read fails.
51+
* Contributors: Zerom
52+
53+
0.2.5 (2017-06-09)
54+
------------------
55+
* updated for yaml-cpp dependencies (humanoid_robot_intelligence_control_system_controller)
56+
* Contributors: SCH
57+
58+
0.2.4 (2017-06-07)
59+
------------------
60+
* added cmake_modules in package.xml
61+
* Contributors: SCH
62+
63+
0.2.3 (2017-05-23)
64+
------------------
65+
* updated the cmake file for ros install
66+
* Contributors: SCH
67+
68+
0.2.2 (2017-04-24)
69+
------------------
70+
* added a deivce: OpenCR
71+
* updated humanoid_robot_intelligence_control_system_controller.cpp
72+
* changed to read control cycle from .robot file
73+
* Contributors: Zerom, Kayman
74+
75+
0.2.1 (2016-11-23)
76+
------------------
77+
* Merge the changes and update
78+
79+
0.2.0 (2016-08-31)
80+
------------------
81+
* updated CHANGLOG.rst for minor release
82+
83+
0.1.1 (2016-08-18)
84+
------------------
85+
* updated the package information
86+
87+
0.1.0 (2016-08-12)
88+
------------------
89+
* make a meta-package
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Copyright (C) 2024 Bellande Robotics Sensors Research Innovation Center, Ronaldson Bellande
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4+
# use this file except in compliance with the License. You may obtain a copy of
5+
# 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, WITHOUT
11+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
# License for the specific language governing permissions and limitations under
13+
# the License.
14+
15+
cmake_minimum_required(VERSION 3.8)
16+
project(humanoid_robot_intelligence_control_system_framework)
17+
18+
if($ENV{ROS_VERSION} EQUAL 1)
19+
find_package(catkin REQUIRED)
20+
else()
21+
find_package(ament_cmake REQUIRED)
22+
endif()
23+
24+
if($ENV{ROS_VERSION} EQUAL 1)
25+
catkin_package()
26+
endif()
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<?xml version="1.0"?>
2+
<!--
3+
Copyright (C) 2024 Bellande Robotics Sensors Research Innovation Center, Ronaldson Bellande
4+
5+
Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
use this file except in compliance with the License. You may obtain a copy of
7+
the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
License for the specific language governing permissions and limitations under
15+
the License.
16+
-->
17+
18+
<package format="3">
19+
<name>humanoid_robot_intelligence_control_system_framework</name>
20+
<version>0.3.2</version>
21+
<description>ROS packages for the humanoid_robot_intelligence_control_system_framework (meta
22+
package)</description>
23+
<license>Apache 2.0</license>
24+
<maintainer email="ronaldsonbellande@gmail.com">Ronaldson Bellande</maintainer>
25+
26+
27+
<buildtool_depend condition="$ROS_VERSION == 1">catkin</buildtool_depend>
28+
29+
<build_depend condition="$ROS_VERSION == 1">humanoid_robot_intelligence_control_system_controller</build_depend>
30+
<build_depend condition="$ROS_VERSION == 1">humanoid_robot_intelligence_control_system_device</build_depend>
31+
<build_depend condition="$ROS_VERSION == 1">
32+
humanoid_robot_intelligence_control_system_framework_common</build_depend>
33+
34+
<build_export_depend condition="$ROS_VERSION == 1">
35+
humanoid_robot_intelligence_control_system_controller</build_export_depend>
36+
<build_export_depend condition="$ROS_VERSION == 1">
37+
humanoid_robot_intelligence_control_system_device</build_export_depend>
38+
<build_export_depend condition="$ROS_VERSION == 1">
39+
humanoid_robot_intelligence_control_system_framework_common</build_export_depend>
40+
41+
<exec_depend condition="$ROS_VERSION == 1">humanoid_robot_intelligence_control_system_controller</exec_depend>
42+
<exec_depend condition="$ROS_VERSION == 1">humanoid_robot_intelligence_control_system_device</exec_depend>
43+
<exec_depend condition="$ROS_VERSION == 1">
44+
humanoid_robot_intelligence_control_system_framework_common</exec_depend>
45+
46+
47+
<buildtool_depend condition="$ROS_VERSION == 2">ament_cmake</buildtool_depend>
48+
49+
<build_depend condition="$ROS_VERSION == 2">humanoid_robot_intelligence_control_system_controller</build_depend>
50+
<build_depend condition="$ROS_VERSION == 2">humanoid_robot_intelligence_control_system_device</build_depend>
51+
<build_depend condition="$ROS_VERSION == 2">
52+
humanoid_robot_intelligence_control_system_framework_common</build_depend>
53+
54+
<build_export_depend condition="$ROS_VERSION == 2">
55+
humanoid_robot_intelligence_control_system_controller</build_export_depend>
56+
<build_export_depend condition="$ROS_VERSION == 2">
57+
humanoid_robot_intelligence_control_system_device</build_export_depend>
58+
<build_export_depend condition="$ROS_VERSION == 2">
59+
humanoid_robot_intelligence_control_system_framework_common</build_export_depend>
60+
61+
<exec_depend condition="$ROS_VERSION == 2">humanoid_robot_intelligence_control_system_controller</exec_depend>
62+
<exec_depend condition="$ROS_VERSION == 2">humanoid_robot_intelligence_control_system_device</exec_depend>
63+
<exec_depend condition="$ROS_VERSION == 2">
64+
humanoid_robot_intelligence_control_system_framework_common</exec_depend>
65+
66+
<export></export>
67+
</package>

0 commit comments

Comments
 (0)