Skip to main content

memoryAreaIsNotDynamic

Short summary

This assertion method checks if pointer refers not to dynamic area

Parameters

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

Code

Declaration

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