LoadPCIFile
Uploads a PCI DSP file ( .lod ) to the board.
Syntax
void LoadPCIFile( filename );
Parameters
const char * filename
The DSP file ( .lod ) to upload.
Returns
None
Required Headers
CController.h
Namespace
arc
Throws
std::runtime_error
Remarks
This a temporary upload that will be eliminated on host reboot. Exceptions can be caught using a try/catch block.
Example
        // LoadPCIFile() example

        #include <iostream.h>
        #include "CController.h"
        using namespace std;
        using namespace arc;

        CController cController;

        // .... open driver, initialize, etc ....

        try {
	        cController.LoadPCIFile( "C:\\MyDir\\pci.lod" );
         }
        catch ( std::exception &e )
        {
            cerr << "Exception Occurred: " << e.what() << endl;
        }

© Astronomical Research Cameras, Inc.