Skip to content

Commit

Permalink
Fix stuck passive joints (#184)
Browse files Browse the repository at this point in the history
* Fix stuck passive joints

* Update comment

* Fix variable naming

---------

Co-authored-by: Christoph Fröhlich <[email protected]>
(cherry picked from commit 0a8d446)
  • Loading branch information
huemerj authored and mergify[bot] committed Dec 16, 2023
1 parent b2f4894 commit ac77051
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions ign_ros2_control/src/ign_system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ struct jointData
/// \brief Current cmd joint effort
double joint_effort_cmd;

/// \brief flag if joint is actuated (has command interfaces) or passive
bool is_actuated;

/// \brief handles to the joints from within Gazebo
ignition::gazebo::Entity sim_joint;

Expand Down Expand Up @@ -367,6 +370,9 @@ bool IgnitionSystem::initSim(
this->dataPtr->joints_[j].joint_velocity = initial_velocity;
}
}

// check if joint is actuated (has command interfaces) or passive
this->dataPtr->joints_[j].is_actuated = (joint_info.command_interfaces.size() > 0);
}

registerSensors(hardware_info);
Expand Down Expand Up @@ -631,8 +637,8 @@ hardware_interface::return_type IgnitionSystem::write(
*jointEffortCmd = ignition::gazebo::components::JointForceCmd(
{this->dataPtr->joints_[i].joint_effort_cmd});
}
} else {
// Fallback case is a velocity command of zero
} else if (this->dataPtr->joints_[i].is_actuated) {
// Fallback case is a velocity command of zero (only for actuated joints)
double target_vel = 0.0;
auto vel =
this->dataPtr->ecm->Component<ignition::gazebo::components::JointVelocityCmd>(
Expand Down

0 comments on commit ac77051

Please sign in to comment.