我正在尝试运行 tftp 服务器的示例代码。在合成我的硬件或编译代码时,我没有收到任何抱怨。但是,当我添加 lwip_init() 语句时,它似乎停止工作(它不输出任何打印语句)。这非常令人沮丧,我不知道是什么原因造成的。有任何想法吗?谢谢
#include <stdio.h>
#include "xenv_standalone.h"
#include "xparameters.h"
#include "platform.h"
#include "netif/xadapter.h"
#include "lwip/init.h"
#define EMAC_BASEADDR XPAR_LLTEMAC_0_BASEADDR
int main()
{
print("-- Starting main() -- \r\n");
struct netif *netif, server_netif;
struct ip_addr ipaddr, netmask, gw;
/* the mac address of the board. this should be unique per board */
unsigned char mac_ethernet_address[] = { 0x00, 0x0a, 0x35, 0x00, 0x01, 0x02 };
netif = &server_netif;
microblaze_init_icache_range(0, XPAR_MICROBLAZE_0_CACHE_BYTE_SIZE);
microblaze_init_dcache_range(0, XPAR_MICROBLAZE_0_DCACHE_BYTE_SIZE);
/* enable caches */
XCACHE_ENABLE_ICACHE();
XCACHE_ENABLE_DCACHE();
platform_setup_interrupts();
/* initliaze IP addresses to be used */
IP4_ADDR(&ipaddr, 192, 168, 1, 10);
IP4_ADDR(&netmask, 255, 255, 255, 0);
IP4_ADDR(&gw, 192, 168, 1, 1);
print_app_header();
print_ip_settings(&ipaddr, &netmask, &gw);
lwip_init();
...
}
编辑回应维基:
也许你可以解释一些事情,因为你可能是对的。当我在没有 lwip_init() 的情况下编译它时,我得到:
text data bss dec hex
7214 356 1104 8674 21e2
并使用 lwip_init() 我得到:
text data bss dec hex
9726 356 559080 569162 8af4a
这要大得多。太糟糕了,它不能对此发出警告