11 2020 档案
摘要: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
阅读全文