Message pragmas
Message pragmas force the output of messages in the message window during the compilation process.
Insertion location: Separate or already existing line in the text editor of a POU.
Four types of message pragmas
Pragma | Message type |
---|---|
| Text Output of the text |
|
Output of the information |
|
Output of the warning In contrast to the attribute pragma The message pragma Sample: Use with variables: POGRAM MAIN |
|
Output of the error |
![]() | In the TwinCAT message window, you can access the source position of a message of category Information, Warning and Error by using the commands Next Message or Previous Message. This means you get to the position where the pragma is added in the source code. |
Sample:
VAR
nVar : INT; {info 'TODO: should get another name'}
bVar : BOOL;
aTest : ARRAY [0..10] OF INT;
nIdx : INT;
END_VAR
aTest[nIdx] := aTest[nIdx]+1;
nVar := nVar+1;
{warning 'This is a warning'}
{text 'Part xy has been compiled completely'}
Output in the message window:

See also: