📄 csl_previnit.c
字号:
/** @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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -