提交 7121697a 编写于 作者: armink_ztl's avatar armink_ztl

[Ymodem]Add device open flag as input parameter to ymodem function.

上级 ed57c7c3
......@@ -311,6 +311,7 @@ static rt_err_t _rym_do_recv(
rt_err_t rym_recv_on_device(
struct rym_ctx *ctx,
rt_device_t dev,
rt_uint16_t oflag,
rym_callback on_begin,
rym_callback on_data,
rym_callback on_end,
......@@ -341,7 +342,7 @@ rt_err_t rym_recv_on_device(
dev->flag &= ~RT_DEVICE_FLAG_STREAM;
rt_hw_interrupt_enable(int_lvl);
res = rt_device_open(dev, 0);
res = rt_device_open(dev, oflag);
if (res != RT_EOK)
goto __exit;
......@@ -364,4 +365,3 @@ __exit:
return res;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册