;+
; Project     :	SOLAR-B - EIS
;
; Name        :	EIS_CPT_START_EXP
;
; Purpose     :	Sets up MSSL start exposure command.
;
; Explanation : Sets up MSSL start exposure command.
;
; Use         :	< bytes = eis_cpt_start_exp( exposure_time ) >
;
; Inputs      :	exposure_time : UINT range is 1-65535 in units of 10 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 17/12/04
;
; Modified    :	Version 0.0, 17/12/044, MKC
;               Version, 0.1, 15/04/05, MKC
;                 Changed format of !EIS_CPT_COMMANDS.
;               Version, 0.2, 27/04/05, MKC
;                 Removed !EIS_CPT_COMMANDS. Put in command directly.
;
; Version     :	Version 0.2, 27/04/05
;-
;**********************************************************

FUNCTION eis_cpt_start_exp, exposure_time

  RETURN, ['8D'XB, eis_cpt_uinttobytes(exposure_time)]

END





