📄 usbpdiusbd12debug.h
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -