After the PSL was shut off today from work on the interlock system (currently relevant alog), Jason and I were looking at how a few of ther autolockers were turned off and noticed that the ISS autolocker was not turned off. Digging into the LASER_PWR node we saw that this is where the FSS & PMC autolockers were turned off, but not the ISS. There was a comment saying that we don't need to turn it off, but Jason says this is not correct. We added it in to be turned off and also noticed that the channel that it checks before turning these off is out of date. Updated. Below is the svn diffs of our changes. These changes are committed and loaded in.
- if ezca['PSL-PWR_HPL_DC_LP_OUTPUT'] < 1:
+ if ezca['PSL-LASER_AMP2_PWR'] < 1:
# Turn off the auto lockers so the pzts are working while there is no light
ezca['PSL-FSS_AUTOLOCK_ON'] = 0
ezca['PSL-PMC_LOCK_ON'] = 0
ezca['PSL-PMC_RAMP_ON'] = 0
- ezca['PSL-ISS_AUTOLOCK_ON'] = 1
+ ezca['PSL-ISS_AUTOLOCK_ON'] = 0
ezca['PSL-ISS_LOOP_STATE_REQUEST'] = 0
- # With no output the autolocker doesnt need to be turned off
ezca['PSL-ISS_SECONDLOOP_OUTPUT_SWITCH'] = 0