摘要:
关于yuv 格式-Semi Planar和Planar https://www.cnblogs.com/welen/articles/5454315.html 阅读全文
摘要:
https://blog.csdn.net/xyphf/article/details/106536584 阅读全文
摘要:
Linux常用命令之envsubst https://blog.csdn.net/banche163/article/details/101369495 Linux中的EAGAIN含义 https://blog.csdn.net/memo_weiwei/article/details/7691226 阅读全文
摘要:
main.cpp #include "mywidget.h" #include <QApplication>//包含一个应用程序类的头文件 #include <iostream> #include <QThread> #include <QDebug> #include <thread> #incl 阅读全文
摘要:
rs232.cpp #ifndef kranfix_rs232_rs232_cc #define kranfix_rs232_rs232_cc #include "rs232.h" static int error; static struct termios nps; kfx::RS232::RS 阅读全文
摘要:
转载:https://blog.csdn.net/beiguodexuecsdn/article/details/103099456 最近阅读的好文:https://blog.csdn.net/mrdingjie/article/details/8126062 (各种通信协议详解) 阅读全文
摘要:
qtcreator中不能输入中文: https://blog.csdn.net/qq_15725099/article/details/97305507 main.cpp #include "mainwindow.h" #include <QApplication> int main(int arg 阅读全文
摘要:
串口通信 串口通讯(Serial Communication)是一种接口标准,是指外设和计算机间,通过数据信号线、地线等,按位进行传输数据的一种通讯方式。 通讯方式 - 单工模式(Simplex Communication)的数据传输是单向的。信息只能沿一个方向传输 - 半双工模式(Half Dup 阅读全文
摘要:
主程序入口: #include <iostream> #include <QApplication> #include "MainWindow.h" int main(int argc,char *argv[]) { //创建程序 QApplication app(argc,argv); //创建窗 阅读全文
摘要:
一、Qt安装 qt离线安装地址:http://download.qt.io/archive/qt/ 参考教程:https://blog.csdn.net/u013934107/article/details/80712418 二、Qt环境搭建 Qt官网:https://www.qt.io/ 1、工程 阅读全文