Changeset 14968
- Timestamp:
- 03/04/13 11:06:08 (12 years ago)
- Location:
- trunk/FACT++/scripts
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/scripts/handleAgilentPowerOn.js
r14763 r14968 9 9 return wait_state; 10 10 11 //dim. print("AGILENT_CONTROL: "+state.name+"["+state.index+"]");11 //dim.log("AGILENT_CONTROL: "+state.name+"["+state.index+"]"); 12 12 13 13 switch (state.name) -
trunk/FACT++/scripts/handleBiasVoltageOff.js
r14763 r14968 9 9 return wait_state; 10 10 11 //dim. print("BIAS_CONTROL: "+state.name+"["+state.index+"]");11 //dim.log("BIAS_CONTROL: "+state.name+"["+state.index+"]"); 12 12 13 13 switch (state.name) -
trunk/FACT++/scripts/handleDriveArmed.js
r14763 r14968 9 9 return wait_state; 10 10 11 dim. print("DRIVE_CONTROL: "+state.name+"["+state.index+"]");11 dim.log("DRIVE_CONTROL: "+state.name+"["+state.index+"]"); 12 12 13 13 switch (state.name) … … 23 23 throw new Error("Drive is LOCKED. Please unlock manually."); 24 24 //return undefined; 25 //dim. print("Drive in Locked... unlock.");25 //dim.log("Drive in Locked... unlock."); 26 26 //dim.send("DRIVE_CONTROL/UNLOCK"); 27 27 //return "Armed"; … … 30 30 case "Tracking": 31 31 case "OnTrack": 32 dim. print("Drive moving... stop.");32 dim.log("Drive moving... stop."); 33 33 dim.send("DRIVE_CONTROL/STOP"); 34 34 return "Armed"; 35 35 36 36 case "ERROR": 37 dim. print("Drive in error... trying to reinitialize.");37 dim.log("Drive in error... trying to reinitialize."); 38 38 dim.send("DRIVE_CONTROL/STOP"); 39 39 dim.wait("DRIVE_CONTROL", "Armed", 5000); -
trunk/FACT++/scripts/handleFtmIdle.js
r14763 r14968 10 10 return wait_state; 11 11 12 //dim. print("FTM_CONTROL: "+state.name+"["+state.index+"]");12 //dim.log("FTM_CONTROL: "+state.name+"["+state.index+"]"); 13 13 14 14 switch (state.name) -
trunk/FACT++/scripts/handleFtuCheck.js
r14763 r14968 20 20 continue; 21 21 22 dim. print("Problems in the FTU communication found.");23 dim. print("Send command to disable all FTUs.");24 dim. print(" => Power cycle needed.");22 dim.log("Problems in the FTU communication found."); 23 dim.log("Send command to disable all FTUs."); 24 dim.log(" => Power cycle needed."); 25 25 dim.send("FTM_CONTOL/ENABLE_FTU", -1, false); 26 26 throw new Error("CrateReset[FTU]"); -
trunk/FACT++/scripts/handleLidClosed.js
r14763 r14968 9 9 return wait_state; 10 10 11 //dim. print("LID_CONTROL: "+state.name+"["+state.index+"]");11 //dim.log("LID_CONTROL: "+state.name+"["+state.index+"]"); 12 12 13 13 switch (state.name) -
trunk/FACT++/scripts/handlePwrCameraOn.js
r14763 r14968 9 9 return wait_state; 10 10 11 //dim. print("PWR_CONTROL: "+state.name+"["+state.index+"]");11 //dim.log("PWR_CONTROL: "+state.name+"["+state.index+"]"); 12 12 13 13 switch (state.name)
Note:
See TracChangeset
for help on using the changeset viewer.