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

📄 algmin.h

📁 MSP430与DSP接口技术3 编辑环境C语言,未试过,仅供参考
💻 H
字号:
/*
 *  Copyright 2003 by Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
 *  
 */
/* "@(#) ReferenceFrameworks 2.20.00.08 07-18-03 (swat-f02)" */
/*
 *  ======== algmin.h ========
 */
#ifndef ALGMIN_
#define ALGMIN_

#include <std.h>

#include <ialg.h>

#ifdef __cplusplus
extern "C" {
#endif


/* Maximum number of memTab descriptors returned by an algorithm */
#define ALGMIN_MAXMEMRECS      16


/* Instantiate a 'static' XDAIS algorithm */
extern IALG_Handle ALGMIN_new(IALG_Fxns *fxns, IALG_Params *params, 
        Char *algChanBufs[], SmUns numAlgChanBufs);

/* Initialize scratch memory buffers before processing */
extern Void ALGMIN_activate(IALG_Handle alg);

/* Save all persistent data to non-scratch memory */    
extern Void ALGMIN_deactivate(IALG_Handle alg);
  
/* ALGMIN Module Initialization */
extern Void ALGMIN_init(Void);

/* ALGMIN Module Finalization */
extern Void ALGMIN_exit(Void);


#ifdef __cplusplus
}
#endif /* extern "C" */

#endif  /* ALGMIN_ */



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -