# HG changeset patch
# User heinrichsweikamp
# Date 1393787470 -3600
# Node ID 5d6da9ddde27e5c965ec1e9d3c54bd14f80daf7a
# Parent  3b69d3e2305146a57d2a24710b152d14fb3d232b
NEW: Show First Diluent (CCR Mode) permantely in surface mode

diff -r 3b69d3e23051 -r 5d6da9ddde27 code_part1/OSTC_code_asm_part1/definitions.asm
--- a/code_part1/OSTC_code_asm_part1/definitions.asm	Tue Feb 11 13:43:53 2014 +0100
+++ b/code_part1/OSTC_code_asm_part1/definitions.asm	Sun Mar 02 20:11:10 2014 +0100
@@ -22,7 +22,7 @@
 ; ToDo:
 
 #DEFINE	softwareversion_x		d'2'		; Software version  XX.YY
-#DEFINE	softwareversion_y		d'90'		; Software version  XX.YY
+#DEFINE	softwareversion_y		d'91'		; Software version  XX.YY
 
 #DEFINE softwareversion_beta 	0 			; (and 0 for release)
 
diff -r 3b69d3e23051 -r 5d6da9ddde27 code_part1/OSTC_code_asm_part1/outputs.asm
--- a/code_part1/OSTC_code_asm_part1/outputs.asm	Tue Feb 11 13:43:53 2014 +0100
+++ b/code_part1/OSTC_code_asm_part1/outputs.asm	Sun Mar 02 20:11:10 2014 +0100
@@ -1639,14 +1639,24 @@
 	WIN_INVERT	.0					; Init new Wordprocessor
 	call	DISP_standard_color
 
-	lfsr	FSR2,letter		
+	lfsr	FSR2,letter
 	read_int_eeprom	d'36'
 	movff	EEDATA,lo				; copy to lo
 	clrf	hi
 	output_16dp	d'3'		; outputs into Postinc2!
+	STRCAT_PRINT  TXT_BAR3
+
+    bsf     leftbind
+    call    get_first_diluent           ; Read first diluent into lo(O2) and hi(He)
+	WIN_TOP		.160
+	WIN_LEFT	.104
+	lfsr	FSR2,letter
+	output_8				; O2 Ratio
+	PUTC    '/'
+	movff	hi,lo
+	output_8				; He Ratio
+	STRCAT_PRINT  ""
 	bcf		leftbind
-
-	STRCAT_PRINT  TXT_BAR3
 	return								; Done.
 
 DISP_active_gas_surfmode2: