Changeset 16796


Ignore:
Timestamp:
06/10/13 12:02:44 (11 years ago)
Author:
tbretz
Message:
Wait for ftmctrl to be in Valid not Idle; changed the level to detect an underflow.
File:
1 edited

Legend:

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

    r16743 r16796  
    3434 [ "MCP",             [ "Idle"      ] ],
    3535 [ "AGILENT_CONTROL", [ "VoltageOn" ] ],
    36  [ "FTM_CONTROL",     [ "Idle"      ] ],
     36 [ "FTM_CONTROL",     [ "Valid"     ] ],
    3737 [ "FAD_CONTROL",     [ "Connected",    "RunInProgress"   ] ],
    3838 [ "BIAS_CONTROL",    [ "Disconnected", "VoltageOff"      ] ],
     
    197197    hist.print();
    198198
    199     var stat0 = Func.stat(data.avg, function(val) { if (val<0) console.out(" VAL="+val); return val<0; });
     199    var stat0 = Func.stat(data.avg, function(val) { if (val<650) console.out(" VAL="+val); return val<650; });
    200200    var stat1 = Func.stat(data.rms);
    201201
Note: See TracChangeset for help on using the changeset viewer.