long param |
The controller parameter to check. See CController.h
for a list of bit definitions. |
// IsCCParamSupported() example
#include <iostream.h>
#include "CController.h"
using namespace std;
using namespace arc;
CController cController;
// .... open driver, initialize, etc ....
try {
if ( cController.IsCCParamSupported( BINNING ) )
cout << "Binning supported!" << endl;
if ( cController.IsCCParamSupported( SUBARRAY ) )
cout << "SubArray supported!" << endl;
if ( cController.IsCCParamSupported( SPLIT_SERIAL ) )
cout << "Split serial readout supported!" << endl;
// .... etc ....
}
catch ( std::exception &e )
{
cerr << "Exception Occurred: " << e.what() << endl;
}
© Astronomical Research Cameras, Inc.