📄 fsltypes_file.h
字号:
/**
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -