摘要:
/mnt/hgfs/SharedFolders/KingKongNano/YiKingStudio/TopoConfig/topoconfigwindow.cpp:2079: error: cannot bind non-const lvalue reference of type ‘QDomEle 阅读全文
摘要:
485是一种最常用的通信接口,在单片机裸机和Linux系统中都有应用。并且又分为收发电平自动转换和手动转换两种。本文将分别进行举例说明。 485通信原理 差分信号传输RS485 通信采用差分信号传输,通常情况下只需要两根信号线就可以进行正常的通信。在差分信号中,逻辑0和逻辑1是用两根信号线(A+和B 阅读全文
摘要:
1.QMessageBox QMessageBox::Yes QApplication::quit(); QMessageBox::exec用于在模态(阻塞式)对话框中显示一个消息框,并等待用户的响应。这个函数通常用于在应用程序中显示消息、警告或询问对话框,并等待用户采取适当的操作后继续执行。 in 阅读全文
摘要:
RobotCommuServer.h#ifndef ROBOTCOMMUSERVER_H #define ROBOTCOMMUSERVER_H #include <QThread> class RobotCommuServer : public QThread { Q_OBJECT public: 阅读全文
摘要:
void TimeMgrUI::SetLinuxTime(QString sTime){#ifdef g_LinuxPlatform QString str = QString("date -s \"%1\"").arg(sTime); system(str.toStdString().data() 阅读全文
摘要:
网口指示灯状态:千兆网口和百兆网口灯的含义不同 千兆网口: 根据核心板提供给ETH0_LED1、ETH0_LED1的信号 当与其连接的是百兆网口PHY芯片的设备时,LED1(绿灯)亮,LED2(黄灯)不亮当有数据发送或者接收时,闪烁; 当与其连接的是千兆网口PHY芯片的设备时,LED2(黄灯)亮,L 阅读全文
摘要:
QFileQTextStreamQMessageBoxQFileDialog应用示例mainwindow.cpp#include "mainwindow.h" #include "ui_mainwindow.h" #include <QFile> #include <QTextStream> #in 阅读全文
摘要:
string EventTrigger::SegmentationString(std::string& str) { try { string dft_val; const std::string& seprator = "="; std::vector<std::string> vec; Str 阅读全文
摘要:
eg1: void EventTrigger::Run(){ RegisterDetector(); if (ParseMap(AppContext::GetResourceFile("global_map.path")) == false) { DLOG(ERROR) << "parse map 阅读全文