diff options
Diffstat (limited to 'src/DabMod.cpp')
-rw-r--r-- | src/DabMod.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DabMod.cpp b/src/DabMod.cpp index 739fef1..b745271 100644 --- a/src/DabMod.cpp +++ b/src/DabMod.cpp @@ -424,7 +424,8 @@ int launch_modulator(int argc, char* argv[]) ModulatorData m; rcs.enrol(&m); - if (not mod_settings.fixedPoint) { + // Neither KISS FFT used for fixedpoint nor the FFT Accelerator used for DEXTER need planning. + if (not (mod_settings.fixedPoint or mod_settings.useDexterOutput)) { // This is mostly useful on ARM systems where FFTW planning takes some time. If we do it here // it will be done before the modulator starts up etiLog.level(debug) << "Running FFTW planning..."; |