PROC K_MMTOIDLE ;Version 8 GOTO BEGIN ; ;#************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT Name: K_MMTOIDLE ;# MMS-F Name: MDI-M_TO_IDLE_FORM_1_OPT ;# SUM Issue: 3E ;# Simulator Validation Status: Completed ;# ;# 1.2 Date: ;# Created: 19-JUL-94 ;# Revision: 1. 6-FEB-95 HB ;# 2. 24-MAR-95 HB ;# 3. 13-APR-95 HB ;# 4. 15-MAY-95 MH ;# 5. 5-26-95 ;# 6. 12-AUG-95 TB ;# 7. 23-OCT-95 TB ;# 8. 18-NOV-95 TB ;# ;# 1.3 Change Description: ;# ;# 1. Changed name to K_MMTOIDLE. Added TM subformat flexibility. ;# 2. Updated procedure per SUM 3B. No TSTOL changes. ;# 3. Added MDI Idle transition command and TM verifier. ;# 4. Change first data word for TC MBSQREG from 3 to 2. Deleted ;# commented out /TBD, WAIT, /SEND. Added comment to MDI TM ;# check. ;# 5. added mdi proc ;# 6. Updated TBDs. Updated to SUM 3E. ;# 7. Updated SIM status ;# 8. 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 MDI-M to Idle. ;# No information is available on MDI operations necessary for ;# this type of transition ;# ;# 2.2 Intended Use: ;# ;# Change TM mode MDI-M to Idle, Acquisition Format 1 (Optional) ;# ;# 2.3 Duration: 4 minutes 45 seconds ;# ;# 2.4 References: None ;# ;#************************************************************************** ;# 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 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 ;Send TCM for MDI-M mode inhibition at MDI level s m_fl_mmtoid WAIT UNTIL(MKSQRG3=0) ;0=idle, 2=VC2, 3=VC3 /KNK1ET3$TID ;Command to high rate idle mode /SEND WAIT 23 ;Up to 22.5 seconds may be necessary for the change to be ;effective and reported in the telemetry WAIT UNTIL (P@KKTMFID = "MR/HR $TID") ;Check the TM mode WAIT UNTIL (P@KKTMMODE = "IDLE") ;Check the TM mode ;available at latest 3 formats after change is commanded ;#************************************************************************** ;# 5.0 Final Constraints ;# ;# None ;# ;#************************************************************************** ENDPROC