Skip to content

Commit

Permalink
[SoftErrorLimitter/robot.cpp] not set error limit to invalid jointId …
Browse files Browse the repository at this point in the history
…joints
  • Loading branch information
kindsenior committed Jun 11, 2022
1 parent c4d15d3 commit 11f748f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rtc/SoftErrorLimiter/robot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ bool robot::setServoErrorLimit(const char *i_jname, double i_limit) {
m_servoErrorLimit[i] = i_limit;
}
std::cerr << "[el] setServoErrorLimit " << i_limit << "[rad] for all joints" << std::endl;
}else if ((l = link(i_jname))){
}else if ((l = link(i_jname)) && (l->jointId > -1)){
m_servoErrorLimit[l->jointId] = i_limit;
std::cerr << "[el] setServoErrorLimit " << i_limit << "[rad] for " << i_jname << std::endl;
}else{
std::cerr << "[el] Invalid joint name of setServoErrorLimit " << i_jname << "!" << std::endl;
std::cerr << "[el] Invalid joint name of jointId of setServoErrorLimit name:" << i_jname << " jointId:" << l->jointId << "!" << std::endl;
return false;
}
return true;
Expand Down

0 comments on commit 11f748f

Please sign in to comment.