ARM-Linux下Qt4.8中加入qtserialport串口模块

qt版本:qt-4.8.7

编译器:arm-linux-gcc4.4.3

qtserialport:5.3.2

模块下载:链接:https://pan.baidu.com/s/1OjLAS4I_s-AYQ59UIWOEsg&shfl=sharepset 
提取码:c2rt 

 

1、终端进入qtserialport模块文件解压后的目录;

2、执行qmake  qtserialport.pro;

3、执行make命令;

4、执行sudo make   install命令即可

使用:

  1. pro文件加

    CONFIG += serialport

     

  2. 把qtserialport-opensource-src-5.3.2里面src/serialport的库文件(libQtSerialPort.prl,libQtSerialPort.so,libQtSerialPort.so.1,libQtSerialPort.so.1.0,libQtSerialPort.so.1.0.0)考入嵌入式设备库中ARM-Linux下Qt4.8中加入qtserialport串口模块_第1张图片

  3. 引用

    #include 
    #include 

     

  4. 最后运行,scp考入设备,运行ok

  5. https://wiki.qt.io/Qt_Serial_Port

  6. https://blog.csdn.net/qq_28637193/article/details/78992967

  7. https://www.jb51.net/article/182566.htm

你可能感兴趣的:(QT)