机载第一版

This commit is contained in:
xin
2025-11-19 15:11:44 +08:00
parent 612bf24b15
commit e8db9aa9fe
32 changed files with 766 additions and 75 deletions

View File

@ -54,10 +54,10 @@ void Scheduler::StartAsPlanned()
}
int iIntervalInMS = m_struAcqTime.qtInterval.hour() * 3600 * 1000 + m_struAcqTime.qtInterval.minute() * 60 * 1000 + m_struAcqTime.qtInterval.second() * 1000;
//iIntervalInMS =1000;
m_GrabTimer->start(iIntervalInMS);
QThread::msleep(5000);
QThread::msleep(1000);
qDebug() << "it's time to start work.";
emit SignalGrabOnce();
//this->OnTimeCounter();
@ -74,7 +74,7 @@ int Scheduler::OnTimeCounter()
}
qDebug() << "it's time to work...work work.";
// qDebug() << "it's time to work...work work.";
emit SignalGrabOnce();
return 0;
}