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

📄 com_typedefine.h

📁 基于16位单片机的符合osek标准的操作系统
💻 H
字号:

/**************************************************************************/
/* FILE NAME: m_common.h                      COPYRIGHT (c) MOTOROLA 1999 */
/* VERSION:  1.1                                                          */
/*                                                                        */
/* DESCRIPTION:                                                           */
/* This file defines all of the data types for the MPC500 family. It also */
/* defines compiler specific paramaters. This file is included by all     */
/* individual modules.                                                    */
/*========================================================================*/
/* AUTHOR: Jeff Loeliger                                                  */
/* COMPILER: Diab Data        VERSION: 4.2b                               */
/*                                                                        */
/* UPDATE HISTORY                                                         */
/* REV      AUTHOR      DATE       DESCRIPTION OF CHANGE                  */
/* ---   -----------  ---------    ---------------------                  */
/* 0.1   J. Loeliger  06/Apr/98    Initial version of file.               */
/* 0.2   V. McCartner 20/Dec/98    Added EXT section for new mpc555 files */
/* 1.0   J. Loeliger  12/Jan/99    Updated for new mpc555 files.          */
/* 1.1   J. Loeliger  25/Jan/99    Added setup comments.                  */
/**************************************************************************/



typedef char INT8;
typedef unsigned char UINT8;
typedef volatile signed char VINT8;
typedef volatile unsigned char VUINT8;

typedef int INT16;
typedef unsigned int UINT16;
typedef volatile int VINT16;
typedef volatile unsigned int VUINT16;

typedef long INT32;
typedef unsigned long UINT32;
typedef volatile long VINT32;
typedef volatile unsigned long VUINT32;
typedef float FLOAT32;
typedef double FLOAT64;

⌨️ 快捷键说明

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