Transceiver52M: Change POWERON behavior to return success if the transceiver is already running, and only return fail on device

failure
This commit is contained in:
Ivan Kluchnikov 2015-04-23 17:08:27 +03:00 committed by Alexander Chemeris
parent 1fe5282133
commit 194a9b1982
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ bool Transceiver::start()
if (mOn) {
LOG(ERR) << "Transceiver already running";
return false;
return true;
}
LOG(NOTICE) << "Starting the transceiver";