Skip to content

Commit e365b41

Browse files
committed
remove incorrect comment
Signed-off-by: Dylan Gardham <message4dylan@gmail.com>
1 parent 21c413c commit e365b41

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

openhantek/src/hantekdso/mathchannel.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,12 @@ void MathChannel::calculate( DSOsamples &result ) {
9696
: 0.0 );
9797
break;
9898
case Dso::MathMode::GREAT_CH1_CH2:
99-
// logic values: above / below trigger level
10099
for ( auto it = mathChannel.begin(), end = mathChannel.end(); it != end; ++it, ++ch1Iterator, ++ch2Iterator )
101100
*it = ( ( *ch1Iterator ) > ( *ch2Iterator )
102101
? 1.0
103102
: 0.0 );
104103
break;
105104
case Dso::MathMode::GREAT_CH2_CH1:
106-
// logic values: above / below trigger level
107105
for ( auto it = mathChannel.begin(), end = mathChannel.end(); it != end; ++it, ++ch1Iterator, ++ch2Iterator )
108106
*it = ( ( *ch2Iterator ) > ( *ch1Iterator )
109107
? 1.0

0 commit comments

Comments
 (0)