代码搜索:DSP FFT
找到约 10,000 项符合「DSP FFT」的源代码
代码结果 10,000
www.eeworm.com/read/165860/10048590
asm fft.asm
;/* ============================================================================*/
;/* Copyright (C) 2004 YINXING TECHNOLOGY CO., LTD */
;/* A
www.eeworm.com/read/165860/10048595
out fft.out
www.eeworm.com/read/165860/10048611
map fft.map
******************************************************************************
TMS320C54x COFF Linker PC Version 3.83
*******************************************************
www.eeworm.com/read/165860/10048625
pjt fft.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectName="fft"
ProjectDir="D:\xsdesk\GINGKGO\project\lectute0610\prj\fft\bios\"
ProjectType=Ex
www.eeworm.com/read/165860/10048631
dat fft.dat
1651 1 0 0 0
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0x2328
0x2328
0x2328
0x2328
0x2328
0x2328
0x2328
0x2328
0x2328
0x2328
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0x
www.eeworm.com/read/165860/10048638
paf fft.paf
www.eeworm.com/read/165860/10048647
asm fft.asm
;/* ============================================================================*/
;/* Copyright (C) 2004 YINXING TECHNOLOGY CO., LTD */
;/* A
www.eeworm.com/read/165860/10048649
pjt fft.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="F:\dsp\des320pp_u\fft\"
ProjectType=Executable
CPUFamily=TMS320C54XX
Tool="Compiler"
www.eeworm.com/read/165860/10048651
dat fft.dat
1651 1 0 0 0
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0x2328
0x2328
0x2328
0x2328
0x2328
0x2328
0x2328
0x2328
0x2328
0x2328
0xdcd8
0xdcd8
0xdcd8
0xdcd8
0x
www.eeworm.com/read/165830/10050392
m fft.m
function fft(X1);
N1=length(X1);
t=0;
while N1>1
N1=N1/2;
t=t+1;
end
N1=length(X1);
for n=1:N1
X(n)=X1(n);
end
if 2^t>N1
for n=N1+1:2^t
X(n)=0;
end
en