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