From ccbc7911e1c19de51c49af9d7b70d58b07ba9d19 Mon Sep 17 00:00:00 2001 From: Jon Petter Date: Wed, 30 Nov 2022 21:57:50 +0100 Subject: [PATCH] Fixed compile issue in r2c fft doc. --- inc/NE10_dsp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/NE10_dsp.h b/inc/NE10_dsp.h index e457ec35..c8215ec8 100644 --- a/inc/NE10_dsp.h +++ b/inc/NE10_dsp.h @@ -318,7 +318,7 @@ extern "C" { * * { * ne10_int32_t fftSize = 1024; - * ne10_fft_r2c_cfg_float32_t cfg = ne10_fft_alloc_r2c_float32_neon(fftSize); // Allocate a configuration structure for R2C/C2R FP32 NEON FFTs of size fftSize + * ne10_fft_r2c_cfg_float32_t cfg = ne10_fft_alloc_r2c_float32(fftSize); // Allocate a configuration structure for R2C/C2R FP32 FFTs of size fftSize * ne10_float32_t *in = malloc(fftSize * sizeof(ne10_float32_t)); // Allocate an input array of samples * ne10_fft_cpx_float32_t *out = malloc(fftSize * sizeof(ne10_fft_cpx_float32_t)); // Allocate an (oversized) output array of samples *