📄 adaptive_filter.h
字号:
/*****************************************************************************/
/* */
/* FILENAME */
/* adaptive.h */
/* */
/* DESCRIPTION */
/* Using an adaptive filter to identify a waveform from the analog to */
/* digital converter (ADC) and compare it with a reference waverform */
/* generated from a table. */
/* */
/* REVISION */
/* Revision: 1.00 */
/* Author : Richard Sikora */
/*---------------------------------------------------------------------------*/
/* */
/* HISTORY */
/* Revision 1.00 */
/* 2nd Octover 2002. Created by Richard Sikora. */
/* */
/*****************************************************************************/
#ifndef ADAPTIVE_H
#define ADAPTIVE_H
void adaptive_filter_initialize(void);
signed long adaptive_filter ( signed int desired, signed int input);
#endif
/*****************************************************************************/
/* End of adaptive.h */
/*****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -