Changeset 17187 for trunk/FACT++/scripts


Ignore:
Timestamp:
09/19/13 16:19:31 (11 years ago)
Author:
tbretz
Message:
Adapted the waiting time to the slower ramping, removed the setting of the algorithm type; 'VoltageOn' is not an allowed state for the biasctrl anymore
File:
1 edited

Legend:

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

    r17181 r17187  
    218218{
    219219    dim.send("BIAS_CONTROL/SET_ZERO_VOLTAGE");
    220     dim.wait("BIAS_CONTROL", "VoltageOff", 15000);
     220    dim.wait("BIAS_CONTROL", "VoltageOff", 30000); // waS: 15000
    221221
    222222    var now = new Date();
     
    227227
    228228    console.out("Wait for calibration to end");
    229     dim.wait("FEEDBACK", "Calibrated", 60000);
     229    dim.wait("FEEDBACK", "Calibrated", 90000);
    230230
    231231    console.out("Calibration finished ["+(new Date()-now)+"ms]");
    232232
    233233    console.out("Wait for voltage to be off");
    234     dim.wait("BIAS_CONTROL", "VoltageOff", 5000);
     234    dim.wait("BIAS_CONTROL", "VoltageOff", 30000); // was: 15000
    235235}
    236236
     
    258258
    259259service_calibration.close();
    260 
    261 // ================================================================
    262 
    263 dim.send("BIAS_CONTROL/SET_EXPERT_MODE", true);
    264 dim.send("BIAS_CONTROL/EXPERT_LOAD_MAP_FILE", "/home/fact/operation/GAPDmap_with_spare_module-new.txt");
    265 dim.send("BIAS_CONTROL/SET_EXPERT_MODE", false);
    266 dim.send("FEEDBACK/ENABLE_OLD_ALGORITHM", false);
    267260
    268261// ================================================================
     
    283276 [ "PWR_CONTROL",     [ "SystemOn"                        ] ],
    284277 [ "AGILENT_CONTROL", [ "VoltageOn"                       ] ],
    285  [ "BIAS_CONTROL",    [ "VoltageOn", "VoltageOff"         ] ],
     278 [ "BIAS_CONTROL",    [ "VoltageOff"                      ] ],
    286279 [ "FEEDBACK",        [ "Calibrated"                      ] ],
    287280 [ "RATE_SCAN",       [ "Connected"                       ] ],
Note: See TracChangeset for help on using the changeset viewer.