Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
f3f523d2
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看板
提交
f3f523d2
编写于
8月 30, 2017
作者:
B
Bernard Xiong
提交者:
GitHub
8月 30, 2017
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #831 from AubrCool/fix-can.tx.bug
[DeviceDrivers] drivers CAN change tx completion to sem
上级
f5c12918
44bac92a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
21 deletion
+21
-21
components/drivers/can/can.c
components/drivers/can/can.c
+20
-20
components/drivers/include/drivers/can.h
components/drivers/include/drivers/can.h
+1
-1
未找到文件。
components/drivers/can/can.c
浏览文件 @
f3f523d2
...
...
@@ -154,20 +154,11 @@ rt_inline int _can_int_tx(struct rt_can_device *can, const struct rt_can_msg *da
rt_uint32_t
result
;
struct
rt_can_sndbxinx_list
*
tx_tosnd
=
RT_NULL
;
rt_sem_take
(
&
(
tx_fifo
->
sem
),
RT_WAITING_FOREVER
);
level
=
rt_hw_interrupt_disable
();
if
(
!
rt_list_isempty
(
&
tx_fifo
->
freelist
))
{
tx_tosnd
=
rt_list_entry
(
tx_fifo
->
freelist
.
next
,
struct
rt_can_sndbxinx_list
,
list
);
RT_ASSERT
(
tx_tosnd
!=
RT_NULL
);
rt_list_remove
(
&
tx_tosnd
->
list
);
}
else
{
rt_hw_interrupt_enable
(
level
);
rt_completion_wait
(
&
(
tx_fifo
->
completion
),
RT_WAITING_FOREVER
);
continue
;
}
tx_tosnd
=
rt_list_entry
(
tx_fifo
->
freelist
.
next
,
struct
rt_can_sndbxinx_list
,
list
);
RT_ASSERT
(
tx_tosnd
!=
RT_NULL
);
rt_list_remove
(
&
tx_tosnd
->
list
);
rt_hw_interrupt_enable
(
level
);
no
=
((
rt_uint32_t
)
tx_tosnd
-
(
rt_uint32_t
)
tx_fifo
->
buffer
)
/
sizeof
(
struct
rt_can_sndbxinx_list
);
...
...
@@ -178,6 +169,7 @@ rt_inline int _can_int_tx(struct rt_can_device *can, const struct rt_can_msg *da
level
=
rt_hw_interrupt_disable
();
rt_list_insert_after
(
&
tx_fifo
->
freelist
,
&
tx_tosnd
->
list
);
rt_hw_interrupt_enable
(
level
);
rt_sem_release
(
&
(
tx_fifo
->
sem
));
continue
;
}
...
...
@@ -191,8 +183,8 @@ rt_inline int _can_int_tx(struct rt_can_device *can, const struct rt_can_msg *da
rt_list_remove
(
&
tx_tosnd
->
list
);
}
rt_list_insert_before
(
&
tx_fifo
->
freelist
,
&
tx_tosnd
->
list
);
rt_completion_done
(
&
(
tx_fifo
->
completion
));
rt_hw_interrupt_enable
(
level
);
rt_sem_release
(
&
(
tx_fifo
->
sem
));
if
(
result
==
RT_CAN_SND_RESULT_OK
)
{
...
...
@@ -280,7 +272,7 @@ rt_inline int _can_int_tx_priv(struct rt_can_device *can, const struct rt_can_ms
static
rt_err_t
rt_can_open
(
struct
rt_device
*
dev
,
rt_uint16_t
oflag
)
{
struct
rt_can_device
*
can
;
char
tmpname
[
16
];
RT_ASSERT
(
dev
!=
RT_NULL
);
can
=
(
struct
rt_can_device
*
)
dev
;
...
...
@@ -341,7 +333,9 @@ static rt_err_t rt_can_open(struct rt_device *dev, rt_uint16_t oflag)
rt_completion_init
(
&
(
tx_fifo
->
buffer
[
i
].
completion
));
tx_fifo
->
buffer
[
i
].
result
=
RT_CAN_SND_RESULT_OK
;
}
rt_completion_init
(
&
(
tx_fifo
->
completion
));
rt_sprintf
(
tmpname
,
"%stl"
,
dev
->
parent
.
name
);
rt_sem_init
(
&
(
tx_fifo
->
sem
),
tmpname
,
can
->
config
.
sndboxnumber
,
RT_IPC_FLAG_FIFO
);
can
->
can_tx
=
tx_fifo
;
dev
->
open_flag
|=
RT_DEVICE_FLAG_INT_TX
;
...
...
@@ -535,14 +529,20 @@ static rt_err_t rt_can_control(struct rt_device *dev,
tx_fifo
=
(
struct
rt_can_tx_fifo
*
)
can
->
can_tx
;
if
(
can
->
config
.
privmode
)
{
rt_completion_done
(
&
(
tx_fifo
->
completion
));
for
(
i
=
0
;
i
<
can
->
config
.
sndboxnumber
;
i
++
)
{
level
=
rt_hw_interrupt_disable
();
rt_list_remove
(
&
tx_fifo
->
buffer
[
i
].
list
);
level
=
rt_hw_interrupt_disable
();
if
(
rt_list_isempty
(
&
tx_fifo
->
buffer
[
i
].
list
))
{
rt_sem_release
(
&
(
tx_fifo
->
sem
));
}
else
{
rt_list_remove
(
&
tx_fifo
->
buffer
[
i
].
list
);
}
rt_hw_interrupt_enable
(
level
);
}
}
else
{
...
...
components/drivers/include/drivers/can.h
浏览文件 @
f3f523d2
...
...
@@ -280,7 +280,7 @@ struct rt_can_sndbxinx_list
struct
rt_can_tx_fifo
{
struct
rt_can_sndbxinx_list
*
buffer
;
struct
rt_
completion
completion
;
struct
rt_
semaphore
sem
;
struct
rt_list_node
freelist
;
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录