摘要: 朋友要求帮忙做个串口模块,让他的程序来收发串口消息。头一次做串口编程,留下脚印,总结一下这方面的知识。电脑没有串口怎么办?VSPD(Vitual Serial Port Driver)可以在WIN7上创建虚拟串口,非常方便。安装方式参考:Windows 7 虚拟串口 VSPD 6。安装完,利用串口调试助手,就可以看见COM口之间的通信了。C#如何操作串口?System.IO.Ports 命名空间下的组件,用来操作串口。using System;using System.IO.Ports;namespace SerialPortDemo{ class Program { ... 阅读全文
posted @ 2013-05-03 13:40 Andrew Xue 阅读(512) 评论(0) 推荐(0) 编辑