From d3170304e173355a7308e129eb646d191cda683f Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Wed, 17 Jul 2019 08:35:46 +0100 Subject: [PATCH] CMSIS-DSP:Added missing compilation flags to arm_rfft_fast_init_f32.c --- Source/TransformFunctions/arm_rfft_fast_init_f32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/TransformFunctions/arm_rfft_fast_init_f32.c b/Source/TransformFunctions/arm_rfft_fast_init_f32.c index 58fbfdba..de373b1d 100644 --- a/Source/TransformFunctions/arm_rfft_fast_init_f32.c +++ b/Source/TransformFunctions/arm_rfft_fast_init_f32.c @@ -315,7 +315,7 @@ arm_status arm_rfft_fast_init_f32( fptr = arm_rfft_256_fast_init_f32; break; #endif -#if (defined(ARM_TABLE_TWIDDLECOEF_F32_64) && defined(ARM_TABLE_BITREVIDX_FLT_64) && defined(ARM_TABLE_TWIDDLECOEF_F32_64) && defined(ARM_TABLE_TWIDDLECOEF_RFFT_F32_128)) +#if !defined(ARM_DSP_CONFIG_TABLES) || defined(ARM_ALL_FFT_TABLES) || (defined(ARM_TABLE_TWIDDLECOEF_F32_64) && defined(ARM_TABLE_BITREVIDX_FLT_64) && defined(ARM_TABLE_TWIDDLECOEF_F32_64) && defined(ARM_TABLE_TWIDDLECOEF_RFFT_F32_128)) case 128U: fptr = arm_rfft_128_fast_init_f32; break;