資源簡介
C# 串口調(diào)試程序 源碼下載,代碼中包括了一個(gè)串口開發(fā)輔助類,在這個(gè)類中幾乎包括了全部的串口調(diào)試操作功能,本程序也可以看作是圍繞這個(gè)串口調(diào)試類所編寫的實(shí)例,運(yùn)行注意,請確保你的計(jì)算機(jī)中有串口,未掃描到該計(jì)算機(jī)的COM口,請?zhí)砑佑布笾匦麓蜷_程序!測試時(shí)的串口號,默認(rèn)COM1,程序根據(jù)結(jié)束字節(jié)來判斷是否全部獲取完成。
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
using?System.IO.Ports;
//Download?by?http://www.codefans.net
namespace?CShapeSerialPort
{
????public?partial?class?MainFrom?:?Form
????{
????????private?SerialPortUtil?comPort?=?new?SerialPortUtil();
????????private?System.Timers.Timer?timer?=?new?System.Timers.Timer();
????????public?MainFrom()
????????{
????????????InitializeComponent();
????????}
????????private?void?COMOpen()
????????{
????????????if?(!comPort.IsOpen)
????????????{
????????????????try
????????????????{
????????????????????comPort.OpenPort();
????????????????????btnOpenClose.Text?=?“關(guān)閉串口“;
??????????????????
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件???????4286??2012-08-27?14:31??C#?DemoCShapeSerialPort\CShapeSerialPort\1_vspdconfig.ico
?????文件???????3815??2012-08-27?14:33??C#?DemoCShapeSerialPort\CShapeSerialPort\CShapeSerialPort.csproj
?????文件???????9366??2013-08-24?22:47??C#?DemoCShapeSerialPort\CShapeSerialPort\MainFrom.cs
?????文件??????18015??2013-08-24?22:47??C#?DemoCShapeSerialPort\CShapeSerialPort\MainFrom.Designer.cs
?????文件??????12743??2012-08-30?15:39??C#?DemoCShapeSerialPort\CShapeSerialPort\MainFrom.resx
?????文件????????537??2013-08-24?22:48??C#?DemoCShapeSerialPort\CShapeSerialPort\Program.cs
?????文件???????1364??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties\AssemblyInfo.cs
?????文件???????2882??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties\Resources.Designer.cs
?????文件???????5612??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties\Resources.resx
?????文件???????1101??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties\Settings.Designer.cs
?????文件????????249??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties\Settings.settings
?????文件??????18161??2012-08-30?15:17??C#?DemoCShapeSerialPort\CShapeSerialPort\SerialPortUtil.cs
?????文件???????1036??2012-08-28?14:55??C#?DemoCShapeSerialPort\CShapeSerialPort.sln
?????目錄??????????0??2012-08-25?14:02??C#?DemoCShapeSerialPort\CShapeSerialPort\Properties
?????目錄??????????0??2013-08-24?22:47??C#?DemoCShapeSerialPort\CShapeSerialPort
?????目錄??????????0??2013-08-24?22:44??C#?DemoCShapeSerialPort
?????文件????????305??2017-09-13?10:33??新建文本文檔.txt
-----------?---------??----------?-----??----
????????????????79472????????????????????17
評論
共有 條評論