fsltypes_file.h

来自「利用FREESCALE的MCU 内嵌USB接口--usb设备开发设计方案调试软件」· C头文件 代码 · 共 30 行

H
30
字号
/**
  Copyright (c) 2006 Freescale Semiconductor
  Freescale Confidential Proprietary
  \file       FslTypes.h	
  \brief    	Standard type definition as defined by the C coding Standard.
  \author   	Freescale Semiconductor
  \author
  \author   	Guadalajara Applications Laboratory RTAC Americas
  \version    1.0
  \date     	3/Nov/2006
  \warning 

  * History:
  
*/
/*****************************************************************************/

#ifndef __FslTypes
#define __FslTypes

typedef unsigned char  UINT8;       /* unsigned 8 bit definition */
typedef unsigned short UINT16;      /* unsigned 16 bit definition*/
typedef unsigned long  UINT32;      /* unsigned 32 bit definition*/
typedef signed char    INT8;        /* signed 8 bit definition   */
typedef short          INT16;       /* signed 16 bit definition  */
typedef long int       INT32;       /* signed 32 bit definition  */

/*****************************************************************************/

#endif    /* __FslTypes */

⌨️ 快捷键说明

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