Skip to content

Commit f046b94

Browse files
authored
Merge pull request #33 from ROBOTIS-GIT/kinetic-devel
PR to sync
2 parents 76e81fe + f14a1fc commit f046b94

File tree

9 files changed

+48
-8
lines changed

9 files changed

+48
-8
lines changed

robotis_controller/CHANGELOG.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
Changelog for package robotis_controller
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.2.1 (2016-11-23)
6+
-----------
7+
* Merge the changes and update
8+
* - Direct Control Mode bug fixed.
9+
* update
10+
* - added writeControlTableCallback
11+
* - added WriteControlTable msg callback
12+
* mode change debugging
13+
* - optimized cpu usage by spin loop (by astumpf)
14+
* - robotis_controller process() : processing order changed.
15+
* 1st : packet communication
16+
* 2nd : processing modules
17+
* - dependencies fixed. (Pull requests `#26 <https://github.com/ROBOTIS-GIT/ROBOTIS-Framework/issues/26>`_)
18+
* - make setJointCtrlModuleCallback() to the thread function & improved.
19+
* - modified dependency problem.
20+
* - reduce CPU consumption
21+
* Contributors: Jay Song, Pyo, Zerom, SCH
22+
523
0.2.0 (2016-08-31)
624
-----------
725
* bug fixed (position pid gain & velocity pid gain sync write).

robotis_controller/package.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package>
33
<name>robotis_controller</name>
4-
<version>0.2.0</version>
4+
<version>0.2.1</version>
55
<description>
66
The main package that controls THORMANG3.
77
</description>
@@ -27,5 +27,6 @@
2727
<run_depend>dynamixel_sdk</run_depend>
2828
<run_depend>robotis_device</run_depend>
2929
<run_depend>robotis_controller_msgs</run_depend>
30+
<run_depend>robotis_framework_common</run_depend>
3031
<export></export>
3132
</package>

robotis_device/CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Changelog for package robotis_device
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.2.1 (2016-11-23)
6+
-----------
7+
* Merge the changes and update
8+
* mode change debugging
9+
* - convertRadian2Value / convertValue2Radian : commented out the code that limits the maximum/minimum value.
10+
* - modified dependency problem.
11+
* Contributors: Jay Song, Pyo, Zerom, SCH
12+
513
0.2.0 (2016-08-31)
614
-----------
715
* bug fixed (position pid gain & velocity pid gain sync write).

robotis_device/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package>
33
<name>robotis_device</name>
4-
<version>0.2.0</version>
4+
<version>0.2.1</version>
55
<description>
66
The package that manages device information of ROBOTIS robots.
77
This package is used when reading device information with the robot information file

robotis_framework/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog for package robotis_framework
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.2.1 (2016-11-23)
6+
-----------
7+
* Merge the changes and update
8+
59
0.2.0 (2016-08-31)
610
-----------
711
* updated CHANGLOG.rst for minor release

robotis_framework/CMakeLists.txt

100755100644
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.8.3)
2-
project(robotis_framework)
3-
find_package(catkin REQUIRED)
4-
catkin_metapackage()
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(robotis_framework)
3+
find_package(catkin REQUIRED)
4+
catkin_metapackage()

robotis_framework/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package>
33
<name>robotis_framework</name>
4-
<version>0.2.0</version>
4+
<version>0.2.1</version>
55
<description>ROS packages for the robotis_framework (meta package)</description>
66
<license>BSD</license>
77
<author email="[email protected]">Zerom</author>

robotis_framework_common/CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Changelog for package robotis_framework_common
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.2.1 (2016-11-23)
6+
-----------
7+
* Merge the changes and update
8+
* - dependencies fixed. (Pull requests `#26 <https://github.com/ROBOTIS-GIT/ROBOTIS-Framework/issues/26>`_)
9+
* - modified dependency problem.
10+
* Contributors: Jay Song, Pyo, Zerom
11+
512
0.2.0 (2016-08-31)
613
-----------
714
* updated CHANGLOG.rst for minor release

robotis_framework_common/package.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package>
33
<name>robotis_framework_common</name>
4-
<version>0.2.0</version>
4+
<version>0.2.1</version>
55
<description>
66
The package contains commonly used Headers for the ROBOTIS Framework.
77
</description>
@@ -13,5 +13,7 @@
1313
<url type="website">http://wiki.ros.org/robotis_framework_common</url>
1414
<buildtool_depend>catkin</buildtool_depend>
1515
<build_depend>roscpp</build_depend>
16+
<build_depend>robotis_device</build_depend>
1617
<run_depend>roscpp</run_depend>
18+
<run_depend>robotis_device</run_depend>
1719
</package>

0 commit comments

Comments
 (0)