boardReset (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Firmware version:

1.00 / 1.00.00


boardReset will reset the RTCU device.
 
 

 

 

Input:

level : SINT (default 0)

 
NX32L only: When this parameter is 1 a complete Linux level reboot of the system will be performed.

         

Returns:

None

 

Declaration:

FUNCTION boardReset;

VAR_INPUT
   level : SINT;
END_VAR;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
BEGIN
   ...
   // Make the RTCU device reset
   boardReset();
   ...
END;
 
END_PROGRAM;