fft.h
来自「512点FFT在Microchip dsPIC33FJ256GP710 上的实现」· C头文件 代码 · 共 13 行
H
13 行
#define FFT_BLOCK_LENGTH 512 /* = Number of frequency points in the FFT */
#define LOG2_BLOCK_LENGTH 9 /* = Number of "Butterfly" Stages in FFT processing */
#define SAMPLING_RATE 25600 /* = Rate at which input signal was sampled */
/* SAMPLING_RATE is used to calculate the frequency*/
/* of the largest element in the FFT output vector*/
#define FFTTWIDCOEFFS_IN_PROGMEM /*<---Comment out this line of the code if twiddle factors (coefficients) */
/*reside in data memory (RAM) as opposed to Program Memory */
/*Then remove the call to "TwidFactorInit()" and add the twiddle factor*/
/*coefficient file into your Project. An example file for a 256-pt FFT*/
/*is provided in this Code example */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?