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

📄 init.c.bak

📁 LwIP adaptation for Fujitsu MB90f497 and CS8900A Ethernet driver
💻 BAK
字号:
/*
 * Copyright (c) 2001, Swedish Institute of Computer Science.
 * All rights reserved. 
 *
 * Redistribution and use in source and binary forms, with or without 
 * modification, are permitted provided that the following conditions 
 * are met: 
 *
 * 1. Redistributions of source code must retain the above copyright 
 *    notice, this list of conditions and the following disclaimer. 
 *
 * 2. Redistributions in binary form must reproduce the above copyright 
 *    notice, this list of conditions and the following disclaimer in the 
 *    documentation and/or other materials provided with the distribution. 
 *
 * 3. Neither the name of the Institute nor the names of its contributors 
 *    may be used to endorse or promote products derived from this software 
 *    without specific prior written permission. 
 *
 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
 * SUCH DAMAGE. 
 *
 * This file is part of the lwIP TCP/IP stack.
 * 
 * Author: Adam Dunkels <adam@sics.se>
 *
 * $Id: init.c,v 1.1 2001/01/31 10:57:39 adam Exp $
 */

#include "lwip\debug.h"

#include "lwip\mem.h"
#include "lwip\sys.h"

#include "lwip\stats.h"

#include "lwip\loopif.h"

//#include "http_noapi.h"
//#include "systat.h"

#include "lwip\ip.h"
#include "lwip\udp.h"
#include "lwip\tcp.h"
u16_t systime;
u8_t fast_f;
struct tcp_pcb *incTCP, *outTCP;
err_t Error;
int
main()
{
  struct ip_addr ipaddr, netmask, gw;
    InitIrqLevels();
   __set_il(7);     // set ILM to 7, allow all interrupt levels
   __EI();      // enable interrupts at all

  systime=0;
  fast_f=0;
  mem_init();
  memp_init();
 pbuf_init();
  ip_init();
  udp_init();
  tcp_init();
  
  stats_init();
  sys_init();
//  pbuf_init(16, 128);

 // printf("System initialized\n");

  gw.addr = htonl(0x7f000001);
  ipaddr.addr = htonl(0x7f000001);
  netmask.addr = htonl(0xff000000);
  netif_set_default(netif_add(&ipaddr, &netmask, &gw, loopif_init, ip_input));
  incTCP=tcp_new();
Error=tcp_bind(incTCP, &ipaddr, 23);
incTCP=tcp_listen(incTCP);
outTCP=tcp_new();
Error=tcp_bind(outTCP, &ipaddr, 1025);

tcp_connect(outTCP, &ipaddr, 23,lwip_tcp_event);

//  printf("TCP/IP initialized\n");
  
 // http_init();
 // systat_init();

 // printf("Clients initialized\n");
  while(1) {
  	if(fast_f) {
  		fast_f=0;
  		tcp_tmr();
  		}
  		
  	}
 // sys_main();
}

__interrupt void Reload1Int(void) {
	systime++;
	if(systime == 100) fast_f=1;
	
	
	
	
}

⌨️ 快捷键说明

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