Skip to content

Commit

Permalink
Merge pull request #412 from ROBOTIS-GIT/ros2-devel
Browse files Browse the repository at this point in the history
prepare to release v3.7.31
  • Loading branch information
ROBOTIS-Will authored Jul 15, 2020
2 parents 5b63f2b + 42b2eb7 commit d983879
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 23 deletions.
5 changes: 3 additions & 2 deletions dynamixel_sdk/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
Changelog for package dynamixel_sdk
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

3.7.3 (2020-07-13)
3.7.31 (2020-07-13)
------------------
* ROS 2 Eloquent Elusor supported
* ROS 2 Foxy Fitzroy supported
* Contributors: Will Son
* 3x faster getError member function of GroupSync&BulkRead Class #388
* Contributors: developer0hye, Zerom, Will Son

3.7.20 (2019-09-06)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion dynamixel_sdk/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>dynamixel_sdk</name>
<version>3.7.3</version>
<version>3.7.31</version>
<description>
This package is wrapping version of ROBOTIS Dynamixel SDK for ROS 2. 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>
Expand Down
11 changes: 1 addition & 10 deletions dynamixel_sdk/src/dynamixel_sdk/group_bulk_read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,14 +232,5 @@ bool GroupBulkRead::getError(uint8_t id, uint8_t* error)
// TODO : check protocol version, last_result_, data_list
// if (last_result_ == false || error_list_.find(id) == error_list_.end())

error[0] = error_list_[id][0];

if (error[0] != 0)
{
return true;
}
else
{
return false;
}
return error[0] = error_list_[id][0];
}
11 changes: 1 addition & 10 deletions dynamixel_sdk/src/dynamixel_sdk/group_sync_read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,14 +201,5 @@ bool GroupSyncRead::getError(uint8_t id, uint8_t* error)
// TODO : check protocol version, last_result_, data_list
// if (ph_->getProtocolVersion() == 1.0 || last_result_ == false || error_list_.find(id) == error_list_.end())

error[0] = error_list_[id][0];

if (error[0] != 0)
{
return true;
}
else
{
return false;
}
return error[0] = error_list_[id][0];
}

0 comments on commit d983879

Please sign in to comment.