csl_osdclose.c
来自「TI达芬奇dm644x各硬件模块测试代码」· C语言 代码 · 共 38 行
C
38 行
/** @file csl_osdClose.c
*
* @brief File for functional layer of CSL API @a CSL_osdClose()
*
* Description
* - The @a CSL_osdClose() function definition & it's associated functions
*
* Modification 1
* - Created on: 1/10/2004
* - Reason: created the sources
*
* @date 5th OCT, 2004
* @author Sandeep Tiwari.
*/
#include<csl_osd.h>
#include<_csl_resource.h>
#pragma CODE_SECTION (CSL_osdClose, ".text:csl_section:osd");
/** @brief Unreserves the VFOC identified by the handle.
*/
CSL_Status CSL_osdClose(
/** Pointer to the object that holds reference to the
* instance of OSD requested after the call
*/
CSL_OsdHandle hOsd
) {
/* Indicate in the CSL global data structure that the peripheral
* has been unreserved */
return (_CSL_certifyClose((CSL_ResHandle)hOsd));
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?