changeset 413:46c1818ab589

testing
author heinrichsweikamp
date Sat, 16 Jul 2011 09:32:31 +0200
parents b2c9cc018671
children dd4a1aa96232
files code_part1/OSTC_code_asm_part1/divemode.asm
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/code_part1/OSTC_code_asm_part1/divemode.asm	Wed Jul 13 11:12:43 2011 +0200
+++ b/code_part1/OSTC_code_asm_part1/divemode.asm	Sat Jul 16 09:32:31 2011 +0200
@@ -48,9 +48,9 @@
 ; Startup Tasks for deco modes
 	call	PLED_display_ndl_mask		; display "no stop" if not in gauge or apnoe mode
 
-	btfsc	FLAG_const_ppO2_mode		; only in const_ppO2_mode
+	btfss	FLAG_const_ppO2_mode		; only in const_ppO2_mode
+	bra		diveloop_loop				; OC modes, skip
 	bsf		setpoint_changed			; Add a setpoint change to the first depth sample in CC mode
-	btfsc	FLAG_const_ppO2_mode		; only in const_ppO2_mode
 	bsf		event_occured				; set global event flag
 
 diveloop_loop:		; The diveloop starts here