csl_h3ainit.c

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

C
47
字号
/** @file csl_h3aInit.c
 *
 *    @brief    File for functional layer of CSL API @a CSL_h3aInit()
 *
 *  Description
 *    - The @a CSL_h3aInit() function definition & it's associated functions
 *
 *  Modification 1
 *    - Modified on: 11/21/2004
 *    - Reason: created the sources
 *
 *  @date 21st Nov, 2004
 *  @author Santosh Narayanan.
 */

#include <csl_h3a.h>

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

/** @brief This function is idempotent in that calling it many times is same as
 *  calling it once. This function initializes the CSL data structures, and doesn't
 *  affect the H/W.
 *
 *  <b> Usage Constraints: </b>
 *  CSL system initialization must be successfully completed by invoking
 *  @a CSL_sysInit() before calling this function. This function should be
 *  called before using any of the CSL APIs
 *
 *  @b Example:
 *  @verbatim
 *   ...
 *   if (CSL_sysInit() == CSL_SOK) {
 *      CSL_h3aInit();
 *   }
 *  @endverbatim
 *
 *  @return returns the status of the operation
 *
 */
CSL_Status  CSL_h3aInit(
    void
	){

    return CSL_SOK;
}

⌨️ 快捷键说明

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