PROC m_fl_mhtoid ;Version 6 GOTO BEGIN ; ;#************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT Name: m_fl_mhtoid ;# MMS-F Name: ;# SUM Issue: OCD # 126 ;# Simulator Validation Status: ;# ;# 1.2 Date Created: 5-26-95 ;# Revision: 1. 06-JUN-95 HB ;# 2. 15-AUG-95 RR ;# 3. 9-7-95 RR ;# 4. 10-30-95 RR ;# 5. 11/18/95 GJ ;# 6. 20-DEC-95 BS ;# ;# 1.3 Change Description: ;# ;# 1. Added WAIT UNTIL (MKSQRG5 = 0) after the first command. ;# 2. Added commands to set dynamics off, vc flags commans use register 3 ;# 3. Removed commands to set dynamics off ;# 4. added register 4 command. ;# 5. Changed name convention from m_ts_* to m_fl_*. ;# 6. Delete cmd MBSQREG,0004,0000 and TM check. ;# ;# 1.4 Point of Contact: ;# FOT Author: RRowe ATSC/SOHO 286-4799 ;# ;#************************************************************************** ;# 2.0 Description ;# ;# 2.1 Narrative Description ;# ;# This procedure configures the IP and the DEP to suport the ;#MDI-M (VC2) to idle high rate telemetry transition using DEP register R3. ;# ;# 2.2 Intended Use: ;# ;# Configure the MDI DEP and IP for high rate. ;# ;# 2.3 Duration: TBD ;# ;# 2.4 References: ;# ;#************************************************************************** ;# 3.0 Instructions for Use: ;# ;# 3.1 Parameters Required ;# ;# None ;# ;# 3.2 Critical Activities ;# ;# TBD ;# ;# 3.3 Special Constraints or Activities ;# ;# MDI in SAFE or higher mode. At least medium rate TM support ;#required for duration of DEP/IP configuration. This porcedure should be ;#performed BEFORE the high rate channel is commanded to idle. ;#************************************************************************** ;# 4.0 STEPS: BEGIN: IF (P@CMD_STATE#TELECOMMAND = "AVAILABLE") THEN ELSE /CLEAR ;Clearing the Command Buffer. ENDIF ;Set VC flag to idle (0) /mbsqreg,0003,0000 /send WAIT UNTIL (MKSQRG3 = 0) wait until(P@CMD_STATE#TELECOMMAND = "AVAILABLE") ;Set campaign flag off /mbsqreg,0042,0000 /send wait until(P@CMD_STATE#TELECOMMAND = "AVAILABLE") ;Set chain flag off /mbsqreg,0048,0000 /send wait until(P@CMD_STATE#TELECOMMAND = "AVAILABLE") wait 60; 60 second wait ;set campaign address to VC20BS campaign /mbsqreg,0043,0000 /send wait until(P@CMD_STATE#TELECOMMAND = "AVAILABLE") ;#************************************************************************** ;# 5.0 Final Constraints ;# ;# TBD ;# ;#************************************************************************** ENDPROC