usbpdiusbd12debug.h

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

H
53
字号
/* usbPdiusbd12Debug.h - Defines the debug macros used by the PDIUSBD12 sub-modules *//* Copyright 2004 Wind River Systems, Inc. *//*Modification history--------------------01d,26oct04,ami  Debug Messages Changes01c,06oct04,ami  SPR #94684 Fix01b,19jul04,ami  Coding Convention Changes01a,18mar04,ami  First.*//*DESCRIPTIONDefines the debug macros which are used by the usbPdiusbd12 sub-modules*/#ifndef __INCusbPdiusbd12Debugh#define __INCusbPdiusbd12Debugh#ifdef	__cplusplusextern "C" {#endif/* includes */#include <logLib.h>extern void usbPeriLogMsg (char *,int,int,int,int,int,int);/* defines */#define USBPDIUSBD12_DEBUG_MSG        0x01    /* For Debuging Macros */#define USBPDIUSBD12_DEBUG_ERR        0x02    /* For Error Macros */#define USBPDIUSBD12_DEBUG                  \        if (usbPdiusbd12Debug & USBPDIUSBD12_DEBUG_MSG)  \            usbPeriLogMsg		/* debugging Macros */#define USBPDIUSBD12_ERROR                    \        if (usbPdiusbd12Debug & USBPDIUSBD12_DEBUG_ERR)  \            usbPeriLogMsg		/* error Macros */extern UINT32 usbPdiusbd12Debug;       /* Define the debugging flag */#ifdef	__cplusplus}#endif#endif	/* __INCusbPdiusbd12Debugh */

⌨️ 快捷键说明

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