LimeSDR: return true when NCO disabling is successful

This commit is contained in:
f4exb 2017-04-22 10:54:19 +02:00
parent 9f4eeda7c9
commit 2d072e1dd9
1 changed files with 5 additions and 0 deletions

View File

@ -65,6 +65,11 @@ bool DeviceLimeSDR::setNCOFrequency(lms_device_t *device, bool dir_tx, std::size
fprintf(stderr, "DeviceLimeSDR::setNCOFrequency: cannot disable NCO\n");
return false;
}
else
{
fprintf(stderr, "DeviceLimeSDR::setNCOFrequency: NCO disabled\n");
return true;
}
}
}