PROC m_fl_htron ;Version 6 GOTO BEGIN ; ;#************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT Name: m_fl_htron ;# MMS-F Name: ;# SUM Issue: ;# Simulator Validation Status: ;# ;# 1.2 Date Created: 14-SEP-94 ;# Revision: 1. 11-29-94 ;# 2. 4-14-95 GJ ;# 3. 5-4-95 RR ;# 4. 11/18/95 GJ ;# 5. 12/03/95 GJ ;# 6. 13-OCT-96 BDB ;# ;# 1.3 Change Description: ;# ;# 1. Changed TM check to end proc if in LR ;# 2. changed comments, removed waits ;# 3. Changed comments and removed waits ;# 4. Changed name convention from m_ts_* to m_fl_*. ;# 5. Deleted GOTO END and added WAIT; GO TO CONTINUE ;# 6. Added waiting for P@CMD_STATE#TELECOMMAND = "AVAILABLE" ;# ;# 1.4 Point of Contact: ;# FOT Author: RRowe ATSC/SOHO 805-3642 ;# ;#************************************************************************** ;# 2.0 Description ;# ;# 2.1 Narrative Description ;# ;# This procedure powers up and initializes the Optics ;# Package and Operations CCD heater cntroller. ;# ;# 2.2 Intended Use: ;# ;# Controlled initial power on of primary MDI CCD and ;# optics package heater controllers following initial ;# power up to SLEEP mode. ;# ;# 2.3 Duration: TBD ;# ;# 2.4 References: ;# ;#************************************************************************** ;# 3.0 Instructions for Use: ;# ;# 3.1 Parameters Required ;# ;# None ;# ;# 3.2 Critical Activities ;# ;# TBD ;# ;# 3.3 Special Constraints or Activities ;# ;# MDI in SLEEP mode. Medium rate telemetry support required ;# for duration of power on sequence. MDI Operator on station ;# to support verification of procedure. MDI operator ;# verification of procedure. MDI operator verification ;# required for each step before continuing. This procedure ;# should be completed as soos as possible following MDI ;# power on. ;# ;#************************************************************************** ;# 4.0 STEPS: ;# ; BEGIN: ; IF (P@CMD_STATE#TELECOMMAND = "AVAILABLE") THEN ELSE /CLEAR ;Clearing the Command Buffer. ENDIF ; IF (P@KKTMMODE = "HK") THEN ;Check TM is not in LR WRITE "TM IS NOT IN MEDIUM/HIGH RATE." WAIT; GO TO CONTINUE ENDIF WAIT ;'GO' to switch on OP/CCD heater controller. /mbpwhopn; switch on op/ccd heater /SEND WAIT UNTIL(P@MKPWHOP="ON"); Verify OP/CCD heater controller is on. WAIT UNTIL (P@CMD_STATE#TELECOMMAND = "AVAILABLE") /mbhcmspt,0000; HOC set point to 0 /SEND WAIT UNTIL(MKHCMSPT=0); Verify HOC set point is 0 WAIT UNTIL (P@CMD_STATE#TELECOMMAND = "AVAILABLE") /mbhopspt,0000; HOP set point to 0 /SEND WAIT UNTIL(MKHOPSPT=0); WAIT UNTIL(P@MKHOPH2="OFF"); WAIT UNTIL(P@MKHOPH3="OFF"); ; sv p@mipwa WAIT ;Record MDI current. Should be about 0.7. SNAP M_PWR_1,,HTRON.RPT,OVERWRITE ;#************************************************************************** ;# 5.0 Final Constraints ;# ;# TBD ;# ;#************************************************************************** END: ENDPROC