PROC m_fl_htrcnfg ;Version 4 GOTO BEGIN ; ;#************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT Name: M_HTRCNFG ;# MMS-F Name: ;# SUM Issue: ;# Simulator Validation Status: ;# ;# 1.2 Date Created: 9/27/94 ;# Revision: 1. 4/24/95 ;# 2. 5-3-95 ;# 3. 5-26-95 RR ;# 4. 11/18/95 GJ ;# ;# 1.3 Change Description: ;# ;# 1. changed comments ;# 2. change wait statements ;# 3. changed: ;# wait until(p@mkhopspt=64) ;# to wait until(p@mkhopspt=0) ;# 4. Changed name convention from m_ts_* to m_fl_*. ;# ;# 1.4 Point of Contact: ;# FOT Author: RRowe ATSC/SOHO 805-3642 ;# ;#************************************************************************** ;# 2.0 Description ;# ;# 2.1 Narrative Description ;# ;# This procedure configures set points for the Optics ;# Package, Operational CCD heater, and Decontamination ;# CCD heater following completion of the CCD ;# decontamination period. ;# ;# 2.2 Intended Use: ;# ;# Setting the MDI Operational CCD and optics package ;# heater controller set points following CCD decontamination. ;# ;# 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 or higher mode. Medium rate telemetry ;# support required for duration of power on sequence. ;# MDI Operator on station to support verification of ;# procedure. MDI operator verification required for ;# each step before continuing. ;#************************************************************************** ;# 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." GOTO END ENDIF ; SV P@MIPWA WAIT; Record the MDI current. Should be <2.0 ; WAIT; 'GO' to set HOC set point to 0 ; /mbhcmspt 0000; HOC set point to 0 /SEND ; WAIT UNTIL(MKHCMSPT=0); Telemetry verification of HOC set point ; SV P@MIPWA WAIT; Record the MDI current. ; WAIT; 'GO' to set HOP set point to 64 ; /mbhopspt 0040; HOP set point to 64 /SEND ; WAIT UNTIL(P@MKHOPSPT=0); Telemetry verification of HOP set point WAIT UNTIL(P@MKHOPH2="OFF"); WAIT UNTIL(P@MKHOPH3="ON"); ; SV P@MIPWA WAIT; Record the MDI current. ; WAIT; 'GO' to turn the CCD decontamination heater off ; /mbpwhcmf; CCD decontamination heater off /SEND ; WAIT UNTIL(P@MKPWHCM="OFF"); Telemetry verification of CCD decon. heater off ; SV P@MIPWA WAIT; Record the MDI current. ; ;#************************************************************************** ;# 5.0 Final Constraints ;# ;# TBD ;# ;#************************************************************************** end: ENDPROC