c++ 入门 windows环境配置 qt 入门配置

c++ 入门 windows环境配置 qt 入门配置

c++官方文档 https://zh.cppreference.com/w/%E9%A6%96%E9%A1%B5

windows 环境安装 msys mingw64 qt

  1. 安装msys2
    https://mirrors.tuna.tsinghua.edu.cn/help/msys2/
  2. 修改C:\msys64\etc\pacman.d下面得mirrorlist.*文件,把清华镜像相关得移动到最前面
  3. 安装基础包
    # 更新系统包
    pacman -Syu
    # 安装基础组件
    pacman -S --needed base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake bash wget p7zip pacman pacman-mirrors msys2-runtime
    # 安装编译器 qt5等
    pacman -S  mingw-w64-x86_64-llvm mingw-w64-x86_64-polly mingw-w64-x86_64-clang mingw-w64-x86_64-compiler-rt mingw-w64-x86_64-clang-tools-extra  mingw-w64-x86_64-qt5  mingw-w64-x86_64-qt-creator 
    

学习示例

qt udp 串口

  1. https://github.com/lesliefish/Qt Qt相关知识总结。包括Qss,数据库,Excel,Model/View等操作demo。
  2. https://github.com/XinLiGH/SerialPortYmodem 串口通过 YMODEM 协议进行文件传输
  3. https://github.com/Ranpop/QT-Monitor QT嵌入式实现监控,曲线绘制,视频图像显示,tcp/udp通信,Share内存通信等
  4. https://github.com/FingerRec/SerialTcpUdpBasedOnQt A Serial,Tcp And Udp master Based On Qt For Embedded. Test on stm32 in keil.(QT实现的上位机软件,实现串口,PCP和UDP通信,在STM32板子上经过测试)
  5. https://github.com/CquKeith/V2X DSRC与LTE对比的上位机软件。通过UDP和DSRC设备通信,TCP来模拟LTE的传输。使用Qt编写
  6. https://github.com/lmh135/qt-udp qt-udp
  7. https://github.com/purple910/QT-UDP-Reversi 基于qt的网络协议的黑白棋
  8. https://github.com/WXMM/udpComm_Qt 这是一个udp通讯解析,写入日志等
  9. https://github.com/fangshirui/Serial-assitant 基于qt编写的串口助手
  10. https://github.com/Sanzona/SerialPort Qt实现的串口通信软件

你可能感兴趣的:(c++ 入门 windows环境配置 qt 入门配置)