strTemplateFree (Function)

Top  Previous  Next

Architecture:

NX32L

Firmware version:

2.10.00


strTemplateFree releases the string template.

 

 

Input:

st: SYSHANDLE

A handle to the string template to release.

 

Returns: INT

1

- Success

0

- Function is not supported.

-1

- Invalid handle.

 

 

 

Declaration:

FUNCTION strTemplateFree;
VAR_INPUT
   st       : ACCESS SYSHANDLE;
END_VAR;

 

Example:

INCLUDE rtcu.inc
 
 
PROGRAM test;
VAR
   st       : SYSHANDLE;
   rc       : INT;
   str_in   : STRING;
   str_out  : STRING;
END_VAR;
 
   str_in := "Time since reset: $${time}, Temperature: $${temp}, Values: $"$${time}, $${temp}, $${value}$""; 
 
   // Parse string and create template.
   rc := strTemplateCreate(st:=ststr:=str_insov := "$${", eov := "}");
   DebugFmt(message:="strTemplateCreate: \1", v1:=rc);
 
   // Set the value for the fixed variable
   rc := strTemplateSetVar(st:=stname:="value", value := "value");
   DebugFmt(message:="strTemplateSetVar: \1", v1:=rc);
 
BEGIN
   // Set the value for the dynamic variables
   rc := strTemplateSetVar(st:=stname:="time", value:=dintToStr(v:=boardTimeSinceReset()/1000));
   DebugFmt(message:="strTemplateSetVar: \1", v1:=rc);
 
   rc := strTemplateSetVar(st:=stname:="temp", value:=floatToStr(v:=FLOAT(boardTemperature())/100.0));
   DebugFmt(message:="strTemplateSetVar: \1", v1:=rc);
 
   // Generate string
   rc := strTemplateGenerateString(st:=ststr:=str_out);
   DebugFmt(message:="strTemplateGenerateString: \1", v1:=rc);
 
   // Print string to device output
   DebugMsg(message:=str_out);
 
   Sleep(delay:=10000);
END;
 
END_PROGRAM;