Some years ago I've already opened an issue with the request of const-qualifying parametrs for FFT functions as much as possible.
Some of them have been const-qualified with commit 89fa43d.
Other parameters could be const-qualified in the same way:
|
static void arm_cfft_radix8by2_f32 (arm_cfft_instance_f32 * S, float32_t * p1) |
to
static void arm_cfft_radix8by2_f32 (const arm_cfft_instance_f32 * S, float32_t * p1)
|
static void arm_cfft_radix8by4_f32 (arm_cfft_instance_f32 * S, float32_t * p1) |
to
static void arm_cfft_radix8by4_f32 (const arm_cfft_instance_f32 * S, float32_t * p1)
If @llefaucheur is interesed I can open a PR.
Some years ago I've already opened an issue with the request of const-qualifying parametrs for FFT functions as much as possible.
Some of them have been const-qualified with commit 89fa43d.
Other parameters could be const-qualified in the same way:
CMSIS-DSP/Source/TransformFunctions/arm_cfft_f32.c
Line 849 in 47a832f
to
CMSIS-DSP/Source/TransformFunctions/arm_cfft_f32.c
Line 963 in 47a832f
to
If @llefaucheur is interesed I can open a PR.