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

📄 vol_ti_ivolvt.c

📁 使用CCS信息DSP编程,适用于6713B的启动程序。
💻 C
字号:
/*
 *  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)" */
/*
 *  ======== vol_ti_ialgvt.c ========
 *  This file contains the function table definitions for the
 *  IALG and IVOL interfaces implemented by the VOL_TI module.
 */
#include <std.h>

#include <ialg.h>
#include "vol_ti.h"
#include "vol_ti_priv.h"

#define IALGFXNS \
    &VOL_TI_IALG,               /* module ID */                         \
    NULL,                       /* activate */                          \
    VOL_TI_alloc,               /* alloc */                             \
    NULL,                       /* deactivate */                        \
    NULL,                       /* control (NULL => no control ops) */  \
    VOL_TI_free,                /* free */                              \
    VOL_TI_initObj,             /* init */                              \
    VOL_TI_moved,               /* moved */                             \
    NULL                        /* numAlloc (NULL => IALG_MAXMEMRECS) */

/*
 *  ======== VOL_TI_IVOL ========
 *  This structure defines TI's implementation of the IVOL interface
 *  for the VOL_TI module.
 */
IVOL_Fxns VOL_TI_IVOL = {       /* module_vendor_interface */
    IALGFXNS,                   /* IALG functions */
    VOL_TI_amplify,             /* The vol fxn */
    VOL_TI_control,             /* Control function */
};

/* Overlay v-tables to save data space */
asm("_VOL_TI_IALG  .set _VOL_TI_IVOL");

⌨️ 快捷键说明

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