更改 boost::asio::serial_port 的 DCB 结构
我想使用 boost::asio::serial_port::set_option
函数禁用 RTSControl。 并且还能够升高或降低DTR
线?
boost::asio::serial_port_base::baud_rate baud_option(115200);
serialPort.set_option(baud_option);
标准选项效果很好,但我不知道如何更改 DCB
结构,或者说如何控制RS232信号线。
I'd like to disable RTSControl using boost::asio::serial_port::set_option
function. and also be able to raise or lower the DTR
line?
boost::asio::serial_port_base::baud_rate baud_option(115200);
serialPort.set_option(baud_option);
The standard options work great, but I can't figure out, how to change theDCB
structure, or how to control the RS232 signal lines.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可设置串行端口选项要求 (强调我的):
Settable serial port option requirements (emphasis mine):