Merge pull request #1902 from srcejon/freq_scanner

Attempt to fix scope trigger
pull/1905/head
Edouard Griffiths 2023-11-25 10:38:53 +01:00 zatwierdzone przez GitHub
commit 7a71968cbf
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -609,7 +609,7 @@ void ScopeVis::processTrace(const std::vector<ComplexVector::const_iterator>& vc
}
uint32_t triggerStreamIndex = triggerCondition->m_triggerData.m_streamIndex;
const Complex& s = *vbegin[triggerStreamIndex];
const Complex& s = vbegin[triggerStreamIndex][processed];
if (m_triggerComparator.triggered(s, *triggerCondition)) // matched the current trigger
{