1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| #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 );
|
| void fft_monitor(void);
|
| #endif
|
|