Skip to main content

memoryAreaIsUnkown

Short summary

This assertion method checks if pointer refers not to an unknown area

Parameters

NameTypeCommentKind
addressPVOIDmemory addressinput
sizeInBytesUDINTnumber of bytesinput
messageAssertMessagemessage if the assertion is falseinput

Code

Declaration

METHOD memoryAreaIsUnkown
VAR_INPUT
(* memory address *)
address :PVOID;
(* number of bytes *)
sizeInBytes :UDINT;
(* message if the assertion is false *)
message :AssertMessage;
END_VAR