_csl_psctemplate.c

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

C
36
字号
/** @file _csl_pscDspLocalReset.c
 *
 *  @brief    File for functional layer of CSL API @a CSL_ccdcEnable()
 *
 *  Description
 *    - The @a CSL_ccdcEnable() function definition & it's associated
 *      functions
 *
 *  @date 27-May-2005
 *  @author Lawrence Ronk
 */

#include <csl_pscAux.h>

#pragma CODE_SECTION (CSL_pscMdEnableAll, ".text:csl_section:psc");

/** @brief Power on DSP from start-to-finish (no intervention)
 *	
 */
CSL_Status  CSL_pscMdEnableAll(
    /** Pointer to the object that holds reference to the
     *  instance of PSC requested after the call 
	 */
    CSL_PscHandle                         hPsc
	){

  CSL_PscRegsOvly pscRegs = hPsc->regs;





  return (CSL_SOK);
}

⌨️ 快捷键说明

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