usbisp1582debug.h

来自「vxworks 6.x 的全部头文件」· C头文件 代码 · 共 51 行

H
51
字号
/* usbIsp1582Debug.h - Defines the debug macros used by the ISP1582 sub-modules *//* Copyright 2004 Wind River Systems, Inc. *//*Modification history--------------------01d,26oct04,ami  Debug Messages Changes01c,06oct04,ami  SPR #94684 Fix01b,12jul04,ami  Coding Convention Changes01a,28apr04,ami  First.*//*DESCRIPTIONDefines the debug macros which are used by the usbPdiusbd12 sub-modules*/#ifndef __INCusbIsp1582Debugh#define __INCusbIsp1582Debugh#ifdef	__cplusplusextern "C" {#endif/* includes */#include <logLib.h>/* defines */#define USBISP1582_DEBUG_MSG        0x01   /* For Debugging Log Messages */#define USBISP1582_DEBUG_ERR        0x02   /* For Error Log Messages */extern void usbPeriLogMsg (char *,int,int,int,int,int,int);#define USBISP1582_DEBUG                  \        if (usbIsp1582Debug & USBISP1582_DEBUG_MSG)  \            usbPeriLogMsg		/* debugging Macros */#define USBISP1582_ERROR                    \        if (usbIsp1582Debug & USBISP1582_DEBUG_ERR)   \            usbPeriLogMsg		/* error macros */extern UINT32 usbIsp1582Debug;       /* Define the debugging flag */#ifdef	__cplusplus}#endif#endif	/* __INCusbIsp1582Debugh */

⌨️ 快捷键说明

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