C# - 模拟设备 - 与串行端口并行

发布于 2024-08-03 07:55:56 字数 737 浏览 3 评论 0原文

我们正在尝试模拟一个通过并行端口运行的设备。

我们有在 RS232 上运行的完全相同的模型,并且可以从一个端口到另一个端口运行一根零调制解调器电缆,并使用以下设置模拟该设备:

_port = new SerialPort
                {
                    PortName = comport,
                    BaudRate = 9600,
                    DataBits = 8,
                    Parity = Parity.None,
                    StopBits = StopBits.One,
                    DtrEnable = true,
                    RtsEnable = true,
                };

因此,要使用并行端口模拟同一设备,我们只需一根运行的电缆从并行端口到 RS-232 端口。尽管如此,我们不确定这是否是我们需要的正确电缆。

允许并行设备工作的 System.IO.Ports.SerialPort 设置是什么?

我们有一个串口监控程序,但没有数据通过,这让我们认为我们的波特率、停止位、数据位等不正确。

有谁知道并行通信如何在另一端转换为RS-232?

有什么建议吗?这可能吗?我们希望避免使用 2 个并行端口并使用 C# 进行并行通信(这会很耗时)。

We are trying to emulate a device that runs off a parallel port.

We have the exact same model that runs on RS232, and can run a null modem cable from one port to another and emulate the device with the following settings:

_port = new SerialPort
                {
                    PortName = comport,
                    BaudRate = 9600,
                    DataBits = 8,
                    Parity = Parity.None,
                    StopBits = StopBits.One,
                    DtrEnable = true,
                    RtsEnable = true,
                };

So to emulate the same device with a parallel port, we merely got a cable that runs from parallel to a RS-232 port. Although, we are not sure if it is the correct cable we need.

What are the System.IO.Ports.SerialPort settings that would allow the parallel device to work?

We have a serial port monitoring program and no data is coming through, this makes us think that our baud rate, stop bits, data bits, etc. are incorrect.

Does anyone know how parallel communication is translated to RS-232 on the other end?

Any suggestions? Is this even possible? We want to avoid having 2 parallel ports and using C# to communicate over parallel (it would be time consuming).

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

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

发布评论

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

评论(1

小清晰的声音 2024-08-10 07:55:56

您需要的不仅仅是一根电缆,您还需要一个转换器。

You need more than just a cable, you need a converter. Here is one such device. I haven't used this model, but I've used other converters in the past successfully.

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