logDestroy (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

ALL

Firmware version:

1.00 / 1.00.00


logDestroy will completely clear the Datalogger memory so that a call to logIsInitialized() will return false. Call logInitialize() to initialize the Datalogger again.

 

Input:

None

 

Returns:

None

 

Declaration:

FUNCTION logDestroy;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
BEGIN
  ...
  // Destroy the logsystem.
  logDestroy();
  ...
END;
 
END_PROGRAM;