Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
fft128c.c
Package: TMS320F2812-FFT.rar [view]
Upload User: xxthzd
Upload Date: 2013-07-18
Package Size: 24k
Code Size: 2k
Category:
DSP program
Development Platform:
C++ Builder
- /* ==============================================================================
- System Name: Real FFT - Software Test Bench (STB)
- File Name: FFTRD.C
- Description: Primary System file for demonstrating the Real FFT module
- Originator: Advanced Embeeded Control (AEC) - Texas Instruments
- Target dependency: x28x
- Description:
- ============
- */
- #include "DSP281x_Device.h"
- #include "fft.h"
- #include "const.h"
- #define N_FFT 8
- /* Create an Instance of FFT module */
- #define N 128
- #pragma DATA_SECTION(ipcb, "FFTipcb");
- #pragma DATA_SECTION(mag, "FFTmag");
- CFFT32 fft=CFFT32_128P_DEFAULTS;
- long ipcb[N_FFT][2*N];
- long mag[N_FFT][N];
- /* Define window Co-efficient Array and place the
- .constant section in ROM memory */
- const long win[N/2]=HAMMING128;
- Uint16 fftflag=0; //FFT转换启动标志:0不启动;1:启动
- extern Uint16 SampleTable[N_SAMPLE+1][N_ANALOG];
- void fft_data()
- {
- Uint16 i,j;
- if (fftflag==0)
- {
- for (i=0;i<N_FFT;i++)
- for (j=0;j<N;j++)
- {
- ipcb[i][2*j]=((unsigned long)SampleTable[j][2*i])<<16;
- }
- fftflag=1;
- }
- }
- void fft_subroutine()
- {
- Uint16 i;
- if (fftflag==1) // If the samples are acquired
- {
- for (i=0;i<N_FFT;i++)
- {
- /* Initialize FFT module */
- fft.ipcbptr=&ipcb[i][0];
- fft.magptr=&mag[i][0];
- fft.winptr=(long *)win;
- fft.init(&fft);
- {
- CFFT32_brev2(&ipcb[i][0],&ipcb[i][0],N);
- // CFFT32_brev2(&ipcb[i][0],&ipcb[i][0],N); // Input samples in Real Part
- /* fft.win(&fft);
- CFFT32_brev2(ipcb,ipcb,N);
- CFFT32_brev2(ipcb,ipcb,N); // Input after windowing
- */
- fft.izero(&fft);
- fft.calc(&fft);
- fft.mag(&fft);
- }
- }
- fftflag=0; // Enable the next acquisition
- GpioDataRegs.GPATOGGLE.bit.GPIOA15=1;
- }
- }