PROC K_MHTOMM ;Version 4 GOTO BEGIN ;#***************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT NAME: K_MHTOMM ;# MMS-F NAME: N/A ;# SUM Issue: N/A ;# Simulator Validation Status: Completed ;# ;# 1.2 Date Created: 10-JAN-95 ;# Revision: 1. 6-FEB-95 ;# 2. 5-26-95 ;# 3. 12-AUG-95 TB ;# 4. 18-NOV-95 TB ;# ;# 1.3 Change Description: ;# ;# 1. Changed name to K_MHTOMM ;# 2. added mdi proc ;# 3. Updated TBDs. ;# 4. 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-H to MDI-M ;# NO INFORMATION IS AVAILABLE ON MDI OPERATIONS NECESSARY ;# FOR THIS TYPE OF TRANSITION ;# ;# 2.2 Intended Use: ;# ;# Change TM mode from MDI-H to MDI-M. ;# ;# 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 H") ;Check the current TM mode /KNK1ET6$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 M") ;formats after change is commanded) S M_FL_MHTOMM ;#***************************************************************************** ;# 5.0 Final Constraints ;# ;# None ;# ;#***************************************************************************** ENDPROC