comparison src/customview.asm @ 136:9a637c9bb19a

rename Deco Planner to Simulator
author heinrichsweikamp
date Thu, 17 Jul 2014 13:29:25 +0200
parents 4574aed5cd4c
children 28b057aa9f75
comparison
equal deleted inserted replaced
135:42a2cfc3e85d 136:9a637c9bb19a
396 bra customview_toggle ; Yes, Call next view... 396 bra customview_toggle ; Yes, Call next view...
397 call TFT_dyn_gaslist ; Show the dyn gaslist 397 call TFT_dyn_gaslist ; Show the dyn gaslist
398 bra customview_toggle_exit 398 bra customview_toggle_exit
399 399
400 customview_init_view8: ; Sensor millivolts 400 customview_init_view8: ; Sensor millivolts
401 btfsc FLAG_gauge_mode ; In Gauge mode?
402 bra customview_toggle ; Yes, Call next view...
401 btfsc FLAG_apnoe_mode ; In Apnoe mode? 403 btfsc FLAG_apnoe_mode ; In Apnoe mode?
402 bra customview_toggle ; yes, Call next view... 404 bra customview_toggle ; yes, Call next view...
403 btfss FLAG_ccr_mode ; In CC mode? 405 btfss FLAG_ccr_mode ; In CC mode?
406 bra customview_toggle ; no, Call next view...
407 TSTOSS opt_ccr_mode ; =0: Fixed SP, =1: Sensor
404 bra customview_toggle ; no, Call next view... 408 bra customview_toggle ; no, Call next view...
405 call TFT_hud_mask ; Setup HUD mask 409 call TFT_hud_mask ; Setup HUD mask
406 call TFT_hud_voltages ; Show HUD details 410 call TFT_hud_voltages ; Show HUD details
407 bra customview_toggle_exit 411 bra customview_toggle_exit
408 412