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

📄 csl_h3ahwsetup.c

📁 TI达芬奇dm644x各硬件模块测试代码
💻 C
字号:

/** @file csl_h3aHwSetup.c
 *
 *  @brief    File for functional layer of CSL API @a CSL_h3aHwSetup()
 *
 *  Description
 *    - The @a CSL_h3aHwSetup() function definition & it's associated
 *      functions
 *
 *  Modification 1
 *    - Modified on: 10/18/2004
 *    - Reason: created the sources
 *
 *  @date 18th Oct, 2004
 *  @author Sandeep Tiwari.
 */


#include<csl_h3a.h>

#pragma CODE_SECTION  (CSL_h3aHwSetup, ".text:csl_section:h3a");

/** @brief Configures the H3A using the values passed in through the
 *  setup structure. 
 */


CSL_Status  CSL_h3aHwSetup(
	/** Pointer to the object that holds reference to the
	 *  instance of H3A requested after the call 
	 */
	CSL_H3aHandle       hH3a,
	/** Pointer to setup structure which contains the
	 *  information to program H3A to a useful state 
	 */
	CSL_H3aHwSetup      *setup
	){

	CSL_Status   status=CSL_SOK;

    if(setup == NULL) return (CSL_ESYS_INVPARAMS);

	CSL_h3aSetAfConfig(hH3a, setup->afConfig);
	CSL_h3aSetAewbConfig(hH3a, setup->aewbConfig);

	return  status;  

  }

   

⌨️ 快捷键说明

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