c#上位机串口通信助手源代码详解(共16页).docx
《c#上位机串口通信助手源代码详解(共16页).docx》由会员分享,可在线阅读,更多相关《c#上位机串口通信助手源代码详解(共16页).docx(16页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精选优质文档-倾情为你奉上c#上位机串口通信助手源代码实例详解一、 功能1软件打开时,自动检测有效COM端口2 软件打开时,自动复原到上次关闭时的状态3 不必关闭串口,即可直接进行更改初始化设置内容(串口号、波特率、数据位、停止位、校验位),可按更改后的信息自动将串口重新打开4 可统计接收字节和发送字节的个数5 接收数据可按16进制数据和非16进制数据进行整体转换6 可将接收到数据进行保存7 可设置自动发送,发送时间可进行实时更改8可按字符串、16进制字节、文件方式进行发送,字符串和16进制字节可分别进行存储,内容互不干扰9 按16进制发送时,可自动校验格式,不会输错10 可清空发送或接收区域
2、的数据二、 使用工具Visual Studio2015三、 程序详解1 界面创建图1用winform创建如图1所示界面,控件名字分别为:端口号:cbxCOMPort波特率:cbxBaudRate数据位:cbxDataBits停止位:cbxStopBits校验位:label5打开串口按钮:btnOpenCom发送(byte):tbSendCount接收(byte):tbReceivedCount清空计数按钮:btnClearCount按16进制显示:cb16Display接收区清空内容按钮:btnClearReceived保存数据按钮:btnSaveFile接收数据框:tbReceivedDat
3、a发送数据框:tbSendData自动发送:cbAutomaticSend间隔时间:tbSpaceTime按16进制发送:cb16Send发送区清空内容按钮:btnClearSend读入文件按钮:btnReadFile发送按钮:btnSend2 创建一个方法类按Ctrl+shift+A快捷键创建一个类,名字叫Methods,代码为:using System;using System.Collections;using System.Collections.Generic;using System.IO.Ports;using System.Linq;using System.Text;usin
4、g System.Threading.Tasks;namespace 串口助手sdd class Methods /获取有效的COM口 public static string ActivePorts() ArrayList activePorts = new ArrayList(); foreach (string pname in SerialPort.GetPortNames() activePorts.Add(Convert.ToInt32(pname.Substring(3); activePorts.Sort(); string mystr = new stringactivePo
5、rts.Count; int i = 0; foreach (int num in activePorts) mystri+ = COM + num.ToString(); return mystr; /16进制字符串转换为byte字符数组 public static Byte _16strToHex(string strValues) string hexValuesSplit = strValues.Split( ); Byte hexValues = new BytehexValuesSplit.Length; Console.WriteLine(hexValuesSplit.Lengt
6、h); for (int i = 0; i hexValuesSplit.Length; i+) hexValuesi = Convert.ToByte(hexValuesSpliti, 16); return hexValues; /byte数组以16进制形式转字符串 public static string ByteTo16Str(byte bytes) string recData = null;/创建接收数据的字符串 foreach (byte outByte in bytes)/将字节数组以16进制形式遍历到一个字符串内 recData += outByte.ToString(X2)
7、 + ; return recData; /16进制字符串转换字符串 public static string _16strToStr(string _16str) string outStr = null; byte streamByte = _16strToHex(_16str); outStr = Encoding.Default.GetString(streamByte); return outStr; 2 Form1.cs的代码为:using System;using System.Collections.Generic;using System.ComponentModel;usi
8、ng System.Data;using System.Drawing;using System.IO.Ports;using System.Linq;using System.Text;using System.Text.RegularExpressions;using System.Threading.Tasks;using System.Windows.Forms;using System.IO;using System.Collections;namespace 串口助手sdd public partial class Form1 : Form /声明变量 SerialPort sp
9、= new SerialPort(); bool isSetProperty = false;/串口属性设置标志位 private enum PortState/声明接口显示状态,枚举型 打开, 关闭 string path = AppDomain.CurrentDomain.BaseDirectory + confing.ini;/声明配置文件路径 string tbSendDataStr = ;/发送窗口字符串存储 string tbSendData16 = ;/发送窗口16进制存储 List receivedDatas = new List();/接收数据泛型数组 /接收串口数据 pri
10、vate void sp_DataReceived(object sender, SerialDataReceivedEventArgs e) byte ReceivedData = new bytesp.BytesToRead;/创建接收字节数组 sp.Read(ReceivedData, 0, ReceivedData.Length);/读取所接收到的数据 receivedDatas.AddRange(ReceivedData); tbReceivedCount.Text = (Convert.ToInt32(tbReceivedCount.Text) + ReceivedData.Len
11、gth).ToString(); if (cb16Display.Checked) tbReceivedData.Text = Methods.ByteTo16Str(receivedDatas.ToArray(); else tbReceivedData.Text = Encoding.Default.GetString(receivedDatas.ToArray(); sp.DiscardInBuffer();/丢弃接收缓冲区数据 /发送串口数据 private void DataSend() try if (cb16Send.Checked) byte hexBytes = Method
12、s._16strToHex(tbSendData16); sp.Write(hexBytes, 0, hexBytes.Length); tbSendCount.Text = (Convert.ToInt32(tbSendCount.Text) + hexBytes.Length).ToString(); else sp.WriteLine(tbSendDataStr); tbSendCount.Text = (Convert.ToInt32(tbSendCount.Text) + tbSendDataStr.Length).ToString(); catch (Exception ex) M
13、essageBox.Show(ex.Message.ToString(); return; /设置串口属性 private void SetPortProperty() sp.PortName = cbxCOMPort.Text.Trim();/设置串口名 sp.BaudRate = Convert.ToInt32(cbxBaudRate.Text.Trim();/设置波特率 switch (cbxStopBits.Text.Trim()/设置停止位 case 1: sp.StopBits = StopBits.One; break; case 1.5: sp.StopBits = StopB
14、its.OnePointFive; break; case 2: sp.StopBits = StopBits.Two; break; default: sp.StopBits = StopBits.None; break; sp.DataBits = Convert.ToInt32(cbxDataBits.Text.Trim();/设置数据位 switch (cbxParity.Text.Trim()/设置奇偶校验位 case 无: sp.Parity = Parity.None; break; case 奇校验: sp.Parity = Parity.Odd; break; case 偶校
15、验: sp.Parity = Parity.Even; break; default: sp.Parity = Parity.None; break; sp.ReadTimeout = 5000;/设置超时时间为5s Control.CheckForIllegalCrossThreadCalls = false;/这个类中我们不检查跨线程的调用是否合法(因为.net 2.0以后加强了安全机制,,不允许在winform中直接跨线程访问控件的属性) /定义DataReceived事件的委托,当串口收到数据后出发事件 sp.DataReceived += new SerialDataReceived
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- c# 上位 串口 通信 助手 源代码 详解 16
限制150内