# 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 Serial Port Assistant ===================== Author: Kang Lin (kl222@126.com) -------------------------------- [ChineseChinese](README_ZH.md) 1. ![Project: https://github.com/KangLin/SerialPortAssistant](https://github.com/KangLin/SerialPortAssistant) This project is a cross-platform serial assistant. It can run on WINDOWS, linux system. 2. Complie status |Platform|Status| |:---:|:------:| |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. Multi-language * Chinese ![Chinese](Docs/ui-zh.jpg) * Englisth ![Englisth](Docs/ui-en.jpg) 4. Multi style 5. ![Release download](https://github.com/KangLin/SerialPortAssistant/releases) ![Latest release download](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. Donate If you are satisfied, you can donate to me - Donation (greater than ¥20): ![donation (greater than ¥20)](https://github.com/KangLin/RabbitCommon/raw/master/Src/Resource/image/Contribute.png "donation (greater than ¥20)") - Donate ¥20 ![donation ¥20](https://github.com/KangLin/RabbitCommon/raw/master/Src/Resource/image/Contribute20.png "donation ¥20") 7. Dependence RabbitCommon: https://github.com/KangLin/RabbitCommon ``` git clon https://github.com/KangLin/RabbitCommon.git ``` 8. Compile - Compiled with QtCreator * Open the project file ![SerialPortAssistant.pro](SerialPortAssistant.pro) with QtCreator * Set the parameter RabbitCommon_DIR * Direct compilation can generate programs - Compile with the command line * Build the build directory in the project root directory * *qmake* build compilation project * *make* install Build the program with the local toolchain * The program is generated in the *install* directory ```sh mkdir build cd build qmake ../SerialPortAssistant.pro make install cd install #The program is generated in the install directory ```