资源简介
串口通信DLL,包括了串口数据发送,数据接收,数据接收等待...
该工程是一个实际应用于通信设备程序中的部分组件。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.IO.Ports;
using System.IO;
using System.Windows.Forms;
namespace Com
{
public class ClsCom
{
public SerialPort Com;
//初始化
private void InitialCom()
{
//测试串口
getCom();
}
#region 串口设置
public void setCom(string[] ComStr)
{
File.WriteAllLines(Application.StartupPath + “\\com.glux“ ComStr);
}
public string [] getCom()
{
if (File.Exists(Application.StartupPath + “\\com.glux“))
{
string[] ComStr = File.ReadAllLines(Application.StartupPath + “\\com.glux“);
Com = new SerialPort(ComStr[0] Convert.ToInt32(ComStr[1]) Parity.None Convert.ToInt16(ComStr[2]) StopBits.One);
return ComStr;
}
else
{
Com = new SerialPort(“com1“ 19200 Parity.None 8 StopBits.One);
String[] ComStr = new string[5] { “com1“ “19200“ “8“ “无校验(NONE)“ “none“ };
File.WriteAllLines(Application.StartupPath + “\\com.glux“ ComStr); //创建该文件
return ComStr;
}
}
#endregion
#region 数据位调整
public void setDataBit(string ComStr)
{
string[] CC = new string[1] { ComStr };
File.WriteAllLines(Application.StartupPath + “\\Correction.glux“ CC);
}
public string getDataBit()
{
if (File.Exists(Application.StartupPath + “\\Correction.glux“))
{
string[] ComStr = File.ReadAllLines(Application.StartupPath + “\\Correction.glux“);
return ComStr[0];
}
else
{
String[] ComStr = new string[1] { “65536“ };
File.WriteAllLines(Application.StartupPath + “\\Correction.glux“ ComStr); //创建该文件s
return ComStr[0];
}
}
#endregion
#region 串口操作
//打开串口
public bool OpenCom()
{
InitialCom();
try
{
if (!Com.IsOpen)
{
Com.Open();
}
return true;
}
catch (Exception)
{
return false;
}
}
//关闭串口
public bool CloseCom()
{
try
{
if (Com.IsOpen)
{
Com.Close();
}
return true;
}
catch (Exception)
{
return false;
}
}
//获取串口返回的数据,有时间限制
public bool ReadGetComTime(byte data)
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 20480 2010-03-09 13:39 Com\Com\bin\Debug\Com.dll
文件 19968 2010-03-09 13:39 Com\Com\bin\Debug\Com.pdb
文件 7319 2010-03-09 13:39 Com\Com\ClsCom.cs
文件 1993 2010-01-26 14:11 Com\Com\Com.csproj
文件 118 2010-03-09 13:39 Com\Com\obj\Com.csproj.FileList.txt
文件 20480 2010-03-09 13:39 Com\Com\obj\Debug\Com.dll
文件 19968 2010-03-09 13:39 Com\Com\obj\Debug\Com.pdb
文件 1301 2010-01-18 11:53 Com\Com\Properties\AssemblyInfo.cs
文件 898 2010-01-18 11:53 Com\Com.sln
..A..H. 10240 2010-03-09 13:40 Com\Com.suo
目录 0 2010-01-18 11:53 Com\Com\obj\Debug\Refactor
目录 0 2010-01-18 11:53 Com\Com\obj\Debug\TempPE
目录 0 2010-03-09 13:39 Com\Com\bin\Debug
目录 0 2010-03-09 13:39 Com\Com\obj\Debug
目录 0 2010-01-18 11:53 Com\Com\bin
目录 0 2010-03-09 13:39 Com\Com\obj
目录 0 2010-01-18 11:53 Com\Com\Properties
目录 0 2010-03-09 13:39 Com\Com
目录 0 2010-01-18 11:53 Com
----------- --------- ---------- ----- ----
102765 19
- 上一篇:C#实现一维离散小波变换
- 下一篇:NModbu官方VB C# 全
相关资源
- NModbu官方VB C# 全
- C#实现一维离散小波变换
- c#高效导出Excel
- c#串口通信+CRC校验
- 人脸识别源码C#
- C#任务管理器实现cpu使用率以及动态网
- C# List用法详解
- C#线程间操作无效Study
- c#IPCO多线程并发业务处理
- C# DBHelper类
- c# 画流程图
- C# 读写Word
- C#权限管理系统--动态加载菜单栏
- C#在线考试系统软件版
- 语音识别+文字语音合成C#
- C#语言做的学生通讯录
- C#查询本机唯一识别码 硬盘卷标号
- C#版远程桌面控制源码
- 微软智能语音C#Demo
- C#公交查询系统.rar
- c#做的一个停车收费系统
- 照片小管家源码C# winform照片管理
- 个人日程管理 C#与数据库
- 指纹识别C#实现
- C#中为treeview加背景图
- C#文件输入输出编程
- 社会保障管理系统
- C#、winform增删改查
- SQL Server数据库备份与恢复C#代码
- c#版的手写输入工具
评论
共有 条评论