usrwdbsysdsp.c
来自「IXP425的BSP代码」· C语言 代码 · 共 42 行
C
42 行
/* usrWdbTaskDsp.c - optional DSP support for the extern WDB agent *//* Copyright 1998-2000 Wind River Systems, Inc. *//*modification history--------------------01a,16nov00,zl written based on usrWdbSysFpp.c*//*DESCRIPTIONThis library configures the external WDB agent's DSP support.*//* externals */extern BOOL wdbIsInitialized;/******************************************************************************** wdbSysDspInit - initialize DSP support** This routine initializes DSP support for the external WDB agent.** NOMANUAL*/void wdbSysDspInit (void) { WDB_REG_SET_OBJ * pDspRegs; /* install system mode agent hook for the DSP unit */ if (wdbTgtHasDsp() && wdbIsInitialized) { pDspRegs = wdbDspLibInit(); wdbExternRegSetObjAdd (pDspRegs); } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?