changeset 23:70215309143d

1.61beta test
author heinrichsweikamp
date Tue, 04 May 2010 19:23:21 +0200
parents 73014f788032
children 571a79f1d06a
files code_part1/OSTC_code_asm_part1/definitions.asm code_part1/OSTC_code_asm_part1/divemode.asm code_part1/OSTC_code_asm_part1/pled_outputs.asm
diffstat 3 files changed, 32 insertions(+), 33 deletions(-) [+]
line wrap: on
line diff
--- a/code_part1/OSTC_code_asm_part1/definitions.asm	Wed Apr 21 17:37:30 2010 +0200
+++ b/code_part1/OSTC_code_asm_part1/definitions.asm	Tue May 04 19:23:21 2010 +0200
@@ -23,7 +23,7 @@
 ;#DEFINE		NO_SENSOR_MODE			; uses Dummy values
 
 #DEFINE	softwareversion_x		d'1'		; Software version  XX.YY
-#DEFINE	softwareversion_y		d'60'		; Software version  XX.YY
+#DEFINE	softwareversion_y		d'61'		; Software version  XX.YY
 
 #DEFINE	max_custom_number		d'41'		; Number of last used custom function
 
--- a/code_part1/OSTC_code_asm_part1/divemode.asm	Wed Apr 21 17:37:30 2010 +0200
+++ b/code_part1/OSTC_code_asm_part1/divemode.asm	Tue May 04 19:23:21 2010 +0200
@@ -449,7 +449,7 @@
  	movff	lo, char_I_deco_N2_ratio	; clear
  	movff	lo, char_I_deco_He_ratio	; clear
 skip_decompression_gases:
-;call	PLED_gaschange_DEBUG
+call	PLED_gaschange_DEBUG
 	return
 
 calc_deko_divemode2:
--- a/code_part1/OSTC_code_asm_part1/pled_outputs.asm	Wed Apr 21 17:37:30 2010 +0200
+++ b/code_part1/OSTC_code_asm_part1/pled_outputs.asm	Tue May 04 19:23:21 2010 +0200
@@ -3192,37 +3192,36 @@
 ;	return
 ;
 
-;PLED_gaschange_DEBUG:
-;	movlw	.008
-;	call	PLED_SetColumn
-;	movlw	.016
-;	call	PLED_SetRow
-;	lfsr	FSR2,letter
-;	movff	char_I_deco_He_ratio,lo
-;	output_8
-;	call	word_processor
-;
-;	movlw	.024
-;	call	PLED_SetRow
-;	lfsr	FSR2,letter
-;	movff	char_I_deco_N2_ratio,lo
-;	output_8
-;	call	word_processor
-;
-;	movlw	.032
-;	call	PLED_SetRow
-;	lfsr	FSR2,letter
-;	movff	char_I_deco_gas_change,lo
-;	output_8
-;	call	word_processor
-;
-;	movlw	.040
-;	call	PLED_SetRow
-;	lfsr	FSR2,letter
-;	movff	hi,lo
-;	output_8
-;	call	word_processor
-;	return
+PLED_gaschange_DEBUG:
+	WIN_LEFT	.0
+	WIN_TOP		.164
+	lfsr	FSR2,letter
+	movff	char_I_deco_He_ratio,lo
+	output_8
+	call	word_processor
+
+	WIN_LEFT	.60
+	WIN_TOP		.164
+	call	PLED_SetRow
+	lfsr	FSR2,letter
+	movff	char_I_deco_N2_ratio,lo
+	output_8
+	call	word_processor
+
+	WIN_LEFT	.120
+	WIN_TOP		.164
+	lfsr	FSR2,letter
+	movff	char_I_deco_gas_change,lo
+	output_8
+	call	word_processor
+
+	WIN_LEFT	.140
+	WIN_TOP		.164
+	lfsr	FSR2,letter
+	movff	hi,lo
+	output_8
+	call	word_processor
+	return
 
 
 PLED_MultiGF_deco_mask: