File tree Expand file tree Collapse file tree 10 files changed +102
-6
lines changed Expand file tree Collapse file tree 10 files changed +102
-6
lines changed Original file line number Diff line number Diff line change 2
2
Changelog for package robotis_controller
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 0.2.5 (2017-06-09)
6
+ -----------
7
+ * updated for yaml-cpp dependencies
8
+ * Contributors: SCH
9
+
10
+ 0.2.4 (2017-06-07)
11
+ -----------
12
+ * added cmake_modules in package.xml
13
+ * Contributors: SCH
14
+
15
+ 0.2.3 (2017-05-23)
16
+ -----------
17
+ * updated the cmake file for ros install
18
+ * Contributors: SCH
19
+
20
+ 0.2.2 (2017-04-24)
21
+ -----------
22
+ * updated robotis_controller.cpp
23
+ * changed to read control cycle from .robot file
24
+ * Contributors: Zerom
25
+
5
26
0.2.1 (2016-11-23)
6
27
-----------
7
28
* Merge the changes and update
Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ find_package(catkin REQUIRED COMPONENTS
19
19
cmake_modules
20
20
)
21
21
22
+ set (ENV{PKG_CONFIG_PATH} "$ENV{PKG_CONFIG_PATH} :${CATKIN_DEVEL_PREFIX} /lib/pkgconfig" )
23
+ find_package (PkgConfig)
24
+ pkg_check_modules(yaml_cpp yaml-cpp REQUIRED)
25
+
22
26
################################################################################
23
27
# Declare ROS messages, services and actions
24
28
################################################################################
@@ -42,11 +46,12 @@ catkin_package(
42
46
include_directories (
43
47
include
44
48
${catkin_INCLUDE_DIRS}
49
+ ${yaml_cpp_INCLUDE_DIRS}
45
50
)
46
51
47
52
add_library (robotis_controller src/robotis_controller/robotis_controller.cpp)
48
53
add_dependencies (robotis_controller ${catkin_EXPORTED_TARGETS} )
49
- target_link_libraries (robotis_controller yaml-cpp ${catkin_LIBRARIES} )
54
+ target_link_libraries (robotis_controller ${yaml_cpp_LIBRARIES} ${catkin_LIBRARIES} )
50
55
51
56
################################################################################
52
57
# Install
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package >
3
3
<name >robotis_controller</name >
4
- <version >0.2.1 </version >
4
+ <version >0.2.5 </version >
5
5
<description >
6
6
The main package that controls THORMANG3.
7
7
</description >
20
20
<build_depend >robotis_device</build_depend >
21
21
<build_depend >robotis_controller_msgs</build_depend >
22
22
<build_depend >robotis_framework_common</build_depend >
23
+ <build_depend >cmake_modules</build_depend >
24
+ <build_depend >yaml-cpp</build_depend >
23
25
<run_depend >roscpp</run_depend >
24
26
<run_depend >roslib</run_depend >
25
27
<run_depend >std_msgs</run_depend >
28
30
<run_depend >robotis_device</run_depend >
29
31
<run_depend >robotis_controller_msgs</run_depend >
30
32
<run_depend >robotis_framework_common</run_depend >
33
+ <run_depend >cmake_modules</run_depend >
34
+ <run_depend >yaml-cpp</run_depend >
31
35
<export ></export >
32
36
</package >
Original file line number Diff line number Diff line change 2
2
Changelog for package robotis_device
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 0.2.5 (2017-06-09)
6
+ -----------
7
+ * none
8
+
9
+ 0.2.4 (2017-06-07)
10
+ -----------
11
+ * none
12
+
13
+ 0.2.3 (2017-05-23)
14
+ -----------
15
+ * updated the cmake file for ros install
16
+ * Contributors: SCH
17
+
18
+ 0.2.2 (2017-04-24)
19
+ -----------
20
+ * added a deivce: OpenCR
21
+ * changed to read control cycle from .robot file
22
+ * Contributors: Zerom, Kayman
23
+
5
24
0.2.1 (2016-11-23)
6
25
-----------
7
26
* Merge the changes and update
@@ -26,6 +45,7 @@ Changelog for package robotis_device
26
45
0.1.1 (2016-08-18)
27
46
-----------
28
47
* updated the package information
48
+ * Contributors: Zerom
29
49
30
50
0.1.0 (2016-08-12)
31
51
-----------
@@ -42,4 +62,4 @@ Changelog for package robotis_device
42
62
ConvertRadian2Value / ConvertValue2Radian function bug fixed.
43
63
* added code to support the gazebo simulator
44
64
* renewal
45
- * Contributors: ROBOTIS, ROBOTIS-zerom, pyo
65
+ * Contributors: Zerom
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package >
3
3
<name >robotis_device</name >
4
- <version >0.2.1 </version >
4
+ <version >0.2.5 </version >
5
5
<description >
6
6
The package that manages device information of ROBOTIS robots.
7
7
This package is used when reading device information with the robot information file
Original file line number Diff line number Diff line change 2
2
Changelog for package robotis_framework
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 0.2.5 (2017-06-09)
6
+ -----------
7
+ * updated for yaml-cpp dependencies (robotis_controller)
8
+ * Contributors: SCH
9
+
10
+ 0.2.4 (2017-06-07)
11
+ -----------
12
+ * added cmake_modules in package.xml
13
+ * Contributors: SCH
14
+
15
+ 0.2.3 (2017-05-23)
16
+ -----------
17
+ * updated the cmake file for ros install
18
+ * Contributors: SCH
19
+
20
+ 0.2.2 (2017-04-24)
21
+ -----------
22
+ * added a deivce: OpenCR
23
+ * updated robotis_controller.cpp
24
+ * changed to read control cycle from .robot file
25
+ * Contributors: Zerom, Kayman
26
+
5
27
0.2.1 (2016-11-23)
6
28
-----------
7
29
* Merge the changes and update
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package >
3
3
<name >robotis_framework</name >
4
- <version >0.2.1 </version >
4
+ <version >0.2.5 </version >
5
5
<description >ROS packages for the robotis_framework (meta package)</description >
6
6
<license >BSD</license >
7
7
<
author email =
" [email protected] " >Zerom</
author >
Original file line number Diff line number Diff line change 2
2
Changelog for package robotis_framework_common
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 0.2.5 (2017-06-09)
6
+ -----------
7
+ * none
8
+
9
+ 0.2.4 (2017-06-07)
10
+ -----------
11
+ * none
12
+
13
+ 0.2.3 (2017-05-23)
14
+ -----------
15
+ * updated the cmake file for ros install
16
+ * Contributors: SCH
17
+
18
+ 0.2.2 (2017-04-24)
19
+ -----------
20
+ * updated for other packages
21
+ * Contributors: Zerom, Kayman
22
+
5
23
0.2.1 (2016-11-23)
6
24
-----------
7
25
* Merge the changes and update
Original file line number Diff line number Diff line change @@ -46,6 +46,12 @@ set_target_properties(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX)
46
46
################################################################################
47
47
# Install
48
48
################################################################################
49
+ install (TARGETS robotis_framework_common
50
+ ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
51
+ LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
52
+ RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
53
+ )
54
+
49
55
install (DIRECTORY include /${PROJECT_NAME} /
50
56
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
51
57
)
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package >
3
3
<name >robotis_framework_common</name >
4
- <version >0.2.1 </version >
4
+ <version >0.2.5 </version >
5
5
<description >
6
6
The package contains commonly used Headers for the ROBOTIS Framework.
7
7
</description >
You can’t perform that action at this time.
0 commit comments