Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
Network
请教LWIP1.4.1连续工作一会儿没反应了
发布于 2018-05-30 16:48:21 浏览:2705
订阅该版
* 本帖最后由 geniusgogo 于 2018-5-30 16:50 编辑 * 我用stm32f207+lan8720a跑LWIP1.4.1协议栈。 设备端使用TCP client直连连接电脑后,电脑端主动周期10ms发送1024byte的数据。 设备端recv后send出来。工作一段时间后没有反应,recv也没有超时返回。 debug没有跟踪到LWIP哪里出问题,但是在底层eth驱动层是有正常rx中断的,只是eth_rx_thread_entry里面mbox已经send full了。 另外层打印的log看出问题前,几次的recv的size不太正常,因为正常的时候会recv的size=1024,而出问题前recv的size很零碎了, 并且**最后一次收到1byte后就没反应了**: ```recv 1024 bytes send total:352067584 bytes, read total:352067584 bytes recv 1024 bytes send total:352068608 bytes, read total:352068608 bytes recv 1024 bytes send total:352069632 bytes, read total:352069632 bytes recv 1024 bytes send total:352070656 bytes, read total:352070656 bytes recv 1024 bytes send total:352071680 bytes, read total:352071680 bytes recv 1024 bytes send total:352072704 bytes, read total:352072704 bytes recv 1024 bytes send total:352073728 bytes, read total:352073728 bytes recv 1024 bytes send total:352074752 bytes, read total:352074752 bytes recv 1024 bytes send total:352075776 bytes, read total:352075776 bytes recv 436 bytes send total:352076212 bytes, read total:352076212 bytes recv 588 bytes send total:352076800 bytes, read total:352076800 bytes recv 1024 bytes send total:352077824 bytes, read total:352077824 bytes recv 1024 bytes send total:352078848 bytes, read total:352078848 bytes recv 436 bytes send total:352079284 bytes, read total:352079284 bytes recv 588 bytes send total:352079872 bytes, read total:352079872 bytes recv 1024 bytes send total:352080896 bytes, read total:352080896 bytes recv 1024 bytes send total:352081920 bytes, read total:352081920 bytes recv 1024 bytes send total:352082944 bytes, read total:352082944 bytes recv 1024 bytes send total:352083968 bytes, read total:352083968 bytes recv 436 bytes send total:352084404 bytes, read total:352084404 bytes recv 588 bytes send total:352084992 bytes, read total:352084992 bytes recv 1024 bytes send total:352086016 bytes, read total:352086016 bytes recv 436 bytes send total:352086452 bytes, read total:352086452 bytes recv 588 bytes send total:352087040 bytes, read total:352087040 bytes recv 1024 bytes send total:352088064 bytes, read total:352088064 bytes recv 436 bytes send total:352088500 bytes, read total:352088500 bytes recv 588 bytes send total:352089088 bytes, read total:352089088 bytes recv 1 bytes send total:352089089 bytes, read total:352089089 bytes ``` 协议栈配置如下: ```/* light weight TCP/IP stack */ #define RT_USING_LWIP #define RT_USING_LWIP141 #define RT_LWIP_ICMP /* Static IPv4 Address */ #define RT_LWIP_IPADDR "192.168.1.30" #define RT_LWIP_GWADDR "192.168.1.1" #define RT_LWIP_MSKADDR "255.255.255.0" #define RT_LWIP_UDP #define RT_LWIP_TCP #define RT_MEMP_NUM_NETCONN 2 #define RT_LWIP_PBUF_NUM 10 #define RT_LWIP_RAW_PCB_NUM 2 #define RT_LWIP_UDP_PCB_NUM 2 #define RT_LWIP_TCP_PCB_NUM 2 #define RT_LWIP_TCP_SEG_NUM 40 #define RT_LWIP_TCP_SND_BUF 8192 #define RT_LWIP_TCP_WND 8192 #define RT_LWIP_TCPTHREAD_PRIORITY 3 #define RT_LWIP_TCPTHREAD_MBOX_SIZE 4 #define RT_LWIP_TCPTHREAD_STACKSIZE 1024 #define RT_LWIP_ETHTHREAD_PRIORITY 5 #define RT_LWIP_ETHTHREAD_STACKSIZE 512 #define RT_LWIP_ETHTHREAD_MBOX_SIZE 4 #define LWIP_NETIF_STATUS_CALLBACK 1 #define SO_REUSE 0 #define LWIP_SO_RCVTIMEO 1 #define LWIP_SO_SNDTIMEO 1 #define LWIP_SO_RCVBUF 1 #define LWIP_NETIF_LOOPBACK 0``` tcp client代码如下: ```static void tcpclient_loopback(void) { int sock; struct sockaddr_in server_addr; static char r_buf[1024]; int r_size; rt_size_t s_total = 0; rt_size_t r_total = 0; rt_thread_delay(5 * RT_TICK_PER_SECOND); server_addr.sin_family = AF_INET; server_addr.sin_port = htons(10003); server_addr.sin_addr.s_addr = inet_addr("192.168.1.100"); rt_memset(&(server_addr.sin_zero), 0, sizeof(server_addr.sin_zero)); while (1) { if ((sock = socket(AF_INET, SOCK_STREAM, 0)) == -1) { rt_kprintf("Socket error
"); rt_thread_delay(RT_TICK_PER_SECOND); continue; } if (connect(sock, (struct sockaddr *)&server_addr, sizeof(struct sockaddr)) == -1) { rt_kprintf("****************************************
"); rt_kprintf("Connect fail!
"); rt_kprintf("****************************************
"); lwip_close(sock); rt_thread_delay(RT_TICK_PER_SECOND); continue; } rt_kputs("Connect successed
"); int nNetTimeout = 5000; //5秒, //设置发送超时 setsockopt(sock, SOL_SOCKET, SO_SNDTIMEO, &nNetTimeout, sizeof(int)); setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, &nNetTimeout, sizeof(int)); while (1) { r_size = recv(sock, r_buf, sizeof(r_buf), 0); rt_kprintf("recv %d bytes
", r_size); if (r_size > 0) { r_total += r_size; r_size = send(sock, r_buf, r_size, 0); if (r_size > 0) { s_total += r_size; rt_kprintf("send total:%u bytes, read total:%u bytes
", s_total, r_total); } else { rt_kprintf("send failure:%d, errcode:%d
", r_size, rt_get_errno()); lwip_close(sock); break; } } else { rt_kprintf("recv failure:%d, errcode:%d
", r_size, rt_get_errno()); lwip_close(sock); break; } } } /* send data then close the connection */ // send(sock, str, rt_strlen(str), 0); lwip_close(sock); }``` 请教大神们指点一下!!!
查看更多
3
个回答
默认排序
按发布时间排序
geniusgogo
认证专家
2018-05-31
这家伙很懒,什么也没写!
速度提高到5ms/1024byte回环测试,立马就复现问题。 定位到如下内部信号量丢失: lwip_recvfrom->netconn_recved->tcpip_apimsg->sys_arch_sem_wait(&apimsg->msg.conn->op_completed, 0);
geniusgogo
认证专家
2018-06-02
这家伙很懒,什么也没写!
RT_LWIP_PBUF_NUM 放大到16,速度降到20ms/512byte.连续2天了没出问题。 看来是跟协议栈有关系!难道太快某些异常情况没考虑到?
戎传林
2019-05-06
这家伙很懒,什么也没写!
tcpip,etx,erx三个线程的优先级是怎样的呢
撰写答案
登录
注册新账号
关注者
0
被浏览
2.7k
关于作者
geniusgogo
这家伙很懒,什么也没写!
提问
42
回答
157
被采纳
7
关注TA
发私信
相关问题
1
lwip1.4.1连接经常会断开无法连接上,可以ping通
2
LPC1768:RTT+LWIP+webserver用IE刷网页出现硬件中断错误(已经解决)
3
求一些LWIP开发的经验,目前ping一直不稳定。
4
stm32f207+dp83848无法ping通
5
RTT下的LWIP传递机制
6
rtt内lwip的socket是否是线程安全?
7
Lwip+enc28j60无法ping通
8
坑爹的rtconfig.h lwip关掉了checksum
9
花了一个晚上,把RT2.0的LWIP、网卡驱动、文件系统整合起来了,发现一点小问题
10
lwip例程中udp发送时如何指定源端口发送到指定目的地端口
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
CherryUSB的bootuf2配置
2
在用clangd开发RTT吗,快来试试如何简单获得清晰干净的工作区
3
GD32F450 片内 flash驱动适配
4
STM32H7R7运行CherryUSB
5
RT-Smart首次线下培训,锁定2024 RT-Thread开发者大会!
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
UART
WIZnet_W5500
ota在线升级
PWM
freemodbus
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
flashDB
GD32
socket
中断
编译报错
Debug
SFUD
rt_mq_消息队列_msg_queue
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
a1012112796
10
个答案
1
次被采纳
踩姑娘的小蘑菇
4
个答案
1
次被采纳
红枫
4
个答案
1
次被采纳
张世争
4
个答案
1
次被采纳
Ryan_CW
4
个答案
1
次被采纳
本月文章贡献
catcatbing
3
篇文章
6
次点赞
YZRD
2
篇文章
5
次点赞
lizimu
2
篇文章
5
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部