代码搜索:如何学习 Fir?
找到约 10,000 项符合「如何学习 Fir?」的源代码
代码结果 10,000
www.eeworm.com/read/282556/9083794
sln fir.sln
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FIR", "FIR.vcproj", "{F12F62AE-6534-4967-A239-D1695F41A691}"
ProjectSection(ProjectDe
www.eeworm.com/read/282556/9083800
dsw fir.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/282556/9083802
h fir.h
// FIR.h : PROJECT_NAME 应用程序的主头文件
//
#pragma once
#ifndef __AFXWIN_H__
#error 在包含用于 PCH 的此文件之前包含“stdafx.h”
#endif
#include "resource.h" // 主符号
// CFIRApp:
// 有关此类的实现,请参阅 FIR.cpp
/
www.eeworm.com/read/282556/9083806
opt fir.opt
www.eeworm.com/read/282556/9083809
cpp fir.cpp
// FIR.cpp : 定义应用程序的类行为。
//
#include "stdafx.h"
#include "FIR.h"
#include "FIRDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CFIRApp
BEGIN_MESSAGE_MAP(CFIRApp, CWinApp)
ON_C
www.eeworm.com/read/282556/9083811
dsp fir.dsp
# Microsoft Developer Studio Project File - Name="FIR" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Conso
www.eeworm.com/read/282428/9094918
out fir.out
www.eeworm.com/read/282428/9094923
pjt fir.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="C:\ti\myprojects\Fir\"
ProjectType=Executable
CPUFamily=TMS320C67XX
Tool="Compiler"
www.eeworm.com/read/282428/9094924
c fir.c
//Fir.c FIR filter. Include coefficient file with length N
#include "bs2700.cof" //coefficient file BS @ 2700Hz
int yn = 0; //initialize filter's output
short dly[N];
www.eeworm.com/read/282423/9095636