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