PROC m_fl_cmon ;Version 4 GOTO BEGIN ; ;#************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT Name: m_fl_cmon ;# MMS-F Name: ;# SUM Issue: ;# Simulator Validation Status: ;# ;# 1.2 Date Created: 14-SEP-94 ;# Revision: 1. 24-APR-95 GJ ;# 2. 05-03-95 RR ;# 3. 5-26-95 RR ;# 4. 11-18-95 GJ ;# ;# 1.3 Change Description: ;# ;# 1. Remove hard waits ;# 2. Added new logic for HR TM check ;# 3. changed final wait 5 to wait until. ;# 4. Changed naming 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 powers up and initializes the CCD Camera ;# ;# 2.2 Intended Use: ;# ;# Controlled initial power on of Image Processor as part ;# of M_ON or M_WAKE procedures. ;# ;# 2.3 Duration: TBD ;# ;# 2.4 References: ;# ;#************************************************************************** ;# 3.0 Instructions for Use: ;# ;# 3.1 Parameters Required ;# ;# TBD ;# ;# 3.2 Critical Activities ;# ;# TBD ;# ;# 3.3 Special Constraints or Activities ;# ;# MDI in SLEEP mode. High rate telemetry 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<3) and (P@KKTMFID<1)) THEN ;Check TM is not in HR WRITE "TM IS NOT IN HIGH RATE." GOTO END ENDIF ; WAIT; 'GO' to switch on the camera ; /mbpwcmon ;Switch on CCD camera /SEND WAIT UNTIL (P@MKPWCM = "ON") ; ; /mbcmres ;Perform camera reset /SEND ; wait 5; ; /mbiprsal ;Perform IP reset /SEND ; WAIT 5; 5 second wait ; /mbiprun ;IP set to run condition /SEND ; wait until(mkipstat=h'0048') ; /mbcmaadc,0003 ;Specify A amplifier and CCD offset. /SEND ; SV P@MIPWA SV P@MIPWB WAIT; Record MDI current SNAP M_PWR_1,,MDI.RPT,OVERWRITE ; ;#************************************************************************** ;# 5.0 Final Constraints ;# ;# TBD ;# ;#************************************************************************** end: ENDPROC