Skip to main content

bitXIsSet

Short summary

This assertion method checks if the selected bit of current value is set

Parameters

NameTypeCommentKind
currentValueBYTEcurrent value to checkinput
numberBitNumberBytenumber of bit to checkinput
messageAssertMessagemessage if the assertion is falseinput

Code

Declaration

METHOD bitXIsSet
VAR_INPUT
(* current value to check *)
currentValue :BYTE;
(* number of bit to check *)
number :BitNumberByte;
(* message if the assertion is false *)
message :AssertMessage;
END_VAR

Implementation

IF (
NOT TO_BOOL(
TO_BYTE(SHL(THIS^.LSB, number))
AND currentValue
)
) THEN
THIS^.assertionWasWrong(message, THIS^.getDebugInfo('bitXIsSet'));
END_IF