camClose (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

MX2/DX4/AX9 pro/MX2 turbo/encore/warp, AX9 turbo, NX-200, NX-400

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;