PROC H_FL_EOBS_1 ;version 2 GOTO BEGIN ; ;#************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT Name: H_FL_EOBS_1 ;# MMS-F Name: H_FL_EOBS_1 ;# SUM Issue: N/A ;# Simulator Validation Status: Validated ;# ;# 1.2 Date Created: 7 MAR 1995 TL ;# Revision: 1) 11 AUG 95 TL ;# 2) 25 Oct 95 TL ;# ;# 1.3 Change Description: ;# ;# 1) Changed name. ;# 2) Added version number, comments. ;# ;# 1.4 Point of Contact: T. LA FAVE ;# FOT Author: T. LA FAVE ATSC/SOHO 286-4799 ;# ;#************************************************************************** ;# 2.0 Description ;# ;# 2.1 Narrative Description ;# ;# This procedure is used to switch ESU from STANDBY mode to ;# ON mode (nominal observation mode) with electron measurements ;# enabled and with nominal analog multiplexer circuits, ;# A/D converter, and gate array powered. The module is self- ;# standing and can be used independently whenever this ;# transition is necessary. ;# ;# 2.2 Intended Use: ;# ;# ;# ;# 2.3 Duration: 11 min. ;# ;# 2.4 References: ;# Page h_cepac1 ;#************************************************************************** ;# 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: IF (P@CMD_STATE#TELECOMMAND = "AVAILABLE") THEN ELSE /CLEAR ;Clearing the Command Buffer. ENDIF WAIT UNTIL (P@HSEMODE = "STANDBY") /HBEUPLD3,4CA2,9C00,0000 ; Upload data /HBEOMODE ; Enter ESU ON mode WAIT ; Verify command buffer contents /SEND WAIT UNTIL (P@HSEMODE = "ON") /HBEUPLD3,4CA2,FF80,0000 ; Upload data WAIT ; Verify command buffer contents /SEND WAIT UNTIL (P@HSEMODE = "MAINTENANCE") /HBEUPLD3,4CA2,3002,1500 ; Upload data /HBECNFHW ; Configure hardware WAIT ; Verify command buffer contents /SEND WAIT 65 /HBEUPLD3,4CA2,FF00,0000 ; Upload data WAIT ; Verify command buffer contents /SEND WAIT UNTIL (P@HSEMODE = "ON") ;#************************************************************************** ;# 5.0 Final Constraints ;# ;# None ;# ;#************************************************************************** ENDPROC