一、串口初始化
定義:
using System.IO.Ports;
SerialPort myPort = new SerialPort()
初始化:
? ? ? ??//port初始化
????????public void _port_Init(string comName)
????????{
????????????myPort.PortName = comName;
????????????myPort.BaudRate = 9600;
????????????myPort.DataBits = 8;
????????????myPort.Parity = Parity.None;
????????????myPort.ReadTimeout = 1000;
????????????myPort.Open();
????????????myPort.DataReceived += new SerialDataReceivedEventHandler(myPort_DataReceived);
????????}
二、串口接收事件
? ? ? ??//接收事件
????????void myPort_DataReceived(object sender, SerialDataReceivedEventArgs e)
????????{
????????????if (myPort.IsOpen)
????????????{
????????????????try
????????????????{
? ? ? ? ? ? ? ? ? ? byte[] receiveData = new byte[myPort.BytesToRead];//用receiveData數(shù)組讀取
? ? ? ? ? ? ? ? ? ? myPort.Read(receiveData, 0, receiveData.Length);//讀取數(shù)據(jù)
? ? ? ? ? ? ? ? ? ? //myPort.DiscardInBuffer();
? ? ? ? ? ? ? ? ? ? for (int i = 0; i < receiveData.Length; i++)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? check[i] = receiveData[i]; ? ? ? ? ? ? ? ? ? ? ? ? ? ? //簡單的定義了一個byte check[1000]接收數(shù)據(jù)
? ? ? ? ? ? ? ? ? ? ? ? Console.Write(check[i]);
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? string strRcv = null;
? ? ? ? ? ? ? ? ? ? for (int i = 0; i < receiveData.Length; i++)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? strRcv += receiveData[i].ToString("X2");//十六進制顯示
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? /*使用委托,如果需要修改控件*/
????????????????}
????????????????catch (System.Exception ex)
????????????????{
????????????????????MessageBox.Show(ex.Message, "出錯提示");
????????????????}
????????????}
????????}
三、串口發(fā)送
對應單片機里的串口中斷
? ? ? ? ? ??cmd = "55";
????????????bytCmd[0] = Convert.ToByte(cmd.Substring(0, 2), 16);
????????????myPort.Write(bytCmd, 0, 1);
存留備份
//port發(fā)送
????????public void _port_DataSend(string strCommand)
????????{
????????????//處理數(shù)字轉換
????????????string sendBuf = strCommand;
????????????string sendnoNull = sendBuf.Trim();
????????????string sendNOComma = sendnoNull.Replace(',', ' '); //去掉英文逗號
????????????string sendNOComma1 = sendNOComma.Replace(',', ' '); //去掉中文逗號
????????????string strSendNoComma2 = sendNOComma1.Replace("0x", ""); //去掉0x
????????????strSendNoComma2.Replace("0X", ""); //去掉0X
????????????//用' '分開成多個字符串,用strArray裝
????????????string[] strArray = strSendNoComma2.Split(' ');
????????????int byteBufferLength = strArray.Length;//獲取strArray個數(shù)
????????????for (int i = 0; i < strArray.Length; i++)//排除空格數(shù)字
????????????{
????????????????if (strArray[i] == "")
????????????????{
????????????????????byteBufferLength--;
????????????????}
????????????}
????????????// int temp = 0;
????????????byte[] byteBuffer = new byte[byteBufferLength];
????????????int ii = 0;
????????????for (int i = 0; i < strArray.Length; i++) //對獲取的字符做相加運算
????????????{
????????????????int decNum = 0;
????????????????decNum = Convert.ToInt32(strArray[i], 16); //atrArray[i] == 12時,temp == 18
????????????????try //防止輸錯,使其只能輸入一個字節(jié)的字符
????????????????{
????????????????????byteBuffer[ii] = Convert.ToByte(decNum);
????????????????}
????????????????catch (System.Exception ex)
????????????????{
????????????????????MessageBox.Show("字節(jié)越界,請逐個字節(jié)輸入!", "Error");
????????????????????//tmSend.Enabled = false;
????????????????????return;
????????????????}
????????????????ii++;
????????????}
????????????myPort.Write(byteBuffer, 0, byteBuffer.Length);
????????}
四、一些參考目錄:
http://blog.csdn.net/lllljz/article/details/7603400
http://www.cnblogs.com/elaron/archive/2011/03/15/1985378.html
http://blog.csdn.net/geekwangminli/article/details/7851673
http://blog.csdn.net/cy757/article/details/4474930
http://www.cnblogs.com/screes/p/5633383.html
? ? ? ? ? ? ? ?
?
? ? ? ? ? ? ? ?閱讀(70) | 評論(0) | 轉發(fā)(0) | ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?0
上一篇:光衰代碼整理學習
下一篇:STM32的結構和啟動模式
相關熱門文章 ? ? ? ? ? ?C# + Socket斷線重連 ?C#解決EventHandler參數(shù)無法傳... ?解決因為sql server 存儲過程... ?水晶報表(使用VS2010配合水晶... ?.Net/C# 開發(fā)WinFrom布局詳解... ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? 給主人留下些什么吧!~~
? ? ? ? ?評論熱議