AnnexF/weigh_il.txt
author Edouard Tisserant
Tue, 09 Jul 2019 08:31:02 +0200
changeset 1088 9cb7c8bf7dbc
parent 0 fb772792efd1
permissions -rwxr-xr-x
Add a column to VARIABLES.CSV, containing variable (derived) type name, additionally to current last column contyaining base type name
FUNCTION WEIGH : WORD     (* BCD encoded *)
  VAR_INPUT  (* "EN" input is used to indicate "scale ready" *)
    weigh_command : BOOL;
    gross_weight : WORD ; (* BCD encoded *)
    tare_weight : INT ;
  END_VAR
(* Function Body *)
	LD	weigh_command	
	JMPC	WEIGH_NOW	
	ST	ENO	(* No weighing, 0 to "ENO" *)
	RET		
WEIGH_NOW:	LD	gross_weight	
	BCD_TO_INT		
	SUB	tare_weight	
	INT_TO_BCD		(* Return evaluated weight *)
	ST	WEIGH	

END_FUNCTION                     (* Implicit "ENO" *)