csl_vpbehwsetup.c

来自「TI达芬奇dm644x各硬件模块测试代码」· C语言 代码 · 共 43 行

C
43
字号
/*   ==========================================================================
 *   Copyright (c) Texas Instruments Inc , 2004
 *
 *   Use of this software is controlled by the terms and conditions found
 *   in the license agreement under which this software has been supplied
 *   priovided
 *   ==========================================================================
*/
/** @file CSL_vpbeHwSetup.c
 *
 *  @brief    File for functional layer of CSL API @a CSL_vpbeHwSetup()
 *
 *  Description
 *   - The @a CSL_vpbeHwSetup() function definition & it's associated functions
 *
 *  @date 11th October, 2004
 *  @author Santosh Narayanan
 */

#include <csl_vpbe.h>

#pragma CODE_SECTION (CSL_vpbeHwSetup, ".text:csl_section:vpbe");

/**

    \brief Setup VPBE module for operation

    \param hVpbe  Pointer to the object that holds reference to the instance
                 of VPBE requested
    \param setup  Pointer to setup structure which contains the information 
                  to program VPBE to a useful state		  
    \return if success, \c CSL_SOK, else error code 

    \see 
*/

CSL_Status CSL_vpbeHwSetup ( CSL_VpbeHandle hVpbe,
                             CSL_VpbeHwSetup *setup ) {
                             
  
  return CSL_SOK;
}

⌨️ 快捷键说明

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