Compact 框架中的串行端口 - RTSEnable 和 DtrEnable

发布于 2024-07-14 14:19:36 字数 526 浏览 7 评论 0原文

如何使用RTSEnableDtrEnable? 我发现某些天平可以与我的应用程序通信,但其他天平即使设置匹配也无法通信。 (波特率、奇偶校验、数据位、停止位和握手)

串行端口设置保存在配置文件中,其想法是在需要时支持可能设置的不同组合。 通常,我们的设备被编程为具有 handshake = NONE,但如果某些奇怪的设备不能具有 handshake=NONE,我应该插入一个条件,例如:

if (serialport.Handshake != NONE) {
    serialport.RTSEnable = true;
    serialport.DtrEnable = true;
}

或者更确切地说,如果没有将 RTSEnableDtrEnable 设置为 true,其他握手(NONE 除外)是否可以正常工作?

How are RTSEnable and DtrEnable used? I am finding that some balances can communicate with my app but others can't even though the settings match. (baud rate, parity, data bits, stop bits and handshake)

The serial port settings are saved in the configurations file and the idea is to support different combinations of the possible settings, if needed. Normally, our devices are programmed to have handshake = NONE, but in case some odd device can't have handshake=NONE, should I insert a condition such as:

if (serialport.Handshake != NONE) {
    serialport.RTSEnable = true;
    serialport.DtrEnable = true;
}

Or rather, will other handshakes (other than NONE) work without RTSEnable and DtrEnable being set to true?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

所有深爱都是秘密 2024-07-21 14:19:36

是否需要硬件握手完全取决于您所连接的串行设备。 您必须阅读设备的 OEM 规格,并查看设备是否需要握手以及是否需要对 RTS 或 DTR 进行任何特殊处理。

Whether or not hardware handshaking is required is based solely on the serial device you're attaching to. You would have to read the OEM specs for the device and see if the device needs handshaking and if it needs any special handling of RTS or DTR.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文