# SerialPortAssistant **Repository Path**: longlyblack_admin/SerialPortAssistant ## Basic Information - **Project Name**: SerialPortAssistant - **Description**: 本项目是一个跨平台的串口助手。它能运行在WINDOWS、linux系统上 - **Primary Language**: C++ - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 48 - **Created**: 2019-06-23 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 串口助手 ======= 作者:康林(kl222@126.com) -------- [English英语](README.md) 1. ![项目位置:https://github.com/KangLin/SerialPortAssistant](https://github.com/KangLin/SerialPortAssistant) 本项目是一个跨平台的串口助手。它能运行在WINDOWS、linux系统上。 2. 编译状态 |平台|状态| |:---:|:------:| |windows、android|[![windows、android](https://ci.appveyor.com/api/projects/status/y77e828ysqc79r9o?svg=true)](https://ci.appveyor.com/project/KangLin/serialportassistant)| |linux|[![linux](https://travis-ci.org/KangLin/SerialPortAssistant.svg?branch=master)](https://travis-ci.org/KangLin/SerialPortAssistant)| 3. 多语言 * 中文 ![中文](Docs/ui-zh.jpg) * 英语 ![中文](Docs/ui-en.jpg) 4. 多样式 5. ![发行版本下载](https://github.com/KangLin/SerialPortAssistant/releases) ![最后发行版本下载](https://github.com/KangLin/SerialPortAssistant/releases/latest) - windows + [SerialPortAssistant-Setup-v0.3.6.exe](https://github.com/KangLin/SerialPortAssistant/releases/download/v0.3.6/SerialPortAssistant-Setup-v0.3.6.exe) - linux + [SerialPort_Assistant-v0.3.6-x86_64.AppImage](https://github.com/KangLin/SerialPortAssistant/releases/download/v0.3.6/SerialPort_Assistant-v0.3.6-x86_64.AppImage) sudo chmod a+x SerialPort_Assistant-v0.3.6-x86_64.AppImage ./SerialPort_Assistant-v0.3.6-x86_64.AppImage - ubuntu + [serialportassistant_0.3.6_amd64.deb](https://github.com/KangLin/SerialPortAssistant/releases/download/v0.3.6/serialportassistant_0.3.6_amd64.deb) sudo dpkg -i serialportassistant_v0.3.6_amd64.deb 6. 捐赠 如果你用得满意,可以对本人进行捐赠 - 捐赠(大于¥20): ![捐赠( 大于 ¥20 )](https://github.com/KangLin/RabbitCommon/raw/master/Src/Resource/image/Contribute.png "捐赠(大于¥20)") - 捐赠¥20 ![捐赠¥20](https://github.com/KangLin/RabbitCommon/raw/master/Src/Resource/image/Contribute20.png "捐赠¥20") 7. 依赖 RabbitCommon: https://github.com/KangLin/RabbitCommon ``` git clon https://github.com/KangLin/RabbitCommon.git ``` 8. 编译 - 用 QtCreator 编译 * 直接用 QtCreator 打开工程文件 ![SerialPortAssistant.pro](SerialPortAssistant.pro) * 设置参数 RabbitCommon_DIR * 直接编译就可以生成程序 - 用命令行编译 * 在项目根目录下建立 build 目录 * qmake 生成编译工程 * make install 用本地工具链生成程序 * 在 install 目录下会生成程序 ```sh mkdir build cd build qmake ../SerialPortAssistant.pro RabbitCommon_DIR= make install cd install #进入生成的程序目录 ```