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

📄 lec_ti.h

📁 DSP 基于 TMS320C6711 DSK 的功能演示程序
💻 H
字号:
/*
 *  Copyright 2001 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.
 *  U.S. Patent Nos. 5,283,900  5,392,448
 */
/* "@(#) XDAS 2.12 05-21-01 (__imports)" */
/*
 *  ======== lec_ti.h ========
 *  Vendor specific (TI) interface header for LEC algorithm.
 *
 *  Applications that use this interface enjoy type safety and
 *  and minimal overhead at the expense of being tied to a
 *  particular LEC implementation.
 *
 *  This header only contains declarations that are specific
 *  to this implementation.  Thus, applications that do not
 *  want to be tied to a particular implementation should never
 *  include this header (i.e., it should never directly
 *  reference anything defined in this header.)
 */
#ifndef LEC_TI_
#define LEC_TI_

#include <ilec.h>
#include <ilec_ti.h>

/*
 *  ======== LEC_TI_Handle ========
 *  This handle is used to reference a TI-extended LEC instance object.
 */
typedef struct ILEC_TI_Obj *LEC_TI_Handle;

/*
 *  ======== LEC_TI_Params ========
 *  TI-extended LEC instance object creation parameters.
 */
typedef ILEC_TI_Params LEC_TI_Params;

/*
 *  ======== LEC_TI_PARAMS ========
 *  Default TI-extended LEC instance object creation parameters.
 */
#define LEC_TI_PARAMS ILEC_TI_PARAMS

/*
 *  ======== LEC_TI_Status ========
 *  TI-extended LEC control/status structure.
 */
typedef ILEC_TI_Status LEC_TI_Status;

/* TI's implementation of LEC's IALG interface */
extern IALG_Fxns LEC_TI_IALG; 

/* TI's implementation of LEC's ILEC interface */
extern ILEC_Fxns LEC_TI_ILEC; 

#endif  /* LEC_TI_ */

⌨️ 快捷键说明

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