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

📄 includes.h

📁 本程序是一个RS232转网口的。是一个透明传输的模块
💻 H
字号:
/*
*****************************************************************************************************
*
*  File name: include.h
*****************************************************************************************************
*/

//#define PROTOCOL_2004  255



#include "..\head\upsd3200.h"

#include <absacc.h>
#include <string.h>
#include <stdio.h>
//#include <stdlib.h>
#include "..\head\inettype.h"
#include "..\head\tcp.h"

#include "..\head\TIMER.h"

#include "..\head\eth.h"
#include "..\head\serial.h"
#include "..\head\SerEEROM.h"
#include "..\head\udp.h"
#include "..\head\App.h"

#include "..\head\ARP.h"
#include "..\head\ICMP.h"
#include "..\head\web.h"
#include "..\head\HTTP.h"
#include "..\head\IP.h"
#include "..\head\CKSUM.h"
#include "..\head\config.h"
#include "..\head\str.h"
#include "..\head\debugmsg.h"
#include "..\head\dhcp.h"
#include "..\head\pro2004.h"







/*
*********************************************************************************************************
*                                               数据类型
*                                         
*********************************************************************************************************
*/
typedef bit            BOOLEAN;
typedef unsigned char  INT8U;                    /* Unsigned  8 bit quantity                           */
typedef signed   char  INT8S;                    /* Signed    8 bit quantity                           */
typedef unsigned int   INT16U;                   /* Unsigned 16 bit quantity                           */
typedef signed   int   INT16S;                   /* Signed   16 bit quantity                           */
typedef unsigned long  INT32U;                   /* Unsigned 32 bit quantity                           */
typedef signed   long  INT32S;                   /* Signed   32 bit quantity                           */
typedef float          FP32;                     /* Single precision floating point                    */
typedef double         FP64;                     /* Double precision floating point                    */

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


#ifndef TRUE
  #define TRUE 0x01
#endif
#ifndef FALSE
  #define FALSE 0x00
#endif
#ifndef ON
  #define ON 0x00
#endif
#ifndef OFF
  #define OFF 0x01
#endif
#ifndef NULL
  #define NULL 0x00
#endif





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



⌨️ 快捷键说明

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