AP_HAL_Linux: don't log on failed semaphore

With commit 24f4153 ("AP_HAL_Linux: RCOutput_PCA9685: group writes") a
log was introduced when we can't get the bus semaphore. However since we
are calling the non blocking method, failing there is not that unlikely
if the bus is shared. Return back to the previous behavior of not
logging.
This commit is contained in:
Lucas De Marchi 2015-10-27 14:52:41 -02:00 committed by Andrew Tridgell
parent 99b448d1bb
commit 6984168a45
1 changed files with 0 additions and 1 deletions

View File

@ -225,7 +225,6 @@ void RCOutput_PCA9685::push()
}
if (!_i2c_sem->take_nonblocking()) {
hal.console->printf("RCOutput: Unable to get bus semaphore");
return;
}