代码搜索:如何学习 Fir?
找到约 10,000 项符合「如何学习 Fir?」的源代码
代码结果 10,000
www.eeworm.com/read/462671/7198345
pjt fir.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="c:\icetek-vc5416-edulab\lab0501-FIR\"
ProjectType=Executable
CPUFamily=TMS320C54XX
T
www.eeworm.com/read/462671/7198349
paf fir.paf
www.eeworm.com/read/462671/7198350
cmd fir.cmd
-w
-stack 400h
-heap 100
-l rts.lib
MEMORY
{
PAGE 0:
VECT : o=80h,l=80h
PRAM : o=100h,l=1f00h
PAGE 1:
DRAM : o=2000h,l=1000h
}
SECTIONS
{
.text : {}> PRAM
www.eeworm.com/read/462671/7198351
wks fir.wks
www.eeworm.com/read/462671/7198352
map fir.map
******************************************************************************
TMS320C54x COFF Linker PC Version 3.83
*******************************************************
www.eeworm.com/read/462671/7198353
out fir.out
www.eeworm.com/read/462671/7198354
obj fir.obj
www.eeworm.com/read/462671/7198355
c fir.c
/////////////////////////////////////////////////
// Example For ICETEK-VC5416-EDU //
// CTR Version : V4 //
// Filename: Fir.c
www.eeworm.com/read/462503/7200871
m fir.m
f11=50; %/Hz
f12=350; %/Hz
fs=1000; %/采样Hz
N=100 %数据个数
T=1/fs; %采样周期
n=0:N;
x11=sin(2*pi*f11*n*T);
x12=0.7*sin(2*pi*f12*n*T);
x_base=(x11+x12);
%待滤波信号波形
figure(1)
plot(x_
www.eeworm.com/read/462503/7200872
cmd fir.cmd
MEMORY
{
PAGE 0:
ROM: org=0x2000, len=0x0f00
VEC: org=0xff80, len=0x0080
PAGE 1:
SPRAM: org=0x0060, len=0x0020
DARAM: org=0x0100, len=0x2000
}
SECTIONS
{
.text :> ROM PAGE 0