⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adaptive_filter_asm.h

📁 TMS320C5416算法程序包。其中包括FFT
💻 H
字号:
/*****************************************************************************/
/*                                                                           */
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -