Changeset 16744 for trunk


Ignore:
Timestamp:
06/06/13 12:03:36 (11 years ago)
Author:
tbretz
Message:
Produce some more output in case the FADs don't got properly connected.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/scripts/takeRun.js

    r16570 r16744  
    9595    // Wait for FAD_CONTROL to realize that all boards are connected
    9696    // FIXME: Wait for '40' boards being connected instead
    97     dim.wait("FAD_CONTROL", "Connected", 3000);
     97    try
     98    {
     99        dim.wait("FAD_CONTROL", "Connected", 3000);
     100    }
     101    catch (e)
     102    {
     103        console.out("");
     104        console.out(" + FAD_CONTROL: "+dim.state("FAD_CONTROL").name);
     105        console.out("");
     106        throw e;
     107    }
    98108
    99109    // Wait also for MCP to have all boards connected again
Note: See TracChangeset for help on using the changeset viewer.