From 869b2874a0db6961fc9a63dae57f9e507467f85a Mon Sep 17 00:00:00 2001 From: camilo Date: Thu, 6 Jun 2024 23:05:32 -0500 Subject: [PATCH] sa check --- src/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input.cpp b/src/input.cpp index 693c6b0f..17e1f236 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -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; }