?? firbpf.h
字號:
#ifndef FIRBPF_H
#define FIRBPF_H
extern FIRFilterStructure firBPFFilter;
#endif /* FIRBPF_H */
/* The following C-code fragment demonstrates how to call the filter routine
#include "FIR_Filter.h"
#include "firBPF.h"
// NUM_SAMPLES defines the number of samples in one block of input data.
// This value should be changed as needed for the application
#define NUM_SAMPLES 100
{
// Declare input and output sample arrays.
int inSamples[NUM_SAMPLES], outSamples[NUM_SAMPLES];
// Call the FIRFilterInit routine to zero out the delay line
FIRFilterInit( &firBPFFilter );
// Call BlockFIRFilter for each block of input samples
// This routine would normally be called inside a FOR or a DO-WHILE loop
// Only one instance has been shown
BlockFIRFilter( &firBPFFilter, &inSamples, &outSamples, NUM_SAMPLES );
}
*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -