debug.h
来自「基于arm嵌入式处理器的USB驱动代码及详细pdf中文手册」· C头文件 代码 · 共 54 行
H
54 行
/**************************************************************************************
*
* (c) 2004 ASIC,all rights reserved
*
*
*This source code and any compilation or derivative thereof
*is proprietary information and is confidential in nature.
*Under no circumstance is this software to be exposed or placed
*under an open source License of any type without expressed
*written permission of ASIC.
*
*filename: debug.h
*history:
*
* Version Date Author Comments
*------------------------------------------------------------------------------------
* 1.1 2004.5.18 xl Initial Creation
*
**************************************************************************************/
#define OS_LIB_DEBUG
#ifndef NUM_RAMDISK_PAGES
#define NUM_RAMDISK_PAGES 1280
#endif
#ifndef RAMDISK_PAGE_SIZE
#define RAMDISK_PAGE_SIZE 8
#endif
#ifndef _INT_TYPE_
#define _INT_TYPE_
typedef int INT; /* Signed integer (bit width of processor) */
#endif
typedef char INT8; /* 1 1 */
typedef unsigned char UINT8; /* 1 1 */
typedef signed short INT16; /* 2 2 */
typedef unsigned short UINT16; /* 2 2 */
typedef unsigned long UINT32;
#ifndef NULL
#define NULL ((void *)0)
#endif
#ifndef NO
#define NO 0
#endif
#ifndef YES
#define YES 1
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?