Is it possible to simulate com port sending and receiving data using only C# programming?(是否可以仅使用 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 端口发送和接收数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以仅使用 C# 编程来模拟 com 端口发送和接收数据?
基础教程推荐
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- MS Visual Studio .NET 的替代品 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01