Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
STM32H743
lwip2.02
stm32h743添加lwip2.02报发送错误,ping失败
发布于 2021-02-02 11:44:19 浏览:3500
订阅该版
说明: 1. 开发板:硬石YS-H7Pro, 芯片stm32h743iit6 2. 开发工具:win10系统,ip固定为192.168.2.201; IDE为rt-thread studio 2.0 3. 项目配置:按芯片型号添加RT-Thread v4.02项目;board.h取消eth部分相应注释,启动lan8720驱动;stm32h7xx_hal_conf中取消HAL_ETH_MODULE_ENABLED注释;board.c中添加eth_msp初始化及phy_reset函数;rt-thread设置添加LWIP,取消DHCP,固定ip为192.168.2.100 4. 其他:默认drvers下面的drv_eth驱动报错,从art-pi的sdk中拷贝drv_eth.c及drv_eth.h,并修改phy_reset部分; 问题: 编译下载后,网络连接状态正常,不过报DMA发送失败,双向ping不通。 ``` \ | / - RT - Thread Operating System / | \ 4.0.2 build Feb 2 2021 2006 - 2019 Copyright by rt-thread team lwIP-2.0.2 initialized! [I/sal.skt] Socket Abstraction Layer initialize success. [W/drv.emac] eth transmit frame faild: 8 msh > RT-Thread shell commands: ifconfig - list the information of all network interfaces ping - ping network host dns - list and set the information of dns netstat - list the information of TCP / IP version - show RT-Thread version information list_thread - list thread list_sem - list semaphore in system list_event - list event in system list_mutex - list mutex in system list_mailbox - list mail box in system list_msgqueue - list message queue in system list_mempool - list memory pool in system list_timer - list timer in system list_device - list device in system exit - return to RT-Thread shell mode. help - RT-Thread shell help. ps - List threads in the system. free - Show the memory usage in the system. reboot - Reboot System msh >ifconfig network interface device: e0 (Default) MTU: 1500 MAC: 00 80 e1 17 3d 22 FLAGS: UP LINK_UP INTERNET_DOWN DHCP_DISABLE ETHARP BROADCAST IGMP ip address: 192.168.2.100 gw address: 0.0.0.0 net mask : 255.255.255.0 dns server #0: 0.0.0.0 dns server #1: 0.0.0.0 msh >ping 192.168.2.201 [W/drv.emac] eth transmit frame faild: 24 [W/drv.emac] eth transmit frame faild: 24 [W/drv.emac] eth transmit frame faild: 24 ping: from 192.168.2.201 icmp_seq=0 timeout [W/drv.emac] eth transmit frame faild: 18 [W/drv.emac] eth transmit frame faild: 18 ping: from 192.168.2.201 icmp_seq=1 timeout ping: from 192.168.2.201 icmp_seq=2 timeout [W/drv.emac] eth transmit frame faild: 18 [W/drv.emac] eth transmit frame faild: 18 [W/drv.emac] eth transmit frame faild: 18 ping: from 192.168.2.201 icmp_seq=3 timeout msh >[W/drv.emac] eth transmit frame faild: 18 [W/drv.emac] eth transmit frame faild: 18 [W/drv.emac] eth transmit frame faild: 18 ``` ![1.PNG](https://oss-club.rt-thread.org/uploads/20210202/bfb487c54baff4816b0e9c371ad088d9.png) ![2.PNG](https://oss-club.rt-thread.org/uploads/20210202/90f36718f529e255a873c67454ad0d41.png)
查看更多
whj467467222
认证专家
2021-02-02
开源,分享,交流,共同进步
RTT Studio 使用的编译器是 `GCC` 所以在`drv_eth.c` 中使用到 ```c #elif defined ( __GNUC__ ) /* GNU Compiler */ ETH_DMADescTypeDef DMARxDscrTab[ETH_RX_DESC_CNT] __attribute__((section(".RxDecripSection"))); /* Ethernet Rx DMA Descriptors */ ETH_DMADescTypeDef DMATxDscrTab[ETH_TX_DESC_CNT] __attribute__((section(".TxDecripSection"))); /* Ethernet Tx DMA Descriptors */ uint8_t Rx_Buff[ETH_RX_DESC_CNT][ETH_MAX_PACKET_SIZE] __attribute__((section(".RxArraySection"))); /* Ethernet Receive Buffers */ #endif ``` 这里的以太网描述符指定了固定的地址,所以需要修改联检文件,这个可以参考 [ART-Pi](https://github.com/RT-Thread-Studio/sdk-bsp-stm32h750-realthread-artpi/blob/master/projects/industry_io_gateway/board/linker_scripts/STM32H750XBHx/link.lds) 另外一下几点也请注意: 1. 内存堆的选择 2. MPU 的配置 如果还有疑问请追问,如果帮助到你请采纳。
3
个回答
默认排序
按发布时间排序
陈秋平
2021-04-15
这家伙很懒,什么也没写!
666
r59461900
2024-05-25
这家伙很懒,什么也没写!
求大神,把BSP上传到RT-Thread Studio,方便大家下载!
撰写答案
登录
注册新账号
关注者
0
被浏览
3.5k
关于作者
yrw1985
这家伙很懒,什么也没写!
提问
4
回答
0
被采纳
0
关注TA
发私信
相关问题
1
STM32H743-st-nucleo BSP 怎么配置PWM?
2
stm32H743 emmc驱动
3
`scons --dist` 之后,缺少.s文件
4
h743iit6的bsp移植以后无法启动
5
stm32h743的LAN8720A驱动编译错误, 不知道怎么改
6
STM32H743移植Finsh组件的相关问题
7
STM32使用C++ 编译报错
8
请问大家有没有遇到过USB识别很慢的情况
9
STM32H743的ADC结构体是否有问题?
10
bsp文件下的stm32h743移植寄存器版结果rt_object_init出错
推荐文章
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
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
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
WIZnet_W5500
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
张世争
8
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
a1012112796
13
个答案
1
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
6
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部