diff --git a/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp b/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp index 0c224a71..e6777bf0 100644 --- a/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp @@ -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!"; + } } diff --git a/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.h b/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.h index 4d1cc410..e762a605 100644 --- a/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.h +++ b/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.h @@ -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;