-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[serial_v2] support half duplex. #9480
base: master
Are you sure you want to change the base?
Conversation
或许可以搞个宏配置选项,是否要开启半双工? |
目前是检查是否配置了收发切换引脚,如果没配置的话默认还是全双工通信。不过加上宏配置的话代码应该会更清晰些。 |
我是考虑到固件大小的优化;你这样等于默认平白无故多了些大小 |
添加了 RT_SERIAL_USING_HALF_DUPLEX 宏配置 头文件中因为有RT_SERIAL_CONFIG_DEFAULT的存在,所以serial_configure结构体里面新增的dulpex相关字段没有用这个宏包起来(暂时没想到好的方法😅) |
个人建议还是把半双工的控制交给用户。 |
我建议不要在驱动里做这个事情,很多MCU的uart外设本身就有半双工功能,只需要在config里加入是否使能半双工的选项就行,如果外设不支持,那么由BSP决定是否使用软件去模拟。 |
我觉得可以加,有些用户压根就没有编写的能力;提供一个大致的实现流程给配置挺好. |
问题是,他这个不是驱动的半双工,是应用的半双工,驱动的半双工是外设完成的,他这个是控制外围器件,放到驱动里是不应该的 |
拉取/合并请求描述:(PR description)
[
为什么提交这份PR (why to submit this PR)
使串口驱动(serial_v2)支持半双工通信。
对比用软件包的形式实现半双工通信(i.e. rt-thread-rs485),在 serial 中支持半双工通信的优势是可以更方便地在半双工口(比如rs485)上适配 console 和 ymodem 等组件。
你的解决方案是什么 (what is your solution)
请提供验证的bsp和config (provide the config and bsp)
]
当前拉取/合并请求的状态 Intent for your PR
必须选择一项 Choose one (Mandatory):
代码质量 Code Quality:
我在这个拉取/合并请求中已经考虑了 As part of this pull request, I've considered the following:
#if 0
代码,不包含已经被注释了的代码 All redundant code is removed and cleaned up