adaptive_filter_asm.h
来自「TMS320C5416算法程序包。其中包括FFT」· C头文件 代码 · 共 42 行
H
42 行
/*****************************************************************************/
/* */
/* FILENAME */
/* adaptive_filter_asm.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. Assembly language implementation. */
/* */
/* REVISION */
/* Revision: 1.00 */
/* Author : Richard Sikora */
/*---------------------------------------------------------------------------*/
/* */
/* HISTORY */
/* Revision 1.00 */
/* 12th November. Created by Richard Sikora based on adaptive.c */
/* */
/*****************************************************************************/
#ifndef ADAPTIVE_FILTER_ASM_H
#define ADAPTIVE_FILTER_ASM_H
void adaptive_filters_asm_initialise( void );
signed long adaptive_filter_asm_1 ( signed int desired, signed int input );
signed long adaptive_filter_asm_2 ( signed int desired, signed int input );
#endif
/*****************************************************************************/
/* End of adaptive_filter_asm.h */
/*****************************************************************************/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?