dmctype.h

来自「TI公司28XDSP控制永磁同步电机(PMSM)」· C头文件 代码 · 共 32 行

H
32
字号
/* =================================================================================
File name:        DMCTYPE.H                    
                    
Originator:	Digital Control Systems Group
			Texas Instruments

Description: DMC data type definition file.
=====================================================================================
 History:
-------------------------------------------------------------------------------------
 04-15-2005	Version 3.20                                               
------------------------------------------------------------------------------*/
 
#ifndef DMCTYPE
#define DMCTYPE

//---------------------------------------------------------------------------
// For Portability, User Is Recommended To Use Following Data Type Size
// Definitions For 16-bit and 32-Bit Signed/Unsigned Integers:
//

typedef int             int16;
typedef long            int32;
typedef unsigned int    Uint16;
typedef unsigned long   Uint32;
typedef float           float32;
typedef long double     float64;


#endif  // DMCTYPE

⌨️ 快捷键说明

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