PROC m_fl_ipqdump ;Version 2 GOTO BEGIN ; ;#************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT Name: m_fl_ipqdump ;# experiment Name: m_fl_ipqdump ;# SUM Issue: ;# Simulator Validation Status: ;# ;# 1.2 Date Created: 9-8-95 ;# Revision: 1. 10-27-95 GJ ;# 2. 11/18/95 GJ ;# ;# 1.3 Change Description: ;# ;# 1. Added wait until (mkiperst=h'1000') and (mkiperst=h'3000') ;# 2. Changed name convention from m_ts_* to m_fl_*. ;# ;# 1.4 Point of Contact:RRowe ;# FOT Author: RRowe ATSC/SOHO 286-4799 ;# ;#************************************************************************** ;# 2.0 Description ;# ;# 2.1 Narrative Description ;# ;# This procedure dumps the IP instruction queue in the 5k ;# science data channel ;# ;# ;# 2.2 Intended Use: ;# ;# Dump contents of IP instruction queue ;# ;# 2.3 Duration: ;# ;# 2.4 References: ;# ;#************************************************************************** ;# 3.0 Instructions for Use: ;# ;# 3.1 Parameters Required ;# ;# None ;# ;# 3.2 Critical Activities ;# ;# None ;# ;# 3.3 Special Constraints or Activities ;# ;# MDI in SAFE or higher mode. Medium telemetry support ;# required for duration of queue dump. ;# None ;# ;#************************************************************************** ;# 4.0 STEPS: BEGIN: IF (P@CMD_STATE#TELECOMMAND = "AVAILABLE") THEN ELSE /CLEAR ;Clearing the Command Buffer. ENDIF wait; Disable IP macro queue /mbipldin 0004,0154 /send wait until (mkiperst=h'1000') wait; dump the queue to the buffer /mbipldin 0004,013c /send wait; read to Buffer /mbipcmd 0032,8000,1fff /send wait 60; seconds wait; read to Buffer /mbipcmd 0032,8000,1fff /send wait 60; seconds wait; MDI Operator verify queue dump wait; return queue control to IP /mbipldin 0004,0136 /send wait until (mkiperst=h'3000') ;#************************************************************************** ;# 5.0 Final Constraints ;# ;# None ;# ;#************************************************************************** OUT: RETURN ENDPROC