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

BladeRF output: fixed sammple FIFO size for 32 and 64 (not implemented) interpolation

This commit is contained in:
f4exb 2017-08-09 22:59:46 +02:00
parent e452a0882c
commit 75079de55d

View File

@ -246,7 +246,7 @@ bool BladerfOutput::applySettings(const BladeRFOutputSettings& settings, bool fo
{ {
int fifoSize; int fifoSize;
if (settings.m_log2Interp == 5) if (settings.m_log2Interp >= 5)
{ {
fifoSize = DeviceBladeRFShared::m_sampleFifoMinSize32; fifoSize = DeviceBladeRFShared::m_sampleFifoMinSize32;
} }