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

📄 csl_vencinit.c

📁 TI达芬奇dm644x各硬件模块测试代码
💻 C
字号:
/** @file csl_vencInit.c * *    @brief    File for functional layer of CSL API @a CSL_vencInit() * *  Description *    - The @a CSL_vencInit() function definition & it's associated functions * *  Modification 1 *    - Modified on: 10/4/2004 *    - Reason: created the sources * *  @date 4th October, 2004 *  @author Santosh Narayanan. */#include <csl_venc.h>#pragma CODE_SECTION (CSL_vencInit, ".text:csl_section:venc");/** @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_vencInit(); *   } *  @endverbatim * *  @return returns the status of the operation * */CSL_Status  CSL_vencInit(    void	){    return CSL_SOK;}

⌨️ 快捷键说明

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