2 Star 5 Fork 3

彭添/SerialPlot_PT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
串口相关函数.cs 3.04 KB
一键复制 编辑 原始数据 按行查看 历史
彭添 提交于 2015-08-13 01:36 . FirstSync
using System;
using System.Collections.Generic;
using System.IO.Ports;
using System.Linq;
using System.Text;
namespace 帆板仪表盘
{
public static class SerialFun
{
/// <summary>
/// 判断某一个COM端口是否可用
/// </summary>
/// <param name="portName">端口号</param>
/// <returns></returns>
public static bool IsCommPortValid(string portName)
{
SerialPort sp = new SerialPort(portName);
try
{
sp.Open();
sp.Close();
return true;//端口可用
}
catch
{
return false;//打开失败,端口被占用
}
}
//public static string SerialDataRec(string portName)
//{
// byte[] b = new byte[32];
// SerialPort sp = new SerialPort(portName);
// while (true)
// {
// //打开新的串行端口连接
// sp.Open();
// //丢弃来自串行驱动程序的接受缓冲区的数据
// sp.DiscardInBuffer();
// //丢弃来自串行驱动程序的传输缓冲区的数据
// sp.DiscardOutBuffer();
// //从串口输入缓冲区读取一些字节并将那些字节写入字节数组中指定的偏移量处
// sp.Read(b, 0, b.Length);
// StringBuilder sb = new StringBuilder();
// for (int i = 0; i < b.Length; i++)
// {
// sb.Append(Convert.ToString(b[i]) + " ");
// }
// }
//}
}
#region MyRegion
/// <summary>
/// 扫描并且在comBox中列出可用端口
/// </summary>
/// <param name="comboBox1"></param>
/// <returns></returns>
//public static bool ScanAllPorts(ComboBox comboBox1)
//{
// //create vars for testing
// bool _available = false;
// SerialPort _tempPort;
// String[] Portname = SerialPort.GetPortNames();
// //create a loop for each string in SerialPort.GetPortNames
// foreach (string str in Portname)
// {
// try
// {
// _tempPort = new SerialPort(str);
// _tempPort.Open();
// //if the port exist and we can open it
// if (_tempPort.IsOpen)
// {
// comboBox1.Items.Add(str);
// _tempPort.Close();
// _available = true;
// }
// }
// //else we have no ports or can't open them display the
// //precise error of why we either don't have ports or can't open them
// catch (Exception ex)
// {
// // MessageBox.Show(ex.ToString(), "Error - No Ports available", MessageBoxButtons.OK, MessageBoxIcon.Error);
// _available = false;
// }
// }
// //return the temp bool
// return _available;
//}
#endregion
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/pengtianabc/SerialPlot_PT.git
git@gitee.com:pengtianabc/SerialPlot_PT.git
pengtianabc
SerialPlot_PT
SerialPlot_PT
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385