Skip to content

Commit

Permalink
sa check
Browse files Browse the repository at this point in the history
  • Loading branch information
camilo committed Jun 7, 2024
1 parent 24ce2ae commit 869b287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ void input::digitalChannel::updateReading( channelReaderFcn_t reader ) noexcept
int sample = reader( number );

if ( negate ) {
sample = !sample;
sample = !sample; // skipcq: CXX-W2065
}
value = sample;
}
Expand Down

0 comments on commit 869b287

Please sign in to comment.