代码搜索:DSP FFT
找到约 10,000 项符合「DSP FFT」的源代码
代码结果 10,000
www.eeworm.com/read/381088/9110492
h fft.h
#pragma once
#include
#ifdef PI
#undef PI
#endif
#define PI 3.1415926l
template class TCosFFT
{
public:
TCosFFT(int nAnalyzeSamples);
~TCosFFT(void);
void Com
www.eeworm.com/read/380937/9122030
c fft.c
#include
#include
#include
#define PI 3.14159265358979323846
struct COMPLEX
{
float re;
float im;
} cplx , * Hfield , * S , * R , * w;
www.eeworm.com/read/282024/9123653
mak fft.mak
/************* Code Composer V1 Project Data ********************
The following section contains data generated by Code Composer
to store project information like build options, source filenames
www.eeworm.com/read/282024/9123655
lst fft.lst
0001
0002 .globl FFT ; Entry point for execution
0003 .globl N ; FFT size
0004 .globl M ; LOG2(N)
0
www.eeworm.com/read/282024/9123658
map fft.map
www.eeworm.com/read/282024/9123675
cmd fft.cmd
-e start
MEMORY
{
/*WOM_1: origin = 000000h,length = 0C0h
WOM_2: origin = 0500h,length = 0F40h */
RAM_B0: origin = 0x00809800,length = 0x0400
}
SECTIONS
{ "vectors":{}>RAM_B0
www.eeworm.com/read/282024/9123679
asm fft.asm
.globl FFT ; Entry point for execution
.globl N ; FFT size
.globl M ; LOG2(N)
.globl SINE ; Address of sine table
.globl SINE
.globl N
www.eeworm.com/read/282024/9123680
obj fft.obj
www.eeworm.com/read/282024/9123698