;+
; Project     :	SOLAR-B - EIS
;
; Name        :	EIS_CPT_SEQ_WAIT
;
; Purpose     :	Sets up sequence wait command.
;
; Explanation : Sets up sequence wait command.
;
; Use         :	< bytes = eis_cpt_seq_wait( delay ) >
;
; Inputs      :	delay : UINT range is 1-65535 in units of 1 ms.
;
; Opt. Inputs : None.
;
; Outputs     : bytes  : BYTARR[3] command.
;
; Opt. Outputs:	None.
;
; Keywords    : None.
;
; Calls       : None.
;
; Common      :	None.
;
; Restrictions:	None.
;
; Side effects:	None.
;
; Category    :	EIS_CPT.
;
; Prev. Hist. :	None.
;
; Written     :	Martin Carter RAL 12/01/07
;
; Modified    :	Version 0.0, 12/01/07, MKC
;
; Version     :	0.0, 12/01/07
;-
;**********************************************************

FUNCTION eis_cpt_seq_wait, delay

  RETURN, ['8A'XB, eis_cpt_uinttobytes(delay)]

END





