PROC K_MMTOMH ;Version 5 GOTO BEGIN ;#***************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT NAME: K_MMTOMH ;# MMS-F NAME: MDI-M_TO_MDI-H_FORM_1 ;# SUM Issue: 3E ;# Simulator Validation Status: Complete ;# ;# 1.2 Date Created: 30-MAR-94 ;# Revision: 1. 6-FEB-95 HB ;# 2. 24-MAR-95 HB ;# 3. 5-26-95 RR ;# 4. 12-AUG-95 TB ;# 5. 18-NOV-95 TB ;# ;# 1.3 Change Description: ;# ;# 1. Changed name to K_MMTOMH. Added TM subformat flexibility. ;# Added command state availability IF-THEN statements at ;# beginning of procedure. ;# 2. Updated procedure per SUM 3B. Deleted comment marks from ;# MDI command. ;# 3. Added mdi proc ;# 4. Updated TBDs. Updated to SUM 3E. ;# 5. Changed all MDI procedures from tl to fl. ;# ;# 1.4 Point of Contact: GMiller ;# FOT Author: MHill ATSC/SOHO 286-4799 ;# ;#***************************************************************************** ;# 2.0 Description ;# ;# 2.1 Narrative Description ;# ;# To change the TM mode from the MDI-M to MDI-H ;# NO INFORMATION IS AVAILABLE ON MDI OPERATIONS NECESSARY ;# FOR THIS TYPE OF TRANSITION ;# ;# 2.2 Intended Use: ;# ;# Change TM mode from MDI-M to MDI-H, Acquisition Format 1 ;# ;# 2.3 Duration: 5 min 45 sec ;# ;# 2.4 References: ;# ;#***************************************************************************** ;# 3.0 Instructions for Use: ;# ;# 3.1 Parameters Required ;# ;# None ;# ;# 3.2 Critical Activities ;# ;# None ;# ;# 3.3 Special Constraints or Activities ;# ;# None ;# ;#***************************************************************************** ;# 4.0 STEPS: BEGIN: LOCAL TID IF (P@CMD_STATE#TELECOMMAND = "AVAILABLE") THEN ELSE /CLEAR ;Clearing the Command Buffer. ENDIF ;Clear Command Buffer ASK "What telemetry subformat is the DHSS in (1-4)?"TID WAIT UNTIL (P@KKTMFID = "MR/HR $TID") ;Check the current TM mode WAIT UNTIL (P@KKTMMODE = "MDI M") ;Check the current TM mode /KNK1ET7$TID ;Send TCM to trigger TM mode change at DHSS level ;Up to 22.5 sec may be necessary for the change ;to be effective and reported in the telemetry /SEND WAIT UNTIL (P@KKTMFID = "MR/HR $TID") ;Check the TM mode (available at latest 3 WAIT UNTIL (P@KKTMMODE = "MDI H") ;formats after change is commanded) S M_FL_MMTOMH ;#***************************************************************************** ;# 5.0 Final Constraints ;# ;# None ;# ;#***************************************************************************** ENDPROC