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

📄 includes.h

📁 在Luminary单片机的以太网控制器的底层驱动程序的编写!Luminary的单片机采用Cortex-M3内核
💻 H
字号:
/****************************************Copyright (c)****************************************************
**                               Guangzhou ZHIYUAN electronics Co.,LTD.
**                                     
**                                 http://www.embedtools.com
**
**--------------File Info---------------------------------------------------------------------------------
** File Name:               includes.h
** Last modified Date:      2008.7.18
** Last Version:            v1.0
** Description:             uIP TCP/IP协议栈应用的头文件
** 
**--------------------------------------------------------------------------------------------------------
** Created By:              任海波
** Created date:            2008.7.18
** Version:                 v1.0
** Descriptions:            The original version 初始版本
**
**--------------------------------------------------------------------------------------------------------
** Modified by:
** Modified date:
** Version:
** Description:
**
********************************************************************************************************/
/*********************************************************************************************************
  Date types(Compiler specific)  数据类型(和编译器相关)                
*********************************************************************************************************/
typedef unsigned char   uint8;                                          /* Unsigned  8 bit quantity     */
typedef signed   char   int8;                                           /* Signed    8 bit quantity     */
typedef unsigned short  uint16;                                         /* Unsigned  16 bit quantity    */
typedef signed   short  int16;                                          /* Signed    16 bit quantity    */
typedef unsigned int    uint32;                                         /* Unsigned  32 bit quantity    */
typedef signed   int    int32;                                          /* Signed    32 bit quantity    */
typedef float           fp32;                                           /* Single    precision          */
                                                                        /* floating  point              */
typedef double          fp64;                                           /* Double    precision          */

/******************************************************************************
**Luminary提供的驱动库的头文件
******************************************************************************/
#include "hw_ints.h"
#include "hw_memmap.h"
#include "hw_types.h"
#include "debug.h"
#include "interrupt.h"
#include "sysctl.h"
#include "systick.h"
#include "ethernet.h"
#include "flash.h"
#include "gpio.h"
#include "ethernet.h"
	
/******************************************************************************
**配置协议栈MAC地址,IP地址,子网掩码以及网关的头文件
******************************************************************************/
#include"Eth_MAC_IP_Config.h"
/******************************************************************************
**uIP CTP/IP协议栈的头文件
******************************************************************************/
#include "uip.h"
#include "uip_arp.h"


/******************************************************************************
**用户自定义应用程序的头文件
******************************************************************************/
#include "httpd.h"

⌨️ 快捷键说明

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