Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 

To do this during Synchronized Scanning Mode, do something like this: 

  1. jsEnterEncoderSyncMode() or jsEnterTimeSyncMode() for each connection to start Synchronized Scanning Mode. 
  2. jsSendMultipleProfileRequest() for each connection. 
  3. jsReadMultipleProfiles() for each connection. 
  4. jsExitSyncMode() for each connection to stop Synchronized Scanning Mode. 

For snapshot scanning, care must be taken to ensure that the scanners don't see each other's lasers. Do something like this: 

  1. Call jsSendProfileRequestN() for each connection. 
  2. Call jsReadProfileN() for each connection. 
#include <vector>
#define JCAM_STATIC_LIB
#include "jcam_dll.h"

using namespace joescan;

//Returns the first failed connection if there is one
JCONNECTION readProfiles(std::vector<JCONNECTION> &connections, std::vector<jsProfile> &profiles)
{
    for(i = 0; i < connections.size(); ++i)
    {
        //Request one profile from each scanner
        switch(jsSendMultipleProfileRequest(connections[i], 1))
        {
            case 0:
                break;
            case INVALID_PARAMETER:
                printf("Invalid parameter to jsSendMultipleProfileRequest().\n");
                return connections[i];
            case SCANNER_FAILURE:
                printf("Scanner failure during jsSendMultipleProfileRequest().\n");
                return connections[i];
        }
    }

    //Make sure there's enough storage space for one profile from each scanner
    profiles.resize(connections.size());

    for(i = 0; i < connections.size(); ++i)
    {
        //Read one profile from each scanner
        switch(jsReadMultipleProfiles(connections[i], &profiles[i], 1))
        {
            case 0:
                break;
            case INVALID_PARAMETER:
                printf("Invalid parameter to jsReadMultipleProfiles().\n");
                return connections[i];
            case SCANNER_FAILURE:
                printf("Scanner failure during jsReadMultipleProfiles().\n");
                return connections[i];          
        }
    }

    //No failed connections, return NULL.
    return 0;
}