Skip to content

Commit

Permalink
Merge pull request f4exb#1902 from srcejon/freq_scanner
Browse files Browse the repository at this point in the history
Attempt to fix scope trigger
  • Loading branch information
f4exb authored Nov 25, 2023
2 parents b882da3 + e106905 commit 7a71968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdrbase/dsp/scopevis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 7a71968

Please sign in to comment.