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

📄 stddefs.h

📁 富士通单片机MB90F387上实现MODBUS
💻 H
字号:
/**********************************************************
*
* The following software is for demonstration purposes only. 
* It is not fully tested, nor validated in order to fullfill  
* its task under all circumstances. Therefore, this software  
* or any part of it must only be used in an evaluation        
* laboratory environment.                                    
* This software is subject to the rules of Accemic's 
* standard DISCLAIMER, available at www.accemic.com.
*
* Copyright (c) 2001-2003 Accemic GmbH & Co. KG 
* All rights reserved  
*
***********************************************************
*
* Module name        : samples.h
* Version            : 1.01       
* Date of creation.  : 07.03.2003
* Last Modification  : 14.08.2003
* Authors            : Rainer Harthaus (RH)
* 
***********************************************************
* 
* Description: 
* standard definitions
* 
***********************************************************
*
* History
*
* Vers   * Datum    * Name  * Subject
* 1.00   * 07.03.03 * RH    * first creation
* 1.01   * 14.08.03 * AW    * 545 family included
* 
***********************************************************
*
* Please visit www.accemic.com
* for updates and other valuable developer ressources
*
**********************************************************/

#ifndef STDDEFS_H
#define STDDEFS_H


typedef unsigned long       DWORD;
typedef unsigned long       dword;
typedef unsigned short      WORD;
typedef unsigned short      word;
typedef	unsigned char       BYTE;
typedef	unsigned char       byte;
typedef unsigned char       BOOL;
typedef unsigned char       bool;
typedef __far BYTE*			LPBYTE;
typedef __near BYTE*		PBYTE;

#define uchar	unsigned char
#define uint	unsigned int
#define ulong	unsigned long

#define INT8U	unsigned char
#define INT16U	unsigned int
#define INT32U	unsigned long

#define FAR 	__far

#define FALSE	0
#define TRUE	1
#define false	0
#define true	1

#define OUT     1
#define IN      0

#include "cpu.h"

#if defined(__CPU_MB90385_SERIES)
#include "mb90385.h"
#elif defined(__CPU_MB90390_SERIES)
#include "mb90390.h"
#elif defined(__CPU_MB90420_SERIES)
#include "mb90420.h"
#elif defined(__CPU_MB90425_SERIES)
#include "mb90425.h"
#elif defined(__CPU_MB90435_SERIES)
#include "mb90435.h"
#elif defined(__CPU_MB90440_SERIES)
#include "mb90440.h"
#elif defined(__CPU_MB90455_SERIES)
#include "mb90455.h"
#elif defined(__CPU_MB90460_SERIES)
#include "mb90460.h"
#elif defined(__CPU_MB90470_SERIES)
#include "mb90470.h"
#elif defined(__CPU_MB90495_SERIES)
#include "mb90495.h"
#elif defined(__CPU_MB90520_SERIES)
#include "mb90520.h"
#elif defined(__CPU_MB90540_SERIES)
#include "mb90540.h"
#elif defined(__CPU_MB90545_SERIES)
#include "mb90545.h"
#elif defined(__CPU_MB90550A_SERIES)
#include "mb90550.h"
#elif defined(__CPU_MB90560_SERIES)
#include "mb90560.h"
#elif defined(__CPU_MB90570_SERIES)
#include "mb90570.h"
#elif defined(__CPU_MB90580_SERIES)
#include "mb90580.h"
#elif defined(__CPU_MB90590_SERIES)
#include "mb90590.h"
#elif defined(__CPU_MB90595_SERIES)
#include "mb90595.h"
#endif

#endif
 

⌨️ 快捷键说明

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