usrwdbdsp.c
来自「IXP425的BSP代码」· C语言 代码 · 共 37 行
C
37 行
/* usrWdbDsp.c - optional DSP support for the WDB agent *//* Copyright 1997-2000 Wind River Systems, Inc. *//*modification history--------------------01a,16nov00,zl written based on usrWdbFpp.c*//*DESCRIPTIONThis library configures the WDB agent's DSP unit support.*/extern void wdbTgtHasDspSet(void);/******************************************************************************** wdbDspInit - initialize DSP support*/void wdbDspInit (void) { /* no DSP unit - just return */ if (dspProbe() == ERROR) return; /* mark DSP unit as available */ wdbTgtHasDspSet(); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?