?? csl_stdinc.h
字號(hào):
/******************************************************************************\* Copyright (C) 1999-2000 Texas Instruments Incorporated.* All Rights Reserved*------------------------------------------------------------------------------* FILENAME...... csl_stdinc.h* DATE CREATED.. 03/11/1999 * LAST MODIFIED. 10/03/2000* 01/06/2005 Added _TI_STD_TYPES directive to protect * multiple definition of datatypes.\******************************************************************************/#ifndef _CSL_STDINC_H_#define _CSL_STDINC_H_#include <csl_stdinchal.h>/******************************************************************************\* macro declarations\******************************************************************************//* a few standard constants */#ifndef TRUE #define TRUE 1#endif#ifndef FALSE #define FALSE 0#endif/* Invalid Pointer *//* In many instances, it is better to use INV as opposed to NULL *//* because 0 may actually be a valid pointer */#ifndef INV #define INV ((void*)(-1))#endif#ifndef UNREFERENCED_PARAMETER #define UNREFERENCED_PARAMETER(P) ((P)=(P))#endif#ifndef REG32 #define REG32(addr) (*(volatile unsigned int*)(addr)) #define REG16(addr) (*(volatile unsigned short*)(addr)) #define REG8(addr) (*(volatile unsigned char*)(addr))#endif/******************************************************************************\* typedef declarations\******************************************************************************/#include <tistdtypes.h> /* use typedefs provided with CCS*//******************************************************************************\* variable declarations\******************************************************************************/ typedef long Int40; typedef unsigned long Uint40;/******************************************************************************\* function declarations\******************************************************************************/#endif /* _CSL_STDINC_H_ *//******************************************************************************\* End of csl_stdinc.h\******************************************************************************/
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -