camClose (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Firmware version:

1.07 / 1.00.00


This closes the camera module and the library functions. To reopen the camera module again, call camOpen.

 

For devices using port 0 as programming port, the RS232 programming port will resume to work as the service port after calling camClose.

 

Input:

None

 

Returns: INT

0

- Success.

 

Declaration:

FUNCTION camClose INT;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
// Open the camera library
camOpen();
 
BEGIN
  ...
  // Close the camera library
  camClose();
  ...
END;
 
END_PROGRAM;