📄 dbmx1_type.h
字号:
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Copyright (C) 2002 Motorola Semiconductors HK Ltd * *//****************************************************************************** * * Copyright (C) 2001, Motorola All Rights Reserved * * File Name: dbmx1_type.h * * Progammers: Yiwei Zhao * * Date of Creations: 30 Nov 2001 * * Synopsis: * * Modification History: * 30 Nov, 2001, initialization version * ******************************************************************************/#ifndef DBMX1_TYPES#define DBMX1_TYPEStypedef signed char BOOLEAN;typedef unsigned char UINT8; /* Unsigned 8 bit quantity */typedef signed char SINT8; /* Signed 8 bit quantity */typedef unsigned short UINT16; /* Unsigned 16 bit quantity */typedef signed short SINT16; /* Signed 16 bit quantity */typedef unsigned long UINT32; /* Unsigned 32 bit quantity */typedef signed long SINT32; /* Signed 32 bit quantity */typedef volatile BOOLEAN VBOOLEAN;typedef volatile UINT8 VUINT8; /* Unsigned 8 bit quantity */typedef volatile SINT8 VSINT8; /* Signed 8 bit quantity */typedef volatile UINT16 VUINT16; /* Unsigned 16 bit quantity */typedef volatile SINT16 VSINT16; /* Signed 16 bit quantity */typedef volatile UINT32 VUINT32; /* Unsigned 32 bit quantity */typedef volatile SINT32 VSINT32; /* Signed 32 bit quantity */#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -