Qt4添加QSerialPort模块

官方文档(linux下安装):http://wiki.qt.io/QtSerialPort


window下安装:

第一步:下载QSerialPort模块

下载地址:

http://pan.baidu.com/s/1c03vwXE百度网盘

http://download.qt.io/official_releases/qt/5.4/5.4.0/submodules/官方

第二步:打开QSerialPort工程

首先确认您电脑上有可以正常使用的Qt4版本,我这里用的是Qt4.8.6.

解压下载的qtserialport-opensource-src-5.3.2.rar,会发现一个qtserialport.pro,打开它。

选择项目,在构建步骤中选择“添加构建步骤->Make”,如下图:

Make参数这一栏里输入“install”

搞定,现在点击项目中的“构建”,就会编译,然后把QSerialPort库安装到你的Qt4里面。

这是Debug版本,然后Release版本也是一样做的

第四步:串口测试程序

新建一个工程,在pro文件中加入 CONFIG += serialport


然后在.h文件中包含 #include  #include



搞定了,QSerialPortInfo是一个很不错的东西,可以查找电脑上的可用串口,用法如下:


有时候串口比较多的时候,会发现排序混乱,向下面这个样子:


作为一个重度强迫症程序员,这是绝对不允许的,3怎么能排在8后面呢,绝对不能!!!

这样解决:


这回看起来就舒服多了:


差不多就这些了。

虚拟串口工具

推荐一个虚拟串口工具,很好用,里面有教程

http://download.csdn.net/detail/yuyu414/5094469

上面这个需要两个积分,找了半天不知道怎么删掉积分要求,重新上传了一份在百度网盘,好东西,当然要大家来分享

http://pan.baidu.com/s/1o69M78I

——————————————————我是分割线——————————————————

Qt串口模块更新:qtserialport-opensource-src-5.4.0

修复了上面的错误,官方更新日志:

 - [QTBUG-41190] Fixed build on Qt4 related to QT_DEPRECATED_SINCE(5, 2) macro.


 - QSerialPortInfo:
   * Added support of a serial number of the USB device from the Sysfs backend.
   * Fixed crash on OSX related to wrong use of QCFString class.
   * Added enumeration of on-board types of serial ports (like SOC and OCP)
     at using of the Sysfs backend on Linux.
   * [QTBUG-40113] Fixed crash related to dynamic udev loading.


 - QSerialPort:
   * Fixed filtering of custom baud rate on Linux.
   * [QTBUG-41295] Now the reading are not stalled on Windows when used the
     read buffer with the limited size.
   * Now the reading are not stalled on Windows after calling of the clear()
     method.
   * Now the bytesToWrite() on Windows returns the zero after WriteFile()
     was called.


你可能感兴趣的:(Qt知识点)