qipp
2025-11-07 744722688187eb4991c72464e2bb5e06b244fee7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _FFT_DRV_H__
#define _FFT_DRV_H__
 
#define N 2048
#define V 32
#define H 64
 
//#define N 128
//#define V 8
//#define H 16
 
void fft_config(bool repeat,int _sig);
 
void fft_startup(int input_address,int out_address);
 
void fft_coeff_calculation(void);
#endif