Skip to content
Snippets Groups Projects
Unverified Commit 9703768a authored by Leon's avatar Leon Committed by GitHub
Browse files

Merge pull request #139 from ROBOTIS-GIT/kinetic-devel

Kinetic devel
parents 0eb1e205 f6c7eebe
No related branches found
Tags 3.5.3
No related merge requests found
...@@ -38,7 +38,7 @@ PROJECT_NAME = "DynamixelSDK c++" ...@@ -38,7 +38,7 @@ PROJECT_NAME = "DynamixelSDK c++"
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 3.5.2 PROJECT_NUMBER = 3.5.3
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a # for a project that appears at the top of each page and should give viewer a
......
![](https://raw.githubusercontent.com/ROBOTIS-GIT/ROBOTIS-Documents/master/wiki-images/DynamixelSDK/Home/DYNAMIXEL_SDK_Logo.jpg) ![](https://raw.githubusercontent.com/ROBOTIS-GIT/ROBOTIS-Documents/master/wiki-images/DynamixelSDK/Home/DYNAMIXEL_SDK.jpg)
![](https://raw.githubusercontent.com/ROBOTIS-GIT/ROBOTIS-Documents/master/wiki-images/DynamixelSDK/Home/DXL_SDK_image.jpg)
### Software Release ### Software Release
-------------------------------------------------------------------------- --------------------------------------------------------------------------
| Dynamixel SDK Version | 1.X | 2.X | 3.X ([Download](https://github.com/ROBOTIS-GIT/DynamixelSDK/releases)) | | Dynamixel SDK Version | 1.X | 2.X | 3.X ([Download](https://github.com/ROBOTIS-GIT/DynamixelSDK/releases)) |
| ------------- | ------------- | ------------- | ------------- | | ------------- | ------------- | ------------- | ------------- |
| Release date | 2010.05.16 | 2015.02.10 | 2016.03.08 | | Release date | 2010.05.16 | 2015.02.10 | 2016.03.08 |
| Latest version released |||3.5.2| | Latest version released |||3.5.3|
| |||(..)| | |||(2017.10.30)|
| OS | Linux | Windows | Linux + Windows + Mac | | OS | Linux | Windows | Linux + Windows + Mac |
| Available Dynamixel models | All models | All models | All models | | Available Dynamixel models | All models | All models | All models |
||||| |||||
......
==============================================
Dynamixel SDK 3.5.3 (Protocol 1.0/2.0)
==============================================
- 10.30.2017
* Fixes : DynamixelSDK ROS Kinetic Issue - ARM - Debian Jessie solved by replacing target_sources func in CMake to set_property #136
============================================== ==============================================
Dynamixel SDK 3.5.2 (Protocol 1.0/2.0) Dynamixel SDK 3.5.2 (Protocol 1.0/2.0)
============================================== ==============================================
......
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
Changelog for package dynamixel_sdk Changelog for package dynamixel_sdk
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3.5.3 (2017-10-30)
-----------
* Fixes : DynamixelSDK ROS Kinetic Issue - ARM - Debian Jessie solved by replacing target_sources func in CMake to set_property #136
* Contributors: Leon
3.5.2 (2017-09-18) 3.5.2 (2017-09-18)
----------- -----------
* Recover : Check if the id of rxpacket is the same as the id of txpacket #82 * Recover : Check if the id of rxpacket is the same as the id of txpacket #82
......
...@@ -35,20 +35,21 @@ include_directories( ...@@ -35,20 +35,21 @@ include_directories(
${catkin_INCLUDE_DIRS} ${catkin_INCLUDE_DIRS}
) )
add_library(dynamixel_sdk add_library(dynamixel_sdk
src/dynamixel_sdk/packet_handler.cpp src/dynamixel_sdk/packet_handler.cpp
src/dynamixel_sdk/protocol1_packet_handler.cpp src/dynamixel_sdk/protocol1_packet_handler.cpp
src/dynamixel_sdk/protocol2_packet_handler.cpp src/dynamixel_sdk/protocol2_packet_handler.cpp
src/dynamixel_sdk/group_sync_read.cpp src/dynamixel_sdk/group_sync_read.cpp
src/dynamixel_sdk/group_sync_write.cpp src/dynamixel_sdk/group_sync_write.cpp
src/dynamixel_sdk/group_bulk_read.cpp src/dynamixel_sdk/group_bulk_read.cpp
src/dynamixel_sdk/group_bulk_write.cpp src/dynamixel_sdk/group_bulk_write.cpp
src/dynamixel_sdk/port_handler.cpp src/dynamixel_sdk/port_handler.cpp
) )
if(APPLE) if(APPLE)
target_sources(dynamixel_sdk PRIVATE src/dynamixel_sdk/port_handler_mac.cpp) set_property(TARGET dynamixel_sdk APPEND PROPERTY SOURCES src/dynamixel_sdk/port_handler_mac.cpp)
else() else()
target_sources(dynamixel_sdk PRIVATE src/dynamixel_sdk/port_handler_linux.cpp) set_property(TARGET dynamixel_sdk APPEND PROPERTY SOURCES src/dynamixel_sdk/port_handler_linux.cpp)
endif() endif()
add_dependencies(dynamixel_sdk ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) add_dependencies(dynamixel_sdk ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
......
name=DynamixelSDK name=DynamixelSDK
version=3.5.1 version=3.5.3
author=ROBOTIS author=ROBOTIS
maintainer=ROBOTIS maintainer=ROBOTIS
sentence=DynamixelSDK for Arduino sentence=DynamixelSDK for Arduino
......
<?xml version="1.0"?> <?xml version="1.0"?>
<package> <package>
<name>dynamixel_sdk</name> <name>dynamixel_sdk</name>
<version>3.5.2</version> <version>3.5.3</version>
<description>This package is wrapping version of ROBOTIS Dynamxel SDK for ROS. The ROBOTIS Dynamixel SDK, or SDK, is a software development library that provides Dynamixel control functions for packet communication. The API is designed for Dynamixel actuators and Dynamixel-based platforms.</description> <description>This package is wrapping version of ROBOTIS Dynamxel SDK for ROS. The ROBOTIS Dynamixel SDK, or SDK, is a software development library that provides Dynamixel control functions for packet communication. The API is designed for Dynamixel actuators and Dynamixel-based platforms.</description>
<license>BSD</license> <license>Apache-2.0</license>
<author email="zerom@robotis.com">Zerom</author> <author email="zerom@robotis.com">Zerom</author>
<author email="rwjung@robotis.com">Leon</author> <author email="rwjung@robotis.com">Leon</author>
<maintainer email="pyo@robotis.com">Pyo</maintainer> <maintainer email="pyo@robotis.com">Pyo</maintainer>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment