csl_previnit.c

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

C
39
字号
/** @file csl_prevInit.c
 *
 *    @brief    File for functional layer of CSL API @a CSL_prevInit()
 *
 *  Description
 *    - The @a CSL_prevInit() function definition & it's associated functions
 *
 *  @date 18th October, 2004
 *  @author Vignesh LA.
 */

#include <csl_prev.h>

#pragma CODE_SECTION (CSL_prevInit, ".text:csl_section:prev");

/** @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>
 *	This function should be called before using any of the CSL APIs
 *
 *  @b Example:
 *  @verbatim
 *   ...
 *      CSL_prevInit();
 *  @endverbatim
 *
 *  @return returns the status of the operation
 *
 */
CSL_Status  CSL_prevInit(
    void
	){

    return CSL_SOK;
}

⌨️ 快捷键说明

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