qinyunti 发表于 2022-10-6 16:01

【创龙科技全志A40i开发板】串口调试助手实现

<h1><b>前言</b></h1>

<p >工控板比较常用的通讯方式就是串口,本次实现一个串口调试助手,在此基础上就可以实现串口通讯应用的开发。</p>

<p >&nbsp;</p>

<h1 ><b>过程</b></h1>

<p >git clone <a href="https://github.com/qinyunti/SerialPort.git"><u>https://github.com/qinyunti/SerialPort.git</u></a></p>

<p >cd SerialPort/SerialPort/</p>

<p >&nbsp;</p>

<p >.pro文件中添加</p>

<p >QT += widgets</p>

<p >&nbsp;</p>

<p >main.cpp中</p>

<p >#include &lt;QtGui/QApplication&gt;</p>

<p >改为</p>

<p >#include &lt;QApplication&gt;</p>

<p >&nbsp;</p>

<p >mainwindow.cpp中toAscii改为toLatin1</p>

<p >&nbsp;</p>

<p >/home/tronlong/T3/lichee/buildroot-201611/dl/qt-everywhere-opensource-src-5.9.0/Qt-5.9.0/bin/qmake</p>

<p >&nbsp;</p>

<p >export PATH=/home/tronlong/T3/lichee/out/sun8iw11p1/linux/common/buildroot/host/usr/bin:$PATH</p>

<p >&nbsp;</p>

<p >make</p>

<p >导入生成的程序到windows</p>

<p >sudo cp SerialPort&nbsp;/mnt/hgfs/share</p>

<p >&nbsp;</p>

<p >再通过串口rz 导入到开发板</p>

<p >chmod +x SerialPort</p>

<p >&nbsp;</p>

<p >运行</p>

<p >./SerialPort --platform linuxfb</p>

<p > &nbsp;</p>

<h1 ><b>总结</b></h1>

<p >鼠标不能操作待确认</p>

<p >&nbsp;</p>

lugl4313820 发表于 2022-10-6 17:06

<p>QT是不是默认支持鼠标的吗?我用飞凌的好象是支持的。</p>
页: [1]
查看完整版本: 【创龙科技全志A40i开发板】串口调试助手实现