Skip to content

Commit 1fc47a5

Browse files
authored
Set verbose elective option in 2FOC group to zero by defualt (#964)
1 parent 9d8657e commit 1fc47a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libraries/icubmod/embObjMotionControl/eomcParser.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1467,9 +1467,9 @@ bool Parser::parseFocGroup(yarp::os::Searchable &config, eomc::focBasedSpecificI
14671467
if (!extractGroup(focGroup, xtmp, "Verbose", "Verbose 0/1 ", _njoints, false))
14681468
{
14691469
//return false;
1470-
yWarning() << "In " << _boardname << " there isn't " << groupName << ". Verbose filed. For default it is enabled" ;
1470+
yWarning() << "In " << _boardname << " there isn't " << groupName << ". Verbose failed. By default it is disabled" ;
14711471
for (i = 0; i < (unsigned)_njoints; i++)
1472-
foc_based_info[i].verbose = 1;
1472+
foc_based_info[i].verbose = 0;
14731473
}
14741474
else
14751475
{
@@ -1481,7 +1481,7 @@ bool Parser::parseFocGroup(yarp::os::Searchable &config, eomc::focBasedSpecificI
14811481
if (!extractGroup(focGroup, xtmp, "AutoCalibration", "AutoCalibration 0/1 ", _njoints, false))
14821482
{
14831483
//return false;
1484-
yWarning() << "In " << _boardname << " there isn't " << groupName << ". AutoCalibration filed. For default it is disabled" ;
1484+
yWarning() << "In " << _boardname << " there isn't " << groupName << ". AutoCalibration failed. By default it is disabled" ;
14851485
for (i = 0; i < (unsigned)_njoints; i++)
14861486
AutoCalibration[i] = 0;
14871487
}

0 commit comments

Comments
 (0)