是否可以仅使用 C# 编程来模拟 com 端口发送和接收数据?

Is it possible to simulate com port sending and receiving data using only C# programming?(是否可以仅使用 C# 编程来模拟 com 端口发送和接收数据?)
本文介绍了是否可以仅使用 C# 编程来模拟 com 端口发送和接收数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个设备通过我的计算机上的 com 端口发送数据.

I have a device which sends data by com port on my computer.

我知道如何模拟它,但是必须插入控制器才能模拟发送数据(使用Proteus)

I know how to simulate it, but the controller must be plugged in to simulate sending data (using Proteus)

是否可以在不插入任何外部设备的情况下模拟com端口发送数据?

Is it possible to simulate the com port sending data without having any external device plugged in?

例如:我想写一个打开 com 端口并等待数据的 C# 程序,以及另一个在同一个端口上写入数据的 C# 程序.

For example: I want to write a C# program which opens the com port and waits for data, and another c# program which writes data on the same port.

推荐答案

最好的方法是使用软件 COM 端口仿真器.我使用 com0com :

The best way to do this is to use a software COM port emulator. I use com0com :

零调制解调器模拟器

这在系统上提供了虚拟 NM COM 端口对(即:输出到一个是输入到另一个,反之亦然).这些设备显示在设备管理器中就像一个真正的 COM 端口,因此您可以在 C# 中与它们进行交互,就好像它们是真正的硬件设备一样.

This provides virtual NM COM port pairs on the system (ie: what is output to one is input to the other and vice-versa). The devices show up in Device Manager just like a real COM port so you interact with them in C# as though they were real hardware devices.

这篇关于是否可以仅使用 C# 编程来模拟 com 端口发送和接收数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)