PROC K_IDTOMH ;Version 6 GOTO BEGIN ; ;#************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT Name: K_IDTOMH ;# MMS-F Name: IDLE_TO_MDI-H_FORM_1_OPT ;# SUM Issue: 3E ;# Simulator Validation Status: Complete ;# ;# 1.2 Date: ;# Created: 30 MAR 1994 ;# Revision: 1. 2-FEB-95 HB ;# 2. 24-MAR-95 ;# 3. 5-26-95 RR ;# 4. 11-AUG-95 TB ;# 5. 11-SEP-95 TB ;# 6. 18-NOV-95 TB ;# ;# 1.3 Change Description: ;# ;# 1. Changed name to K_IDTOMH. Added flexibility to perform this ;# procedure regardless of TM submode number. ;# 2. Updated procedure per SUM 3B. No TSTOL changes. ;# 3. added mdi proc ;# 4. Updated to SUM 3C. Updated TBDs. No TSTOL Changes. ;# Updated SIM status ;# 5. Updated SUM ISSUE. No TSTOL Changes ;# 6. Changed 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 ;# ;# This transition is now optional. ;# To change the TM mode from idle to MDI-H. ;# To configure the experiment in MDI-H mode. (No information ;# available about necessary operations for MDI-H mode transition ;# at experiment level) ;# ;# 2.2 Intended Use: ;# ;# Change TM mode Idle to MDI-H, Acquisition Format 1 (Optional) ;# ;# 2.3 Duration: 4 minutes 45 seconds ;# ;# 2.4 References: Drawing SUM Part 7 Fig 1.1.1-1 ;# ;#************************************************************************** ;# 3.0 Instructions for Use: ;# ;# 3.1 Parameters Required ;# ;# None ;# ;# 3.2 Critical Activities ;# ;# None ;# ;# 3.3 Special Constraints or Activities ;# ;# Before initiating the mode transition at experiment level it ;# is necessary to wait up to 22.5 seconds for idle mode to be ;# correctly settled. ;# ;#************************************************************************** ;# 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 = "IDLE") ;Check the current TM mode /KNK1ET7$TID ;Send TCM with data w1 = 07, data w2 = 01 /SEND ;Wait 22.5 seconds for the change to be effective ;and reported in the telemetry. Check the TM mode ;(available at latest 3 formats (after change is ;commanded). WAIT UNTIL (P@KKTMFID = "MR/HR $TID") ;Check the current TM mode WAIT UNTIL (P@KKTMMODE = "MDI H") ;Check the current TM mode s m_fl_idtomh ;#************************************************************************** ;# 5.0 Final Constraints ;# ;# None ;# ;#************************************************************************** ENDPROC