1 Star 0 Fork 3

Qiu555/串口调试助手

forked from panda/串口调试助手 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
serialinfo.h 455 Bytes
一键复制 编辑 原始数据 按行查看 历史
panda 提交于 2018-06-13 15:26 +08:00 . QTcpServer 已经可以了
#ifndef SERIALINFO_H
#define SERIALINFO_H
#include<QtSerialPort/QSerialPortInfo>
#include <QDebug>
class SerialInfo
{
public:
SerialInfo(){}
QStringList comList(){
QStringList list;
foreach(const QSerialPortInfo &info,QSerialPortInfo::availablePorts())
{
list.append(info.portName());
// qDebug() <<info.portName();
}
return list;
}
};
#endif // SERIALINFO_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/qiu555/serial_debug_assistant.git
git@gitee.com:qiu555/serial_debug_assistant.git
qiu555
serial_debug_assistant
串口调试助手
master

搜索帮助