[r24]: / ecu_at135_v1d_aladdin / StandardPLC / Plc Logic / Application / 001.Global_Box / Inputs / Fct_analog_inputs / svnobj  Maximize  Restore  History

Download this file

37 lines (33 with data), 5.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
	*---------------            					 Boite de structure d'entr
es analogiques				 		------------------
	*
	*	xxx_xxxx_input_error:	Erreur hardware sur le bus d'entr
e ECU																  
	---------------------------------------------------------------------------------------------------------------------------------*)
TYPE Fct_analog_inputs :
	
	STRUCT
		
						 
		xReset_analog_error:						BOOL;
		(* Analog input - Ligne hydraulique direction *)
		uiChannel_press_steeringline:				UINT	:=0100;
		xSteeringline_press_input_error:			BOOL;
		uiRawValue_steeringline_press:				UINT;
		(* Analog input - pression accu frein avant *)
		uiChannel_press_acc_fr_av:					UINT	:=0700;
		xAcc_fr_av_press_input_error:				BOOL;
		uiRawValue_accu_fr_av_press:				UINT;	
		(* Analog input - pression accu frein arri
re *)
		uiChannel_press_acc_fr_arr:					UINT	:=0701;
		xAcc_fr_arr_press_input_error:				BOOL;
		uiRawValue_accu_fr_arr_press:				UINT;	
		(* Analog input - pression frein avant *)
		uiChannel_press_frein_av:					UINT	:=0702;
		xFrein_av_press_input_error:				BOOL;
		uiRawValue_frein_av_press:					UINT;	
		(* Analog input - pression frein arri
re *)
		uiChannel_press_frein_arr:					UINT	:=0703;
		xFrein_arr_press_input_error:				BOOL;
		uiRawValue_frein_arr_press:					UINT;	
	END_STRUCT
END_TYPE