- 浏览: 72953 次
- 性别:
- 来自: 厦门
最新评论
-
BlueBing:
linyuliang 写道BlueBing 写道我想再做些修改 ...
IBatis Abator去除注释版 -
linyuliang:
BlueBing 写道我想再做些修改 可否提供下源码呢晚上我回 ...
IBatis Abator去除注释版 -
linyuliang:
xiaohu7924 写道为什么我用这个生成的名字不是你说的驼 ...
IBatis Abator去除注释版 -
xiaohu7924:
为什么我用这个生成的名字不是你说的驼锋名字,还是老样子
IBatis Abator去除注释版 -
BlueBing:
我想再做些修改 可否提供下源码呢
IBatis Abator去除注释版
原文作者:ivanx
转载自:http://bbs.msproject.cn/
[翻译]
Tapan Dantre.著Serial Communication using C# and Whidbey
[简介]
本文将介绍如何在.NET平台下使用C#创建串口通信程序,.NET 2.0提供了串口通信的功能,其命名
空间是System.IO.Ports。这个新的框架不但可以访问计算机上的串口,还可以和串口设备进行通信。
我们将使用标准的RS <!----><st1:chmetcnv w:st="on" tcsc="0" numbertype="1" negative="False" hasspace="True" sourcevalue="232" unitname="C">232 C</st1:chmetcnv> 在PC间通信。它工作在全双工模式下,而且我们不打算使用任何的握手
或流控制器,而是使用无modem连接。
命名空间
System.IO.Ports命名空间中最重用的是SerialPort 类。
创建SerialPort 对象
通过创建SerialPort 对象,我们可以在程序中控制串口通信的全过程。
我们将要用到的SerialPort 类的方法:
ReadLine():从输入缓冲区读一新行的值,如果没有,会返回NULL
WriteLine(string):写入输出缓冲
Open():打开一个新的串口连接
Close():关闭<!----><o:p></o:p>
Code: <o:p></o:p>
//create a <st1:place w:st="on"><st1:placename w:st="on">Serial</st1:placename> <st1:placetype w:st="on">Port</st1:placetype></st1:place> object
SerialPort sp = new SerialPort ();<o:p></o:p>
默认情况下,DataBits 值是8,StopBits 是1,通信端口是COM1。这些都可以在下面的属性中重新设置
:
BaudRate:串口的波特率
StopBits:每个字节的停止位数量
ReadTimeout:当读操作没有完成时的停止时间。单位,毫秒
还有不少其它公共属性,自己查阅MSDN。
串口的硬件知识
在数据传输的时候,每个字节的数据通过单个的电缆线传输。包包括开始位,数据,结束为。一旦
开始位传出,后面就会传数据,可能是5,6,7或8位,就看你的设定了。发送和接收必须设定同样
的波特率和数据位数。
无猫模式
没有Modem模式的电缆只是简单地交叉传送和接收线。同样DTR & DSR, 和 RTS & CTS也需要交叉。
RS232针图
<!----><v:shapetype id="_x0000_t75" stroked="f" filled="f" path="m@4@5l@4@11@9@11@9@5xe" o:preferrelative="t" o:spt="75" coordsize="21600,21600"><v:stroke joinstyle="miter"></v:stroke><v:formulas><v:f eqn="if lineDrawn pixelLineWidth 0"></v:f><v:f eqn="sum @0 1 0"></v:f><v:f eqn="sum 0 0 @1"></v:f><v:f eqn="prod @2 1 2"></v:f><v:f eqn="prod @3 21600 pixelWidth"></v:f><v:f eqn="prod @3 21600 pixelHeight"></v:f><v:f eqn="sum @0 0 1"></v:f><v:f eqn="prod @6 1 2"></v:f><v:f eqn="prod @7 21600 pixelWidth"></v:f><v:f eqn="sum @8 21600 0"></v:f><v:f eqn="prod @7 21600 pixelHeight"></v:f><v:f eqn="sum @10 21600 0"></v:f></v:formulas><v:path o:connecttype="rect" gradientshapeok="t" o:extrusionok="f"></v:path><o:lock aspectratio="t" v:ext="edit"></o:lock></v:shapetype><v:shape id="_x0000_i1027" style="WIDTH: 384pt; HEIGHT: 209.25pt" alt="RS232针图" type="#_x0000_t75"><v:imagedata o:href="http://bbs.msproject.cn/upload_image/8271b993-2871-4ba9-8baf-2966541307a7.jpg" src="file:///C:\DOCUME~1\WHITEL~1\LOCALS~1\Temp\msohtml1\01\clip_image001.jpg"></v:imagedata></v:shape>
这里,我们三条线。互连2和3(一段的2pin连接3pin),连接两端的5pin。
[示例程序]
主程序
<v:shape id="_x0000_i1028" style="WIDTH: 301.5pt; HEIGHT: 228.75pt" alt="主程序" type="#_x0000_t75"><v:imagedata o:href="http://bbs.msproject.cn/upload_image/d5b82699-bfc6-4a3d-84a3-240041ece64a.jpg" src="file:///C:\DOCUME~1\WHITEL~1\LOCALS~1\Temp\msohtml1\01\clip_image002.jpg"></v:imagedata></v:shape>
如果想使用默认属性,按“Save Status”按钮,如果想改变属性按“Property”。它会弹出下图:
<v:shape id="_x0000_i1025" style="WIDTH: 225pt; HEIGHT: 254.25pt" alt="image" type="#_x0000_t75"><v:imagedata o:href="http://bbs.msproject.cn/upload_image/00e44a01-d6e6-411c-a9a1-35b1ed0c0c0e.jpg" src="file:///C:\DOCUME~1\WHITEL~1\LOCALS~1\Temp\msohtml1\01\clip_image003.jpg"></v:imagedata></v:shape>
设定好之后,可以通信了。
<v:shape id="_x0000_i1026" style="WIDTH: 300.75pt; HEIGHT: 229.5pt" alt="image" type="#_x0000_t75"><v:imagedata o:href="http://bbs.msproject.cn/upload_image/32482017-a212-4023-aed3-544e423eb879.jpg" src="file:///C:\DOCUME~1\WHITEL~1\LOCALS~1\Temp\msohtml1\01\clip_image004.jpg"></v:imagedata></v:shape>
<v:shape id="_x0000_i1029" style="WIDTH: 301.5pt; HEIGHT: 228.75pt" alt="image" type="#_x0000_t75"><v:imagedata o:href="http://bbs.msproject.cn/upload_image/de6e558f-2406-41ab-8ae3-89ea7e4acd6d.jpg" src="file:///C:\DOCUME~1\WHITEL~1\LOCALS~1\Temp\msohtml1\01\clip_image005.jpg"></v:imagedata></v:shape>
主窗口的代码<o:p></o:p>
Code: <o:p></o:p>
#region Using directives
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Windows.Forms;
using System.IO.Ports;
#endregion
namespace Serialexpample
{
partial class Form1 : Form
{
//create instance of property page
//property page is used to set values for stop bits and
//baud rate
PropertyPage pp = new PropertyPage();
//create an Serial Port object
SerialPort sp = new SerialPort();
public Form1()
{
InitializeComponent();
}
private void propertyButton_Click(object sender, EventArgs e)
{
//show property dialog
pp.ShowDialog();
propertyButton.Hide();
}
private void sendButton_Click(object sender, EventArgs e)
{
try
{
//write line to serial port
sp.WriteLine(textBox.Text);
//clear the text box
textBox.Text = "";
}
catch (System.Exception ex)
{
baudRatelLabel.Text = ex.Message;
}
}
private void ReadButton_Click(object sender, EventArgs e)
{
try
{
//clear the text box
textBox.Text = "";
//read serial port and displayed the data in text box
textBox.Text = sp.ReadLine();
}
catch(System.Exception ex)
{
baudRatelLabel.Text = ex.Message;
}
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
MessageBox.Show("Do u want to Close the App");
sp.Close();
}
private void startCommButton_Click(object sender, EventArgs e)
{
startCommButton.Hide();
sendButton.Show();
readButton.Show();
textBox.Show();
}
//when we want to save the status(value)
private void saveStatusButton_Click_1(object sender, EventArgs e)
{
//display values
//if no property is set the default values
if (pp.bRate == "" && pp.sBits == "")
{
dataBitLabel.Text = "BaudRate = " + sp.BaudRate.ToString();
readTimeOutLabel.Text = "StopBits = " + sp.StopBits.ToString();
}
else
{
dataBitLabel.Text = "BaudRate = " + pp.bRate;
readTimeOutLabel.Text = "StopBits = " + pp.sBits;
}
parityLabel.Text = "DataBits = " + sp.DataBits.ToString();
stopBitLabel.Text = "Parity = " + sp.Parity.ToString();
readTimeOutLabel.Text = "ReadTimeout = " +
sp.ReadTimeout.ToString();
if (propertyButton.Visible == true)
propertyButton.Hide();
saveStatusButton.Hide();
startCommButton.Show();
try
{
//open serial port
sp.Open();
//set read time out to 500 ms
sp.ReadTimeout = 500;
}
catch (System.Exception ex)
{
baudRatelLabel.Text = ex.Message;
}
}
}
}<o:p></o:p>
属性设置对话框代码:<o:p></o:p>
Code: <o:p></o:p>
#region Using directives
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
#endregion
namespace Serialexpample
{
partial class PropertyPage : Form
{
//variables for storing values of baud rate and stop bits
private string baudR="";
private string stopB="";
//property for setting and getting baud rate and stop bits
public string bRate
{
get
{
return baudR;
}
set
{
baudR = value;
}
}
public string sBits
{
get
{
return stopB;
}
set
{
stopB = value;
}
}
public PropertyPage()
{
InitializeComponent();
}
private void cancelButton_Click(object sender, EventArgs e)
{
this.bRate = "";
this.sBits = "";
//close form
this.Close();
}
private void okButton_Click_1(object sender, EventArgs e)
{
//here we set the value for stop bits and baud rate.
this.bRate = BaudRateComboBox.Text;
this.sBits = stopBitComboBox.Text;
//
this.Close();
}
}
}<o:p></o:p>
发表评论
-
实现GridView控件的删除多条记录功能系列(1)
2005-08-10 14:15 1450在Asp.Net 2.0中新增的控件GridView可 ... -
实现GridView控件的删除多条记录功能系列(2)
2005-08-10 14:55 1300在上一篇中,我们已经开发了需要的CheckBox控件, ... -
实现GridView控件的删除多条记录功能系列(3)
2005-08-11 12:18 1321本篇将讲述如何解决GridView控件中使用Check ... -
[转]C#正则表达式小结
2007-09-24 11:38 1209地址: http://www.cnblogs.co ... -
[转]全面剖析C#正则表达式
2007-09-24 11:41 1378地址:http://fineboy.cnblogs.com/ ... -
(转贴)VS.NET下水晶报表分发时的问题及解决
2007-10-18 17:27 1169一、载入报表时报错 ... -
(转贴)图解使用VS.NET部署含水晶报表的网站
2007-10-18 17:56 2127Crystal Report ,中文名称“水晶报表”,因为做报 ... -
[转]VS2005 web程序自定义安装包的制作
2007-10-23 10:28 2113利用VS2005的“Web安装项目”建立安装包很难对安装过程进 ... -
[转]使用C#进行点对点通讯和文件传输(通讯基类部分)
2007-10-24 10:59 907最近一个项目要用到点对点文件传输,俺就到处找资料写程序,最后终 ... -
[转]使用C#进行点对点通讯和文件传输(发送接收部分)
2007-10-24 11:00 1657上面介绍了通讯的基类,下面就是使用那个类进行发送和接收的部分: ... -
[转]C#多线程编程实例实战
2007-10-24 11:02 1668单个写入程序/多个阅读程序在.Net类库中其实已经提供了实现, ... -
[转]实现同时只允许运行一个程序实例
2007-10-24 11:06 1129方法一: /// <summary> /// 从这 ... -
[转]IIS虚拟目录控制类
2007-10-24 11:08 447using System;using System.Data; ... -
[转]C# 调用API,实现注销远程登录本机的用户
2007-10-24 11:08 1842using System;using System.Manag ... -
[转]C#的usb通讯编程
2007-10-24 11:10 2810using System;using System.Colle ... -
[转]IIS站点管理类
2007-10-24 11:10 951using System;using System.Colle ... -
[转]使用.NET实现断点续传
2007-10-24 11:11 1319断点续传的原理 在了解HTTP断点续传的原理之前,先来说说HT ... -
[转]Datagridview 实现二维表头
2007-10-26 16:42 2339最近把我们的b/s系统,增加智能客户端的功能。确实智能客户端是 ... -
[转]Web项目下NHibernate的Session管理的解决方案
2007-11-07 10:47 3390NHibernate的Session的管理一直是个问题,在系统 ... -
[转] NHibernate对像版本控制使用示例
2007-11-07 10:49 1252<version name="Version& ...
相关推荐
C#中串口通信编程,本文将介绍如何在.NET平台下使用C#创建串口通信程序,.NET 2.0提供了串口通信的功能,其命名空间是System.IO.Ports。这个新的框架不但可以访问计算机上的串口,还可以和串口设备进行通信。我们将...
C#中串口通信编程 C#中串口通信编程是指在.NET平台下使用C#语言创建串口通信程序,利用.NET 2.0提供的串口通信功能,实现计算机与串口设备之间的通信。在这篇文章中,我们将介绍如何使用C#语言创建串口通信程序,...
### C#中串口通信编程 #### 一、引言 在现代软件开发中,不同设备之间的通信变得越来越重要。特别是在工业自动化、嵌入式系统等领域,串口通信是一种非常常见的技术手段。C#作为.NET平台上的一种流行语言,提供了...
读者可以通过阅读该文档,进一步提升自己在C#串口通信编程方面的技能。 总之,C#中的串口通信编程是一项实用的技术,对于开发涉及硬件交互的应用来说必不可少。通过熟练掌握`SerialPort`类的使用,开发者可以构建出...
1. **C#串口通信基础** C#提供了`System.IO.Ports`命名空间,其中的`SerialPort`类是进行串口通信的核心。通过实例化`SerialPort`对象并设置相关参数,我们可以打开、关闭串口,设置波特率、数据位、停止位、校验位...
综上所述,C#版串口通信编程涉及对`SerialPort`类的深入理解和灵活运用。通过设置正确的参数,利用事件驱动编程,可以实现稳定可靠的串口通信,无论是发送命令还是接收设备反馈,都是开发中不可或缺的一部分。在进行...
串口通信编程大全串口通信编程大全串口通信编程大全串口通信编程大全串口通信编程大全串口通信编程大全串口通信编程大全串口通信编程大全串口通信编程大全串口通信编程大全串口通信编程大全串口通信编程大全串口通信...
### C#串口通信编程详解 #### 一、引言 随着嵌入式系统和物联网技术的发展,串口通信作为一种常见的通信方式,在多种场景中得到了广泛的应用。C#作为一种功能强大的编程语言,提供了丰富的库来支持串口通信的实现...
本文将详细解析"**C#多串口通信数据接收处理**"的相关知识点,帮助开发者理解如何在C#环境中实现多串口通信,并对接收到的数据进行有效处理。 首先,C#是一种面向对象的编程语言,广泛应用于Windows平台的开发,...
C#中串口通信编程,本文将介绍如何在.NET平台下使用C#创建串口通信程序,.NET 2.0提供了串口通信的功能,其命名空间是System.IO.Ports。这个新的框架不但可以访问计算机上的串口,还可以和串口设备进行通信。我们将...
**C#串口通信编程**是计算机编程领域中一个重要的技术点,特别是在设备交互、嵌入式系统开发以及物联网应用中。本实例是基于C#语言,在Visual Studio 2005环境下实现的一个串口通信程序,通过串行端口进行数据发送与...
C#语言作为一种现代化的编程语言,提供了丰富的API函数,能够轻松地实现串口通信。 在串口通信中,需要设置串口的参数,例如波特率、数据位、停止位、奇偶校验等。C#语言提供了相关的API函数,例如SerialPort类,...
### C#串口通信详解与数据丢失问题的解决方法 #### 概述 串口通信是一种常见的设备间数据传输方式,在工业控制、自动化测试等领域应用广泛。然而,在使用C#进行串口通信开发时,很多开发者都遇到过数据丢失的问题...
在C#中实现串口通信,主要依赖于.NET框架提供的`System.IO.Ports`命名空间,它包含了`SerialPort`类,可以方便地进行串行端口操作。 串口通信,也称为串行通信,是指数据通过串行方式传输,一次传输一个比特。在C#...
综上所述,C#在串口和USB通信编程方面提供了强大的支持。无论是传统的串口通信,还是现代的USB交互,甚至是通过USB进行打印,C#都有相应的解决方案。通过理解并运用这些技术,开发者可以构建出与各种硬件设备高效...
在串口通信中,C#作为上位机编程语言,通过串行端口(COM口)与下位机进行数据交换。 C#语言提供了一套完善的类库来支持串口通信,这些类位于`System.IO.Ports`命名空间中。其中,`SerialPort`类是核心,它包含了...
总的来说,这个压缩包提供的C#串口编程代码将涵盖串口的基础配置、多串口管理、多线程并行处理和事件驱动编程等核心知识点,对于提升C#开发者在串口通信领域的技能有很大帮助。通过研究这些代码,你可以更深入地理解...
串口通信的实现,编程环境为C#,实现技术采用了多线程方式