From 7bb4b16d5011a798cd375aa6798effef29ac8c00 Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Thu, 21 Jan 2021 07:27:18 +0100 Subject: [PATCH] CMSIS-DSP: Correction to an f16 header include. --- Source/TransformFunctions/arm_bitreversal.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/TransformFunctions/arm_bitreversal.c b/Source/TransformFunctions/arm_bitreversal.c index 0ff7aa9c..2106850c 100644 --- a/Source/TransformFunctions/arm_bitreversal.c +++ b/Source/TransformFunctions/arm_bitreversal.c @@ -27,7 +27,6 @@ */ #include "dsp/transform_functions.h" -#include "dsp/transform_functions_f16.h" #include "arm_common_tables.h" /* @@ -40,6 +39,10 @@ */ #if !defined(__CC_ARM) && defined(ARM_FLOAT16_SUPPORTED) + +#include "dsp/transform_functions_f16.h" + + void arm_bitreversal_f16( float16_t * pSrc, uint16_t fftSize,