qipp
2025-11-07 744722688187eb4991c72464e2bb5e06b244fee7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _FFT_H__
#define _FFT_H__
 
 
 
typedef void (*fn_fft_completely)(void* handle ,const float* output);
 
void fft_init(void);
 
void fft_start(void);
 
 float* fft_channel_inptr(void);
 float* fft_channel_outptr(void);
void fft_reset(void );
 
#endif