⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tmwtypes.h

📁 一个MATLAB的应用程序
💻 H
字号:
/*-------------------------------------------------------------------*
 * Matlab datatype conversion for Texas Instruments(tm) DSP processors
 *-------------------------------------------------------------------*/
/*Copyright 2001-2002 The MathWorks, Inc.
 * $Revision: 1.5 $ $Date: 2002/06/12 15:31:01 $ */
#ifdef _TMS320C6X	
typedef unsigned char  uint8;
typedef unsigned short uint16;
typedef unsigned int   uint32;
typedef char           int8;
typedef short          int16;
typedef int            int32;
typedef float          single;
#elif _TMS320C5XX
typedef unsigned short uint16;
typedef unsigned long  uint32;
typedef short          int16;
typedef long           int32;
typedef float          single;
#endif
 /*-------------------------------------------------------------------*
  * Define a boolean type
  *-------------------------------------------------------------------*/
typedef enum {NO=0,YES} bool;

⌨️ 快捷键说明

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