Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
94ba2c0b
R
rt-thread
项目概览
BaiXuePrincess
/
rt-thread
与 Fork 源项目一致
Fork自
RT-Thread / rt-thread
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
rt-thread
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
未验证
提交
94ba2c0b
编写于
11月 25, 2017
作者:
B
Bernard Xiong
提交者:
GitHub
11月 25, 2017
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1038 from TanekLiang/lpc54608_fix2
[bsp] fix bug: emac hardfault when RJ45 not inserted
上级
adfb73cd
f7b43448
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
18 addition
and
20 deletion
+18
-20
bsp/lpc54608-LPCXpresso/drivers/drv_emac.c
bsp/lpc54608-LPCXpresso/drivers/drv_emac.c
+18
-20
未找到文件。
bsp/lpc54608-LPCXpresso/drivers/drv_emac.c
浏览文件 @
94ba2c0b
...
...
@@ -286,10 +286,20 @@ static rt_err_t lpc_emac_phy_init(phy_speed_t * speed, phy_duplex_t * duplex)
{
bool
link
=
false
;
int32_t
status
;
RT_ASSERT
(
speed
!=
NULL
);
RT_ASSERT
(
duplex
!=
NULL
);
status
=
PHY_Init
(
lpc_emac_device
.
base
,
lpc_emac_device
.
phyAddr
,
0
);
if
(
status
!=
kStatus_Success
)
{
/* Half duplex. */
*
duplex
=
kPHY_HalfDuplex
;
/* 10M speed. */
*
speed
=
kPHY_Speed10M
;
eth_device_linkchange
(
&
lpc_emac_device
.
parent
,
RT_FALSE
);
ETH_PRINTF
(
"PHY_Init failed!
\n
"
);
return
RT_ERROR
;
}
...
...
@@ -306,12 +316,11 @@ static rt_err_t lpc_emac_phy_init(phy_speed_t * speed, phy_duplex_t * duplex)
}
PHY_GetLinkStatus
(
lpc_emac_device
.
base
,
lpc_emac_device
.
phyAddr
,
&
link
);
}
RT_ASSERT
(
speed
!=
NULL
);
RT_ASSERT
(
duplex
!=
NULL
);
PHY_GetLinkSpeedDuplex
(
lpc_emac_device
.
base
,
lpc_emac_device
.
phyAddr
,
speed
,
duplex
);
eth_device_linkchange
(
&
lpc_emac_device
.
parent
,
RT_TRUE
);
return
RT_EOK
;
}
...
...
@@ -323,13 +332,10 @@ static rt_err_t lpc_emac_init(rt_device_t dev)
enet_config_t
config
;
enet_buffer_config_t
buffCfg
;
uint32_t
rxBufferStartAddr
[
ENET_RXBD_NUM
];
lcp_emac_io_init
();
if
(
lpc_emac_phy_init
(
&
speed
,
&
duplex
)
!=
RT_EOK
)
{
return
RT_ERROR
;
}
lpc_emac_phy_init
(
&
speed
,
&
duplex
);
/* calculate start addresses of all rx buffers */
for
(
i
=
0
;
i
<
ENET_RXBD_NUM
;
i
++
)
...
...
@@ -376,8 +382,6 @@ static rt_err_t lpc_emac_init(rt_device_t dev)
/* Active TX/RX. */
ENET_StartRxTx
(
lpc_emac_device
.
base
,
1
,
1
);
eth_device_linkchange
(
&
lpc_emac_device
.
parent
,
RT_TRUE
);
return
RT_EOK
;
}
...
...
@@ -455,17 +459,11 @@ rt_err_t lpc_emac_tx(rt_device_t dev, struct pbuf *p)
lpc_emac_device
.
txIdx
=
(
lpc_emac_device
.
txIdx
+
1
)
/
ENET_TXBD_NUM
;
result
=
ENET_SendFrame
(
enet_base
,
enet_handle
,
data
,
p
->
len
);
RT_ASSERT
(
result
!=
kStatus_ENET_TxFrameBusy
);
if
((
result
==
kStatus_ENET_TxFrameFail
)
||
(
result
==
kStatus_ENET_TxFrameOverLen
))
if
((
result
==
kStatus_ENET_TxFrameFail
)
||
(
result
==
kStatus_ENET_TxFrameOverLen
)
||
(
result
==
kStatus_ENET_TxFrameBusy
))
{
return
RT_ERROR
;
}
else
if
(
result
==
kStatus_ENET_TxFrameBusy
)
{
RT_ASSERT
(
NULL
);
}
return
RT_EOK
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录