Driving DTR with System.IO.Ports.SerialPort in .NET(在 .NET 中使用 System.IO.Ports.SerialPort 驱动 DTR)
问题描述
我有一个传感器,它通过 USB 使用 RS232 接收来自 PC 的命令并将数据发送到 PC.
I have a sensor that uses RS232 over USB to receive commands from a PC and send data to the PC.
需要先重置传感器(使用 DTR 线),然后才能向其发送命令.
The sensor needs to be reset (using the DTR line) before a command can be sent to it.
我尝试使用内置的 .net 串行端口,但它似乎无法按预期驱动 DTR 线.我开始怀疑 DTREnable 属性是否真的驱动 DTR 引脚,或者它是否仅在握手期间启用它.
I tried to use the built-in .net serial port, but it does not seem to drive the DTR line as expected. I am beginning to wonder if the DTREnable property actually drives the DTR pin, or if it only enables it during handshaking.
我可以在网上找到的其他 SerialPort 实现也使用 Win32 API,但我发现使用这些实现关闭端口非常困难.如果我单步执行代码,我可以看到它卡在 WaitOne 命令上.
Other SerialPort implementations that I could find on the web also uses the Win32 API, but I find it very difficult to close the port with these implementations. If I step through code I can see it gets stuck on a WaitOne command.
有谁知道如何使用 System.IO.Ports.SerialPort 驱动 DTR?或者知道那里有一个好的组件?
Anyone know how to drive DTR with System.IO.Ports.SerialPort? Or know of a good component out there?
推荐答案
我写这个是为了测试 DTR.它使用我的 USB 串口适配器按预期工作.我通过将电缆连接到我的 DataTracker(RS232 接线盒,带 LED)来检查它.DTR 确实发生了变化.
i wrote this to test DTR. it works as expected using my USB serialport adapter. i checked it by attaching the cable to my DataTracker (RS232 breakout box, with LED's). DTR does change.
Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
SerialPort1.Close()
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
SerialPort1.PortName = "COM5"
SerialPort1.Open()
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
SerialPort1.RtsEnable = True
Debug.WriteLine("DTR +")
System.Threading.Thread.Sleep(1000)
SerialPort1.DtrEnable = True 'DTR -
Debug.WriteLine("DTR -")
System.Threading.Thread.Sleep(1000)
SerialPort1.DtrEnable = False 'DTR +
Debug.WriteLine("DTR +")
System.Threading.Thread.Sleep(1000)
SerialPort1.RtsEnable = False
End Sub
这篇关于在 .NET 中使用 System.IO.Ports.SerialPort 驱动 DTR的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 .NET 中使用 System.IO.Ports.SerialPort 驱动 DTR
基础教程推荐
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- c# Math.Sqrt 实现 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01