Skip to content

Commit

Permalink
Updated icub_firmware_version to 1.41.2
Browse files Browse the repository at this point in the history
lugre.Km = -1 if lugre group not found
  • Loading branch information
ale-git committed Dec 24, 2024
1 parent f927489 commit f1dc2ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conf/iCubFindDependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ checkandset_dependency(IPOPT)
checkandset_dependency(OpenCV)
checkandset_dependency(Qt5)

set(MINIMUM_REQUIRED_icub_firmware_shared_VERSION 1.41.1)
set(MINIMUM_REQUIRED_icub_firmware_shared_VERSION 1.41.2)

if(icub_firmware_shared_FOUND AND ICUB_USE_icub_firmware_shared)
if(icub_firmware_shared_VERSION VERSION_LESS ${MINIMUM_REQUIRED_icub_firmware_shared_VERSION})
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/icubmod/embObjMotionControl/eomcParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2484,7 +2484,7 @@ bool Parser::parseLugreGroup(yarp::os::Searchable &config,std::vector<lugreParam
{
for (int j = 0; j<_njoints; ++j)
{
lugre[j].Km = 1.0;
lugre[j].Km = -1.0;
}

yWarning() <<"embObjMC BOARD " << _boardname << "fromConfig(): Warning: no LUGRE group found in config file, returning";
Expand Down

0 comments on commit f1dc2ce

Please sign in to comment.