mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
CMS50F37 debug test 8
This commit is contained in:
parent
6283cb52ce
commit
0b2f91184d
@ -258,11 +258,8 @@ void CMS50F37Loader::processBytes(QByteArray bytes)
|
||||
}
|
||||
|
||||
if (!started_import) {
|
||||
if (++sequence < cms50_seqlength) {
|
||||
qDebug() << "Read:" << str.join(",");
|
||||
// Send the next command packet in sequence
|
||||
nextCommand();
|
||||
}
|
||||
startTimer.singleShot(300, this, SLOT(nextCommand()));
|
||||
qDebug() << "Read:" << str.join(",");
|
||||
} else {
|
||||
qDebug() << "Import:" << str.join(",");
|
||||
}
|
||||
@ -325,8 +322,12 @@ void CMS50F37Loader::sendCommand(unsigned char c)
|
||||
|
||||
void CMS50F37Loader::nextCommand()
|
||||
{
|
||||
if (sequence < cms50_seqlength)
|
||||
if (++sequence < cms50_seqlength) {
|
||||
// Send the next command packet in sequence
|
||||
sendCommand(cms50_sequence[sequence]);
|
||||
} else {
|
||||
qDebug() << "Run out of startup tasks to do and import failed!";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -54,6 +54,7 @@ protected slots:
|
||||
virtual void startImportTimeout();
|
||||
virtual void shutdownPorts();
|
||||
|
||||
|
||||
void nextCommand();
|
||||
|
||||
|
||||
@ -68,6 +69,7 @@ protected:
|
||||
|
||||
void sendCommand(unsigned char c);
|
||||
|
||||
|
||||
// Switch device to live streaming mode
|
||||
virtual void resetDevice();
|
||||
|
||||
@ -76,6 +78,7 @@ protected:
|
||||
|
||||
|
||||
private:
|
||||
|
||||
int sequence;
|
||||
|
||||
EventList *PULSE;
|
||||
|
Loading…
Reference in New Issue
Block a user