1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

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

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;
}
}
}