Skip to content

Commit

Permalink
Merge pull request #1 from saleae/fix/jtag-bubbles
Browse files Browse the repository at this point in the history
Fix: Bubbles would not appear on TDI / TDO channels until the analyzer was restarted
  • Loading branch information
Marcus10110 authored Apr 30, 2021
2 parents 86045d6 + 9ad3d9d commit 50faedc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/JtagAnalyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,9 @@ void JtagAnalyzer::SetupResults()

// set which channels will carry bubbles
mResults->AddChannelBubblesWillAppearOn( mSettings.mTmsChannel );
if( mTdi != NULL )
if( mSettings.mTdiChannel != UNDEFINED_CHANNEL )
mResults->AddChannelBubblesWillAppearOn( mSettings.mTdiChannel );
if( mTdo != NULL )
if( mSettings.mTdoChannel != UNDEFINED_CHANNEL )
mResults->AddChannelBubblesWillAppearOn( mSettings.mTdoChannel );
}

Expand Down

0 comments on commit 50faedc

Please sign in to comment.