?? decimation.h
字號:
//
// Project: Experiment 4.5.7 Sample Rate Convertor using FIR filter - Chapter 4
// File name: decimation.h
//
// Description: This is the header file for the decimation FIR filter
//
// For the book "Real Time Digital Signal Processing:
// Implementation and Application, 2nd Ed"
// By Sen M. Kuo, Bob H. Lee, and Wenshun Tian
// Publisher: John Wiley and Sons, Ltd
//
// Tools used: CCS v.2.12.07
// TMS320VC5510 DSK Rev-C
//
#define TAPS96to32 213
#define DEC_NUM_DATA_IN (80*6)
#define DEC_NUM_DATA_OUT (80*2)
void _decimator(short *x, short blkSize,
short *h, short order,
short *y,
short *w, short *index,
short dec);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -