bbu_dd_stdinc.h

来自「DSP芯片自检测程序」· C头文件 代码 · 共 47 行

H
47
字号
/*******************************************************************************
* COPYRIGHT (C)             中国普天研究院		                    	       *
********************************************************************************
* 源文件名: BBU_DD_Stdinc.h                                                    *
* 功能描述:Type Definitions in TMS320C6414 and TMS320C6416                    *
* 编写者:louyajun                                                             *
* 版本:1.0.0                                                                  *
* 编制日期:07/16/2004                                                         *
* 说明:                                                                       *
* 修改历史:                                                                   *
*                                                                              *
*******************************************************************************/

#ifndef _BBU_DD_STDINC_H_
#define _BBU_DD_STDINC_H_

/******************************************************************************\
* Type Definition in TMS320C6414 and TMS320C6416  
\******************************************************************************/
typedef unsigned char               Uint8;
typedef char    			        Sint8;
typedef unsigned short              Uint16;
typedef short int  			        Sint16;
typedef unsigned int                Uint32;
typedef int                         Sint32;
typedef unsigned long               Uint40;
typedef long int           	        Sint40;

/******************************************************************************\
* macro declarations 
\******************************************************************************/
/* a few standard constants */
#define TRUE                        1
#define FALSE                       0

/* Invalid Pointer */
#define INV                         ((void*)(-1))

/* override fuinction type */ 
#define IDECL                       static inline
#define CSLAPI                      extern far

#endif /* _BBU_DD_STDINC_H_ */
/******************************************************************************\
* End of BBU_DD_Stdinc.h
\******************************************************************************/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?