usbtcdnet2280debug.h
来自「vxworks 6.x 的全部头文件」· C头文件 代码 · 共 56 行
H
56 行
/* usbTcdNET2280Debug.h - Debug macros for Net2280 TCD *//* Copyright 2004 Wind River Systems, Inc. *//*Modification history--------------------01e,26oct04,ami Debug Messages Changes01d,06oct04,ami SPR #94684 Fix01c,17sep04,ami Declaration of usbNET2280Debug flag moved01b,08sep04,ami Code Review Comments Incorporated01a,03sep04,gpd written*//*DESCRIPTIONThis file contains the macro definitions used for debugging theNetchip2280 TCD.*/#ifndef __INCusbTcdNET2280Debugh#define __INCusbTcdNET2280Debugh#ifdef __cplusplusextern "C" {#endif/* includes */#include <logLib.h>extern void usbPeriLogMsg (char *,int,int,int,int,int,int);/* defines */#define USBNET2280_DEBUG_MSG 0x01#define USBNET2280_DEBUG_ERR 0x02#define USB_NET2280_DEBUG \ if (usbNET2280Debug & USBNET2280_DEBUG_MSG) \ usbPeriLogMsg /* debugging Macros */#define USB_NET2280_ERROR \ if (usbNET2280Debug & USBNET2280_DEBUG_ERR) \ usbPeriLogMsg /* error Macros *//* Define the debugging flag */extern UINT32 usbNET2280Debug;#ifdef __cplusplus}#endif#endif /* __INCusbTcdNET2280Debugh */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?