const char * filename |
The DSP file (.lod) to load. Can be for the timing
or utility board. The destination board is automatically determined from the file contents.
|
bool validate |
[optional] Set to 'true' if the download should be read back
and checked after every write. Default: 'true' |
// This code demonstrates how to load a timing file.
#include <iostream.h>
#include "CController.h"
using namespace std;
using namespace arc;
CController cController;
// .... open driver, initialize, etc ....
try {
cController.LoadControllerFile( "C:\\tim.lod" );
}
catch ( std::exception &e )
{
cerr << "Exception Occurred: " << e.what() << endl;
}
© Astronomical Research Cameras, Inc.