OpenEdv-开源电子网

 找回密码
 立即注册
正点原子全套STM32/Linux/FPGA开发资料,上千讲STM32视频教程免费下载...
查看: 4891|回复: 1

移植 LwIP 到stm32 报错

[复制链接]

38

主题

131

帖子

0

精华

中级会员

Rank: 3Rank: 3

积分
303
金钱
303
注册时间
2013-7-15
在线时间
0 小时
发表于 2014-2-14 15:17:44 | 显示全部楼层 |阅读模式
报错如下:

Source\User\main.c(41): error:  #513: a value of type "struct udp_pcb *" cannot be assigned to an entity of type "struct upd_pcb *"
Source\User\main.c(42): error:  #167: argument of type "struct upd_pcb *" is incompatible with parameter of type "struct udp_pcb *"
Source\User\main.c(42): error:  #167: argument of type "struct upd_pcb *" is incompatible with parameter of type "struct udp_pcb *"
Source\User\main.c(42): error:  #167: argument of type "struct upd_pcb *" is incompatible with parameter of type "struct udp_pcb *"
Source\User\main.c - 4 Error(s), 0 Warning(s).

我的函数就简单实用UDP

#include "main.h"
#include "stm32_eth.h"
#include "stm32f107.h"
#include "netconf.h"
#include "lwip/pbuf.h"
#include "lwip/udp.h"
#include "lwip/tcp.h"
    .
    .
    .
    .

int main()
{
struct upd_pcb *udp_pcb_usr;
struct ip_addr ipaddr;
struct pbuf *p;
System_Setup();
LwIP_Init();
p = pbuf_alloc(PBUF_RAW, sizeof(UDPData), PBUF_RAM);
p->payload =(void *)UDPData;
IP4_ADDR(&ipaddr, 192, 168, 0, 10);
udp_pcb_usr = udp_new();
udp_bind(udp_pcb_usr, IP_ADDR_ANY, 161);
udp_connect(udp_pcb_usr, &ipaddr, 161);
udp_send(udp_pcb_usr, p);
while(1)
{
System_Periodic_Handle();
}
}



类型明明在 udp.h中定义了,我看例程也是这样写的,为什么这里会报错呢?明明是同一个类型的。。。。













正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

530

主题

11万

帖子

34

精华

管理员

Rank: 12Rank: 12Rank: 12

积分
165352
金钱
165352
注册时间
2010-12-1
在线时间
2108 小时
发表于 2014-2-14 15:22:49 | 显示全部楼层
我是开源电子网www.openedv.com站长,有关站务问题请与我联系。
正点原子STM32开发板购买店铺http://openedv.taobao.com
正点原子官方微信公众平台,点击这里关注“正点原子”
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则



关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-11-24 17:57

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表