annotate src/divemode.asm @ 490:8dfb93e80338

NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically) NEW: Logbook detail page in larger font (And nicer layout) CHANGE: Sleep mode current slightly reduced for all hwOS devices NEW: Logbook now records battery information NEW: Markers in internal logbook drawn as small "m" next to the profile
author heinrichsweikamp
date Wed, 29 Mar 2017 21:35:12 +0200
parents 18e047102e49
children b9f06f1a1f74
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
heinrichsweikamp
parents:
diff changeset
3 ; File divemode.asm
heinrichsweikamp
parents:
diff changeset
4 ;
heinrichsweikamp
parents:
diff changeset
5 ; Divemode
heinrichsweikamp
parents:
diff changeset
6 ;
heinrichsweikamp
parents:
diff changeset
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
heinrichsweikamp
parents:
diff changeset
8 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
9 ; HISTORY
heinrichsweikamp
parents:
diff changeset
10 ; 2011-08-15 : [mH] moving from OSTC code
heinrichsweikamp
parents:
diff changeset
11
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 274
diff changeset
12 #include "hwos.inc" ; Mandatory header
0
heinrichsweikamp
parents:
diff changeset
13 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c
heinrichsweikamp
parents:
diff changeset
14 #include "tft_outputs.inc"
heinrichsweikamp
parents:
diff changeset
15 #include "strings.inc"
heinrichsweikamp
parents:
diff changeset
16 #include "tft.inc"
heinrichsweikamp
parents:
diff changeset
17 #include "eeprom_rs232.inc"
heinrichsweikamp
parents:
diff changeset
18 #include "isr.inc"
heinrichsweikamp
parents:
diff changeset
19 #include "math.inc"
heinrichsweikamp
parents:
diff changeset
20 #include "wait.inc"
heinrichsweikamp
parents:
diff changeset
21 #include "customview.inc"
heinrichsweikamp
parents:
diff changeset
22 #include "start.inc"
heinrichsweikamp
parents:
diff changeset
23 #include "adc_lightsensor.inc"
heinrichsweikamp
parents:
diff changeset
24 #include "ghostwriter.inc"
heinrichsweikamp
parents:
diff changeset
25 #include "i2c.inc"
113
heinrichsweikamp
parents: 111
diff changeset
26 #include "calibrate.inc"
216
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
27 #include "convert.inc"
0
heinrichsweikamp
parents:
diff changeset
28
heinrichsweikamp
parents:
diff changeset
29 gui CODE
heinrichsweikamp
parents:
diff changeset
30
heinrichsweikamp
parents:
diff changeset
31 global diveloop
heinrichsweikamp
parents:
diff changeset
32 diveloop:
heinrichsweikamp
parents:
diff changeset
33 banksel common
heinrichsweikamp
parents:
diff changeset
34 call speed_normal
heinrichsweikamp
parents:
diff changeset
35 call diveloop_boot ; Boot tasks for all modes
heinrichsweikamp
parents:
diff changeset
36
heinrichsweikamp
parents:
diff changeset
37 ; Startup Tasks for all modes
206
031d875200ca always reboot display in divemode
heinrichsweikamp
parents: 205
diff changeset
38 call TFT_boot ; Initialize TFT (includes clear screen)
0
heinrichsweikamp
parents:
diff changeset
39 call TFT_divemode_mask ; Display mask
heinrichsweikamp
parents:
diff changeset
40 call TFT_temp_divemode ; Displays temperature
39
e4e91fe8b09d remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents: 38
diff changeset
41 movff customview_divemode,menupos3 ; Reload last customview
e4e91fe8b09d remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents: 38
diff changeset
42 call customview_mask ; Redraw last custom view
0
heinrichsweikamp
parents:
diff changeset
43
heinrichsweikamp
parents:
diff changeset
44 btfsc FLAG_apnoe_mode
heinrichsweikamp
parents:
diff changeset
45 bsf realdive ; Set Realdive flag in Apnoe mode
heinrichsweikamp
parents:
diff changeset
46
heinrichsweikamp
parents:
diff changeset
47 btfsc FLAG_apnoe_mode ; Done for Apnoe or Gauge mode
heinrichsweikamp
parents:
diff changeset
48 bra diveloop_loop
heinrichsweikamp
parents:
diff changeset
49 btfsc FLAG_gauge_mode ; Done for Apnoe or Gauge mode
heinrichsweikamp
parents:
diff changeset
50 bra diveloop_loop
heinrichsweikamp
parents:
diff changeset
51
heinrichsweikamp
parents:
diff changeset
52 call TFT_active_gas_divemode ; Display gas/Setpoint
heinrichsweikamp
parents:
diff changeset
53 call TFT_display_ndl_mask ; display "NDL"
heinrichsweikamp
parents:
diff changeset
54
heinrichsweikamp
parents:
diff changeset
55 ; +@5 init
heinrichsweikamp
parents:
diff changeset
56 setf WREG ; WAIT marker: display "---"
heinrichsweikamp
parents:
diff changeset
57 movff WREG,int_O_extra_ascenttime+0
heinrichsweikamp
parents:
diff changeset
58 movff WREG,int_O_extra_ascenttime+1
heinrichsweikamp
parents:
diff changeset
59 movlw 1
heinrichsweikamp
parents:
diff changeset
60 movwf apnoe_mins ; Start compute after next cycle.
heinrichsweikamp
parents:
diff changeset
61
heinrichsweikamp
parents:
diff changeset
62 ;--------------------------------------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
63 diveloop_loop: ; The diveloop starts here
heinrichsweikamp
parents:
diff changeset
64 btfss onesecupdate
heinrichsweikamp
parents:
diff changeset
65 bra diveloop_loop3
heinrichsweikamp
parents:
diff changeset
66
heinrichsweikamp
parents:
diff changeset
67 ; tasks any new second...
178
39f6c07ce2f6 BUGFIX: Average depth computation
heinrichsweikamp
parents: 176
diff changeset
68 bcf onesecupdate ; one seconds update, clear flag here in case it's set again in ISR before all tasks are done.
39f6c07ce2f6 BUGFIX: Average depth computation
heinrichsweikamp
parents: 176
diff changeset
69
0
heinrichsweikamp
parents:
diff changeset
70 btfsc FLAG_apnoe_mode ; Only in apnoe mode
heinrichsweikamp
parents:
diff changeset
71 bra diveloop_loop1b ; One Second Tasks in Apnoe mode
heinrichsweikamp
parents:
diff changeset
72
heinrichsweikamp
parents:
diff changeset
73 call TFT_divemins ; Display (new) divetime!
heinrichsweikamp
parents:
diff changeset
74 call customview_second ; Do every-second tasks for the custom view area
131
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
75 call divemode_check_for_warnings ; Check for any warnings
0
heinrichsweikamp
parents:
diff changeset
76
heinrichsweikamp
parents:
diff changeset
77 ; Tasks only for deco modes
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
78 btfsc show_safety_stop ; Show the safety stop?
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
79 call TFT_show_safety_stop ; Yes, show/delete if done.
0
heinrichsweikamp
parents:
diff changeset
80 call calc_deko_divemode ; calculate decompression and display result (any two seconds)
heinrichsweikamp
parents:
diff changeset
81 bra diveloop_loop1x ; Common Tasks
heinrichsweikamp
parents:
diff changeset
82
heinrichsweikamp
parents:
diff changeset
83 diveloop_loop1b:
heinrichsweikamp
parents:
diff changeset
84 ; Tasks only for Apnoe mode
131
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
85 rcall divemode_apnoe_tasks ; 1 sec. Apnoe tasks
134
4574aed5cd4c Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents: 131
diff changeset
86 call customview_second ; Do every-second tasks for the custom view area
254
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 239
diff changeset
87 bra diveloop_loop1x ; Common Tasks
0
heinrichsweikamp
parents:
diff changeset
88
heinrichsweikamp
parents:
diff changeset
89 diveloop_loop1x:
heinrichsweikamp
parents:
diff changeset
90 ; Common 1sec. tasks for all modes
131
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
91 rcall timeout_divemode ; dive finished? This routine sets the required flags
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
92 rcall set_dive_modes ; tests if depth>threshold
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
93 rcall set_min_temp ; store min. temp if required
0
heinrichsweikamp
parents:
diff changeset
94
heinrichsweikamp
parents:
diff changeset
95 btfsc store_sample ; store new sample?
heinrichsweikamp
parents:
diff changeset
96 call store_dive_data ; Store profile data
heinrichsweikamp
parents:
diff changeset
97
heinrichsweikamp
parents:
diff changeset
98 btfss divemode ; Dive finished?
heinrichsweikamp
parents:
diff changeset
99 goto ghostwriter_end_dive ; Dive finished!
heinrichsweikamp
parents:
diff changeset
100
heinrichsweikamp
parents:
diff changeset
101 btfsc divemode_gaschange ; Gas switch flag set?
heinrichsweikamp
parents:
diff changeset
102 rcall gas_switched_common ; Yes
heinrichsweikamp
parents:
diff changeset
103
heinrichsweikamp
parents:
diff changeset
104 btfsc toggle_gf ; =1: Toggle GF/aGF
heinrichsweikamp
parents:
diff changeset
105 rcall divemodemode_togglegf ; Toggle aGF/GF
heinrichsweikamp
parents:
diff changeset
106
338
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
107 btfsc FLAG_ccr_mode ; In CCR mode...
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
108 call check_dive_autosp ; ...check for Auto-SP
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
109
113
heinrichsweikamp
parents: 111
diff changeset
110 call compute_ppo2 ; compute mv_sensorX and ppo2_sensorX arrays
heinrichsweikamp
parents: 111
diff changeset
111
0
heinrichsweikamp
parents:
diff changeset
112 diveloop_loop3:
heinrichsweikamp
parents:
diff changeset
113 rcall test_switches_divemode ; Check switches in divemode
heinrichsweikamp
parents:
diff changeset
114
heinrichsweikamp
parents:
diff changeset
115 global diveloop_loop4
heinrichsweikamp
parents:
diff changeset
116 diveloop_loop4: ; Menu-Exit returns here...
heinrichsweikamp
parents:
diff changeset
117 btfsc toggle_customview ; Next view?
heinrichsweikamp
parents:
diff changeset
118 call customview_toggle ; Yes, show next customview (and delete this flag)
heinrichsweikamp
parents:
diff changeset
119
heinrichsweikamp
parents:
diff changeset
120 btfsc pressure_refresh ; new pressure available?
heinrichsweikamp
parents:
diff changeset
121 rcall update_temp_and_or_depth ; Yes, display new depth and clear "pressure_refresh" flag
heinrichsweikamp
parents:
diff changeset
122
heinrichsweikamp
parents:
diff changeset
123 btfsc oneminupdate ; one minute tasks
heinrichsweikamp
parents:
diff changeset
124 rcall update_divemode60 ; Update clock, etc.
heinrichsweikamp
parents:
diff changeset
125
239
6c4ad243cb44 CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents: 220
diff changeset
126 ; btfss quarter_second_update
6c4ad243cb44 CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents: 220
diff changeset
127 ; bra diveloop_loop4a
83
eb72c8865f47 Test with graphic compass
heinrichsweikamp
parents: 69
diff changeset
128
0
heinrichsweikamp
parents:
diff changeset
129 bcf quarter_second_update
heinrichsweikamp
parents:
diff changeset
130 movlw .6
heinrichsweikamp
parents:
diff changeset
131 cpfseq menupos3 ; in compass view?
heinrichsweikamp
parents:
diff changeset
132 bra diveloop_loop4a ; No
256
5b4ef0b9090d place compass display code into compass_ops.asm
heinrichsweikamp
parents: 255
diff changeset
133 extern TFT_dive_compass_heading
0
heinrichsweikamp
parents:
diff changeset
134 call TFT_dive_compass_heading ; Yes, update compass heading value
heinrichsweikamp
parents:
diff changeset
135 diveloop_loop4a:
heinrichsweikamp
parents:
diff changeset
136 btfsc enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump)
heinrichsweikamp
parents:
diff changeset
137 bra diveloop_loop5
heinrichsweikamp
parents:
diff changeset
138 bra diveloop_loop6
heinrichsweikamp
parents:
diff changeset
139 diveloop_loop5:
heinrichsweikamp
parents:
diff changeset
140 btfss vusb_in ; USB (still) plugged in?
heinrichsweikamp
parents:
diff changeset
141 bcf enable_screen_dumps ; No, clear flag
heinrichsweikamp
parents:
diff changeset
142 call rs232_get_byte
heinrichsweikamp
parents:
diff changeset
143 btfsc rs232_recieve_overflow
heinrichsweikamp
parents:
diff changeset
144 bra diveloop_loop6
heinrichsweikamp
parents:
diff changeset
145 movlw "l"
heinrichsweikamp
parents:
diff changeset
146 cpfseq RCREG1
heinrichsweikamp
parents:
diff changeset
147 bra diveloop_loop6
heinrichsweikamp
parents:
diff changeset
148 call TFT_dump_screen ; Dump the screen contents
heinrichsweikamp
parents:
diff changeset
149 diveloop_loop6:
heinrichsweikamp
parents:
diff changeset
150
heinrichsweikamp
parents:
diff changeset
151 bra diveloop_loop ; Loop the divemode
heinrichsweikamp
parents:
diff changeset
152 ;--------------------------------------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
153
heinrichsweikamp
parents:
diff changeset
154
heinrichsweikamp
parents:
diff changeset
155 divemode_apnoe_tasks: ; 1 sec. Apnoe tasks
134
4574aed5cd4c Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents: 131
diff changeset
156 call TFT_display_apnoe_descent ; Yes, Show descent timer
0
heinrichsweikamp
parents:
diff changeset
157 call TFT_max_pressure ; use normal max. depth
heinrichsweikamp
parents:
diff changeset
158
heinrichsweikamp
parents:
diff changeset
159 btfsc divemode2 ; Time running?
heinrichsweikamp
parents:
diff changeset
160 bra divemode_apnoe_tasks2 ; New descent, reset data if flag is set
heinrichsweikamp
parents:
diff changeset
161
heinrichsweikamp
parents:
diff changeset
162 rcall apnoe_calc_maxdepth
heinrichsweikamp
parents:
diff changeset
163 call TFT_display_apnoe_surface
heinrichsweikamp
parents:
diff changeset
164 call TFT_display_apnoe_last_max ; Show last max. depth
heinrichsweikamp
parents:
diff changeset
165 incf apnoe_surface_secs,F
heinrichsweikamp
parents:
diff changeset
166 movlw d'60'
heinrichsweikamp
parents:
diff changeset
167 cpfseq apnoe_surface_secs
heinrichsweikamp
parents:
diff changeset
168 bra divemode_apnoe_tasks1
heinrichsweikamp
parents:
diff changeset
169 clrf apnoe_surface_secs
heinrichsweikamp
parents:
diff changeset
170 incf apnoe_surface_mins,F
heinrichsweikamp
parents:
diff changeset
171
heinrichsweikamp
parents:
diff changeset
172 divemode_apnoe_tasks1:
heinrichsweikamp
parents:
diff changeset
173 bcf FLAG_active_descent ; Clear flag
heinrichsweikamp
parents:
diff changeset
174 btfsc divemode2 ; Time running?
heinrichsweikamp
parents:
diff changeset
175 return ; Yes, return
heinrichsweikamp
parents:
diff changeset
176 bsf FLAG_active_descent ; Set Flag
heinrichsweikamp
parents:
diff changeset
177 return
heinrichsweikamp
parents:
diff changeset
178
heinrichsweikamp
parents:
diff changeset
179 divemode_apnoe_tasks2:
heinrichsweikamp
parents:
diff changeset
180 btfss FLAG_active_descent ; Are we descending?
heinrichsweikamp
parents:
diff changeset
181 return ; No, We are at the surface
heinrichsweikamp
parents:
diff changeset
182 rcall apnoe_calc_maxdepth ; Yes!
heinrichsweikamp
parents:
diff changeset
183 call TFT_apnoe_clear_surface ; Clear Surface timer
heinrichsweikamp
parents:
diff changeset
184 clrf apnoe_timeout_counter ; Delete timeout
heinrichsweikamp
parents:
diff changeset
185 clrf apnoe_surface_secs
heinrichsweikamp
parents:
diff changeset
186 clrf apnoe_surface_mins
heinrichsweikamp
parents:
diff changeset
187 clrf apnoe_secs
heinrichsweikamp
parents:
diff changeset
188 clrf apnoe_mins ; Reset Descent time
heinrichsweikamp
parents:
diff changeset
189 movlw .0
heinrichsweikamp
parents:
diff changeset
190 movff WREG,max_pressure+0
heinrichsweikamp
parents:
diff changeset
191 movff WREG,max_pressure+1 ; Reset Max. Depth
heinrichsweikamp
parents:
diff changeset
192 bcf FLAG_active_descent ; Clear flag
heinrichsweikamp
parents:
diff changeset
193 return
heinrichsweikamp
parents:
diff changeset
194
heinrichsweikamp
parents:
diff changeset
195 global apnoe_calc_maxdepth
heinrichsweikamp
parents:
diff changeset
196 apnoe_calc_maxdepth:
heinrichsweikamp
parents:
diff changeset
197 movff apnoe_max_pressure+0,sub_a+0
heinrichsweikamp
parents:
diff changeset
198 movff apnoe_max_pressure+1,sub_a+1
heinrichsweikamp
parents:
diff changeset
199 movff max_pressure+0,sub_b+0
heinrichsweikamp
parents:
diff changeset
200 movff max_pressure+1,sub_b+1
heinrichsweikamp
parents:
diff changeset
201 call subU16 ; sub_c = sub_a - sub_b
heinrichsweikamp
parents:
diff changeset
202 ; apnoe_max_pressure<max_pressure -> neg_flag=1
heinrichsweikamp
parents:
diff changeset
203 ; max_pressure<=apnoe_max_pressure -> neg_flag=0
heinrichsweikamp
parents:
diff changeset
204 btfss neg_flag
heinrichsweikamp
parents:
diff changeset
205 return
heinrichsweikamp
parents:
diff changeset
206 ;apnoe_max_pressure<max_pressure
heinrichsweikamp
parents:
diff changeset
207 movff max_pressure+0,apnoe_max_pressure+0
heinrichsweikamp
parents:
diff changeset
208 movff max_pressure+1,apnoe_max_pressure+1
heinrichsweikamp
parents:
diff changeset
209 return
heinrichsweikamp
parents:
diff changeset
210
heinrichsweikamp
parents:
diff changeset
211
heinrichsweikamp
parents:
diff changeset
212 calc_deko_divemode:
heinrichsweikamp
parents:
diff changeset
213 btfsc twosecupdate ; two seconds after the last call
heinrichsweikamp
parents:
diff changeset
214 bra calc_deko_divemode2 ; Yes, calculate and display deco data ("first second")
heinrichsweikamp
parents:
diff changeset
215
heinrichsweikamp
parents:
diff changeset
216 bsf twosecupdate ; No, but next second!
heinrichsweikamp
parents:
diff changeset
217 ; Routines used in the "other second"
heinrichsweikamp
parents:
diff changeset
218 call calc_average_depth ; calculate average depth
heinrichsweikamp
parents:
diff changeset
219 call calc_velocity ; calculate vertical velocity and display if > threshold (every two seconds)
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
220 call set_reset_safety_stop ; Set flags for safety stop and/or reset safety stop
0
heinrichsweikamp
parents:
diff changeset
221 call TFT_debug_output
heinrichsweikamp
parents:
diff changeset
222
heinrichsweikamp
parents:
diff changeset
223 btfsc FLAG_apnoe_mode ; Done for Apnoe or Gauge mode
heinrichsweikamp
parents:
diff changeset
224 return
heinrichsweikamp
parents:
diff changeset
225 btfsc FLAG_gauge_mode ; Done for Apnoe or Gauge mode
heinrichsweikamp
parents:
diff changeset
226 return
heinrichsweikamp
parents:
diff changeset
227
heinrichsweikamp
parents:
diff changeset
228 ; Calculate CNS
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
229 btfss FLAG_pscr_mode ; in PSCR mode?
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
230 rcall set_actual_ppo2 ; No, set char_I_actual_ppO2
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
231 btfsc is_bailout ; Always in bailout...
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
232 rcall set_actual_ppo2 ; ...set char_I_actual_ppO2
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
233
0
heinrichsweikamp
parents:
diff changeset
234 clrf WREG
heinrichsweikamp
parents:
diff changeset
235 movff WREG,char_I_step_is_1min ; Make sure to be in 2sec mode.
heinrichsweikamp
parents:
diff changeset
236 call deco_calc_CNS_fraction ; calculate CNS
heinrichsweikamp
parents:
diff changeset
237 movlb b'00000001' ; rambank 1 selected
heinrichsweikamp
parents:
diff changeset
238 ; Check for a gas change
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
239 bra check_gas_change ; Checks if a better gas should be selected (by user) and return...
0
heinrichsweikamp
parents:
diff changeset
240
heinrichsweikamp
parents:
diff changeset
241 global set_actual_ppo2
heinrichsweikamp
parents:
diff changeset
242 set_actual_ppo2: ; calculate ppO2 in 0.01bar (e.g. 150 = 1.50 bar ppO2)
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
243 btfsc divemode ; in divemode
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
244 bra set_actual_ppo2_dive ; Yes
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
245 ; No, use simulated ambient pressure for char_I_actual_ppO2
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
246 movff char_I_bottom_depth,WREG
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
247 mullw .100
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
248 movlw LOW(.1000)
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
249 addwf PRODL,W
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
250 movwf xA+0
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
251 movlw HIGH(.1000)
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
252 addwfc PRODH,W
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
253 movwf xA+1 ; P_amb in millibar (1000 = 1.00 bar).
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
254 bra set_actual_ppo2_common
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
255 set_actual_ppo2_dive:
0
heinrichsweikamp
parents:
diff changeset
256 SAFE_2BYTE_COPY amb_pressure, xA ; P_amb in millibar (1000 = 1.00 bar).
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 104
diff changeset
257 set_actual_ppo2_common:
113
heinrichsweikamp
parents: 111
diff changeset
258 movlw d'10'
0
heinrichsweikamp
parents:
diff changeset
259 movwf xB+0
heinrichsweikamp
parents:
diff changeset
260 clrf xB+1
heinrichsweikamp
parents:
diff changeset
261 call div16x16 ; xC=p_amb/10 (100 = 1.00 bar).
heinrichsweikamp
parents:
diff changeset
262 movff xC+0,xA+0
heinrichsweikamp
parents:
diff changeset
263 movff xC+1,xA+1
heinrichsweikamp
parents:
diff changeset
264 movff char_I_O2_ratio,xB+0
heinrichsweikamp
parents:
diff changeset
265 clrf xB+1
heinrichsweikamp
parents:
diff changeset
266 call mult16x16 ; char_I_O2_ratio * (p_amb/10)
heinrichsweikamp
parents:
diff changeset
267 movff xC+0,xA+0
heinrichsweikamp
parents:
diff changeset
268 movff xC+1,xA+1
heinrichsweikamp
parents:
diff changeset
269 movlw d'100'
heinrichsweikamp
parents:
diff changeset
270 movwf xB+0
heinrichsweikamp
parents:
diff changeset
271 clrf xB+1
heinrichsweikamp
parents:
diff changeset
272 call div16x16 ; xC=(char_I_O2_ratio * p_amb/10)/100
heinrichsweikamp
parents:
diff changeset
273
heinrichsweikamp
parents:
diff changeset
274 ; Copy ppO2 for CNS calculation
heinrichsweikamp
parents:
diff changeset
275 tstfsz xC+1 ; Is ppO2 > 2.55bar ?
heinrichsweikamp
parents:
diff changeset
276 setf xC+0 ; yes: bound to 2.55... better than wrap around.
heinrichsweikamp
parents:
diff changeset
277
heinrichsweikamp
parents:
diff changeset
278 movff xC+0, char_I_actual_ppO2 ; copy last ppO2 to buffer register
heinrichsweikamp
parents:
diff changeset
279 btfsc is_bailout ; In Bailout?
heinrichsweikamp
parents:
diff changeset
280 return ; Yes, done.
heinrichsweikamp
parents:
diff changeset
281 ; No Bailout, check for ccr mode
heinrichsweikamp
parents:
diff changeset
282 btfsc FLAG_ccr_mode ; If FLAG_ccr_mode=1...
heinrichsweikamp
parents:
diff changeset
283 movff char_I_const_ppO2, char_I_actual_ppO2 ; ...copy last ppO2 to buffer register
heinrichsweikamp
parents:
diff changeset
284 return
heinrichsweikamp
parents:
diff changeset
285
195
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
286 check_fallback_clear:
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
287 call check_sensors ; Setups "use_O2_sensorX" flags
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
288 ; Copy use flags to voting logic flags in case we are no longer in fallback
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
289 btfsc use_O2_sensor1
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
290 bsf voting_logic_sensor1
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
291 btfsc use_O2_sensor2
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
292 bsf voting_logic_sensor2
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
293 btfsc use_O2_sensor3
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
294 bsf voting_logic_sensor3
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
295 rcall divemode_setup_sensor_values ; Setup sensor values
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
296 goto check_sensors ; Check O2 sensor thresholds for fallback customview_minute
0
heinrichsweikamp
parents:
diff changeset
297
heinrichsweikamp
parents:
diff changeset
298 calc_deko_divemode2:
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 138
diff changeset
299 bcf twosecupdate
0
heinrichsweikamp
parents:
diff changeset
300
heinrichsweikamp
parents:
diff changeset
301 btfsc FLAG_apnoe_mode ; Done for Apnoe or Gauge mode
heinrichsweikamp
parents:
diff changeset
302 return
heinrichsweikamp
parents:
diff changeset
303 btfsc FLAG_gauge_mode ; Done for Apnoe or Gauge mode
heinrichsweikamp
parents:
diff changeset
304 return
heinrichsweikamp
parents:
diff changeset
305
heinrichsweikamp
parents:
diff changeset
306 extern deco_setup_dive
heinrichsweikamp
parents:
diff changeset
307 call deco_setup_dive ; Pass all parameters to the C code
heinrichsweikamp
parents:
diff changeset
308
195
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
309
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
310 btfsc setpoint_fallback ; Are we in Fallback?
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
311 rcall check_fallback_clear ; Yes, check if we still have fallback condition
bca0f054f023 allow auto-return from setpoint fallback
heinrichsweikamp
parents: 193
diff changeset
312
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 138
diff changeset
313 bcf setpoint_fallback ; =1: Fallback to SP1 due to external O2 sensor failure
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 138
diff changeset
314
277
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
315 btfsc FLAG_ccr_mode ; In CCR mode?
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
316 rcall calc_deko_divemode_sensor ; External sensor stuff
152
19ad15f04f60 BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents: 148
diff changeset
317
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
318 ; btfsc FLAG_pscr_mode ; In PSCR mode?
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
319 ; rcall calc_deko_divemode_sensor ; External sensor stuff
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
320
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
321
0
heinrichsweikamp
parents:
diff changeset
322 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; C-code needs the ambient pressure
heinrichsweikamp
parents:
diff changeset
323 clrf WREG
heinrichsweikamp
parents:
diff changeset
324 movff WREG,char_I_step_is_1min ; Force 2 second deco mode
heinrichsweikamp
parents:
diff changeset
325
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
326 movff char_I_O2_ratio,lo_temp ; Backup original value for everything
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
327 movff char_I_N2_ratio,hi_temp ; Backup original value for everything
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
328
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
329 btfss FLAG_pscr_mode
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
330 bra calc_deko_divemode2a ; Non-PSCR modes...
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
331
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
332 btfsc is_bailout
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
333 bra calc_deko_divemode2a ; Skip in bailout
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
334
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
335 ; in PSCR mode, compute fO2 into char_I_O2_ratio
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
336 call compute_pscr_ppo2 ; pSCR ppO2 into sub_c:2
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
337 movff sub_c+0,xA+0
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
338 movff sub_c+1,xA+1
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
339 movlw LOW .10
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
340 movwf xB+0
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
341 movlw HIGH .10
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
342 movwf xB+1
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
343 call mult16x16 ;xA*xB=xC -> xC:4 = ppO2*10
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
344 SAFE_2BYTE_COPY amb_pressure, xB
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
345 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
346 ; xC+0 has O2 in percent
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
347 movff xC+0,char_I_O2_ratio
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
348
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
349 movff char_I_He_ratio, wait_temp ; copy into bank1 register
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
350 bsf STATUS,C ; Borrow bit
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
351 movlw d'100' ; 100%
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
352 subfwb wait_temp,W ; minus He
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
353 bsf STATUS,C ; Borrow bit
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
354 subfwb xC+0,W ; minus O2
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
355 movff WREG, char_I_N2_ratio ; = N2!
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
356
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
357 calc_deko_divemode2a:
0
heinrichsweikamp
parents:
diff changeset
358 clrf TMR5L
heinrichsweikamp
parents:
diff changeset
359 clrf TMR5H ; 30,51757813µs/bit in TMR5L:TMR5H
heinrichsweikamp
parents:
diff changeset
360 call deco_calc_hauptroutine ; calc_tissue
heinrichsweikamp
parents:
diff changeset
361 movlb .1
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
362
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
363 movff lo_temp,char_I_O2_ratio ; Restore original value for everything
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
364 movff hi_temp,char_I_N2_ratio ; Restore original value for everything
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
365
0
heinrichsweikamp
parents:
diff changeset
366
heinrichsweikamp
parents:
diff changeset
367 movff char_O_deco_status,WREG ; Is a compute cycle finished ?
heinrichsweikamp
parents:
diff changeset
368 iorwf WREG,F
heinrichsweikamp
parents:
diff changeset
369 btfss STATUS,Z
heinrichsweikamp
parents:
diff changeset
370 return ; Return is status <> 0
heinrichsweikamp
parents:
diff changeset
371
heinrichsweikamp
parents:
diff changeset
372 ; Check if deco stops are necessary ?
heinrichsweikamp
parents:
diff changeset
373 movff char_O_first_deco_depth,wait_temp ; copy ceiling to temp register
heinrichsweikamp
parents:
diff changeset
374 tstfsz wait_temp ; Ceiling<0m?
heinrichsweikamp
parents:
diff changeset
375 bra calc_deko_divemode3 ; Yes!
heinrichsweikamp
parents:
diff changeset
376
heinrichsweikamp
parents:
diff changeset
377 btfsc decostop_active ; Already in nodeco mode ?
heinrichsweikamp
parents:
diff changeset
378 call TFT_display_ndl_mask ; No, Clear deco data, display nostop time
heinrichsweikamp
parents:
diff changeset
379 bcf decostop_active ; clear flag (again)
heinrichsweikamp
parents:
diff changeset
380
heinrichsweikamp
parents:
diff changeset
381 ; Copy for profile recording
heinrichsweikamp
parents:
diff changeset
382 clrf decodata+0
heinrichsweikamp
parents:
diff changeset
383 movff char_O_nullzeit,decodata+1 ; NDL
heinrichsweikamp
parents:
diff changeset
384
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
385 goto TFT_display_ndl ; display no deco limit, and return...
0
heinrichsweikamp
parents:
diff changeset
386
heinrichsweikamp
parents:
diff changeset
387 calc_deko_divemode3:
heinrichsweikamp
parents:
diff changeset
388 btfss decostop_active ; Already in deco mode ?
heinrichsweikamp
parents:
diff changeset
389 call TFT_display_deko_mask ; No, clear nostop time, display decodata
heinrichsweikamp
parents:
diff changeset
390 bsf decostop_active ; Set flag (again)
heinrichsweikamp
parents:
diff changeset
391
heinrichsweikamp
parents:
diff changeset
392 ; Copy for profile recording
heinrichsweikamp
parents:
diff changeset
393 movff char_O_first_deco_depth,decodata+0 ; ceiling
heinrichsweikamp
parents:
diff changeset
394 movff char_O_first_deco_time,decodata+1 ; length of first stop in minues
heinrichsweikamp
parents:
diff changeset
395 call TFT_display_deko ; display decodata
heinrichsweikamp
parents:
diff changeset
396 call TFT_show_TTS_divemode ; display TTS
heinrichsweikamp
parents:
diff changeset
397
heinrichsweikamp
parents:
diff changeset
398 movff char_I_extra_time,WREG
heinrichsweikamp
parents:
diff changeset
399 tstfsz WREG ; extra time = 0?
heinrichsweikamp
parents:
diff changeset
400 bra calc_deko_divemode4 ; No, compute it
heinrichsweikamp
parents:
diff changeset
401 return
heinrichsweikamp
parents:
diff changeset
402
heinrichsweikamp
parents:
diff changeset
403 calc_deko_divemode4:
heinrichsweikamp
parents:
diff changeset
404 ; Check if extra cycles are needed to compute @5 variant:
heinrichsweikamp
parents:
diff changeset
405 decfsz apnoe_mins,F ; Reached count-down ?
heinrichsweikamp
parents:
diff changeset
406 return ; No: don't compute yet.
heinrichsweikamp
parents:
diff changeset
407
heinrichsweikamp
parents:
diff changeset
408 movlw .6
heinrichsweikamp
parents:
diff changeset
409 movff WREG,char_O_deco_status ; Stole next cycles for @5 variant.
heinrichsweikamp
parents:
diff changeset
410
heinrichsweikamp
parents:
diff changeset
411 movlw .2 ; Restart countdown.
heinrichsweikamp
parents:
diff changeset
412 movwf apnoe_mins
heinrichsweikamp
parents:
diff changeset
413 return ; done.
277
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
414
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
415 calc_deko_divemode_sensor: ; External sensor stuff
337
508d7fb98b34 cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents: 335
diff changeset
416 movff opt_ccr_mode,WREG ; =0: Fixed SP, =1: Sensor, =2: Auto SP
508d7fb98b34 cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents: 335
diff changeset
417 sublw .1 ; opt_ccr_mode = 1 (Sensor)?
508d7fb98b34 cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents: 335
diff changeset
418 bnz calc_deko_divemode_sensor_done ; No, return
508d7fb98b34 cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents: 335
diff changeset
419
277
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
420 rcall divemode_setup_sensor_values ; Setup sensor values
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
421 call check_sensors ; Check O2 sensor thresholds for fallback
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
422 movff sensor_setpoint,char_I_const_ppO2; Copy sensor result
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
423
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
424 TSTOSS opt_sensor_fallback ; =1: Fallback to SP1 when sensor is lost
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
425 return ; Never fallback
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
426
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
427 btfsc is_bailout ; In bailout?
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
428 return ; Never fallback in bailout
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
429 ; Check if we should fallback to SP1
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
430 btfsc use_O2_sensor1
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
431 return ; At least one sensor is active, no fallback
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
432 btfsc use_O2_sensor2
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
433 return ; At least one sensor is active, no fallback
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
434 btfsc use_O2_sensor3
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
435 return ; At least one sensor is active, no fallback
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
436 ; No sensor in use -> fallback
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
437 movff char_I_setpoint_cbar+0,char_I_const_ppO2 ; Setup fixed Setpoint (Always fallback to SP1), overwrite sensor result
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
438 bsf setpoint_fallback ; =1: Fallback to SP1 due to external O2 sensor failure
339
692903c50788 minor: fix calc_deko_divemode_sensor
heinrichsweikamp
parents: 338
diff changeset
439 calc_deko_divemode_sensor_done:
277
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
440 return
0
heinrichsweikamp
parents:
diff changeset
441
heinrichsweikamp
parents:
diff changeset
442 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
443
heinrichsweikamp
parents:
diff changeset
444 divemodemode_togglegf: ; Toggle aGF/GF
heinrichsweikamp
parents:
diff changeset
445 bcf toggle_gf ; clear flag
heinrichsweikamp
parents:
diff changeset
446 btg use_agf ; Toggle GF
heinrichsweikamp
parents:
diff changeset
447 call TFT_gf_mask ; Setup Mask
heinrichsweikamp
parents:
diff changeset
448 clrf WREG
heinrichsweikamp
parents:
diff changeset
449 movff WREG,char_O_deco_status ; Restart decoplan computation
heinrichsweikamp
parents:
diff changeset
450 return
heinrichsweikamp
parents:
diff changeset
451
193
901c10831e4e reset voting logic on sensor switch
heinrichsweikamp
parents: 192
diff changeset
452 global divemode_setup_sensor_values
0
heinrichsweikamp
parents:
diff changeset
453 divemode_setup_sensor_values:
heinrichsweikamp
parents:
diff changeset
454 ; sum up sensor values (in xA:2) and active sensors in (xB:2)
heinrichsweikamp
parents:
diff changeset
455 clrf xB+0
heinrichsweikamp
parents:
diff changeset
456 clrf xB+1
heinrichsweikamp
parents:
diff changeset
457 clrf xA+0
heinrichsweikamp
parents:
diff changeset
458 clrf xA+1
192
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
459 btfss use_O2_sensor1 ; Sensor1 active?
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
460 bra divemode_setup_sensor_values2 ; No
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
461 btfss voting_logic_sensor1 ; Sensor within voting logic?
0
heinrichsweikamp
parents:
diff changeset
462 bra divemode_setup_sensor_values2 ; No
heinrichsweikamp
parents:
diff changeset
463 movf o2_ppo2_sensor1,W
heinrichsweikamp
parents:
diff changeset
464 addwf xA+0
heinrichsweikamp
parents:
diff changeset
465 movlw .0
heinrichsweikamp
parents:
diff changeset
466 addwfc xA+1 ; Add into xA:2
heinrichsweikamp
parents:
diff changeset
467 incf xB+0,F ; Add a sensor
heinrichsweikamp
parents:
diff changeset
468 divemode_setup_sensor_values2:
192
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
469 btfss use_O2_sensor2 ; Sensor2 active?
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
470 bra divemode_setup_sensor_values3 ; No
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
471 btfss voting_logic_sensor2 ; Sensor within voting logic?
0
heinrichsweikamp
parents:
diff changeset
472 bra divemode_setup_sensor_values3 ; No
heinrichsweikamp
parents:
diff changeset
473 movf o2_ppo2_sensor2,W
heinrichsweikamp
parents:
diff changeset
474 addwf xA+0
heinrichsweikamp
parents:
diff changeset
475 movlw .0
heinrichsweikamp
parents:
diff changeset
476 addwfc xA+1 ; Add into xA:2
heinrichsweikamp
parents:
diff changeset
477 incf xB+0,F ; Add a sensor
heinrichsweikamp
parents:
diff changeset
478 divemode_setup_sensor_values3:
192
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
479 btfss use_O2_sensor3 ; Sensor3 active?
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
480 bra divemode_setup_sensor_values4 ; No
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
481 btfss voting_logic_sensor3 ; Sensor within voting logic?
0
heinrichsweikamp
parents:
diff changeset
482 bra divemode_setup_sensor_values4 ; No
heinrichsweikamp
parents:
diff changeset
483 movf o2_ppo2_sensor3,W
heinrichsweikamp
parents:
diff changeset
484 addwf xA+0
heinrichsweikamp
parents:
diff changeset
485 movlw .0
heinrichsweikamp
parents:
diff changeset
486 addwfc xA+1 ; Add into xA:2
heinrichsweikamp
parents:
diff changeset
487 incf xB+0,F ; Add a sensor
heinrichsweikamp
parents:
diff changeset
488 divemode_setup_sensor_values4:
heinrichsweikamp
parents:
diff changeset
489 call div16x16 ; xA/xB=xC with xA+0 as remainder
heinrichsweikamp
parents:
diff changeset
490 movff xC+0,sensor_setpoint ; Copy result
heinrichsweikamp
parents:
diff changeset
491 return
heinrichsweikamp
parents:
diff changeset
492
heinrichsweikamp
parents:
diff changeset
493 calc_velocity: ; called every two seconds
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
494 btfsc display_velocity
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
495 bra calc_velocity1 ; Always update if already displayed
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
496 btfss divemode2
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
497 return ; display velocity only if deepter then 1m (Not at the surface after the dive)
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
498 calc_velocity1:
0
heinrichsweikamp
parents:
diff changeset
499 SAFE_2BYTE_COPY amb_pressure, sub_a
heinrichsweikamp
parents:
diff changeset
500 movff last_pressure_velocity+0,sub_b+0
heinrichsweikamp
parents:
diff changeset
501 movff last_pressure_velocity+1,sub_b+1
heinrichsweikamp
parents:
diff changeset
502 movff sub_a+0,last_pressure_velocity+0 ; store old value for velocity
heinrichsweikamp
parents:
diff changeset
503 movff sub_a+1,last_pressure_velocity+1
heinrichsweikamp
parents:
diff changeset
504
heinrichsweikamp
parents:
diff changeset
505 call subU16 ; sub_c = amb_pressure - last_pressure
heinrichsweikamp
parents:
diff changeset
506
318
6d8c82fe5a01 VSIbar #3d: more filter, neg_flag_velocity close to calculation, debug color for descend bar
janos_kovacs <kovjanos@gmail.com>
parents: 315
diff changeset
507 bcf neg_flag_velocity
6d8c82fe5a01 VSIbar #3d: more filter, neg_flag_velocity close to calculation, debug color for descend bar
janos_kovacs <kovjanos@gmail.com>
parents: 315
diff changeset
508 btfsc neg_flag
6d8c82fe5a01 VSIbar #3d: more filter, neg_flag_velocity close to calculation, debug color for descend bar
janos_kovacs <kovjanos@gmail.com>
parents: 315
diff changeset
509 bsf neg_flag_velocity
6d8c82fe5a01 VSIbar #3d: more filter, neg_flag_velocity close to calculation, debug color for descend bar
janos_kovacs <kovjanos@gmail.com>
parents: 315
diff changeset
510
0
heinrichsweikamp
parents:
diff changeset
511 movff sub_c+0,xA+0
heinrichsweikamp
parents:
diff changeset
512 movff sub_c+1,xA+1
heinrichsweikamp
parents:
diff changeset
513 movlw d'39' ; 77 when called every second....
heinrichsweikamp
parents:
diff changeset
514 movwf xB+0
heinrichsweikamp
parents:
diff changeset
515 clrf xB+1
heinrichsweikamp
parents:
diff changeset
516 call mult16x16 ; differential pressure in mbar*77...
heinrichsweikamp
parents:
diff changeset
517 movff xC+0,divA+0
heinrichsweikamp
parents:
diff changeset
518 movff xC+1,divA+1
heinrichsweikamp
parents:
diff changeset
519 movlw d'7'
heinrichsweikamp
parents:
diff changeset
520 movwf divB+0
heinrichsweikamp
parents:
diff changeset
521 call div16 ; devided by 2^7 equals velocity in m/min
heinrichsweikamp
parents:
diff changeset
522
heinrichsweikamp
parents:
diff changeset
523 movlw d'99'
heinrichsweikamp
parents:
diff changeset
524 cpfsgt divA+0 ; limit to 99m/min
heinrichsweikamp
parents:
diff changeset
525 bra calc_velocity3
heinrichsweikamp
parents:
diff changeset
526 movwf divA+0 ; divA=99
heinrichsweikamp
parents:
diff changeset
527
heinrichsweikamp
parents:
diff changeset
528 calc_velocity3:
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
529 ; Copy old speeds
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
530 movff old_velocity+2,old_velocity+3
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
531 movff old_velocity+1,old_velocity+2
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
532 movff old_velocity+0,old_velocity+1
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
533 movff divA+0,old_velocity+0
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
534
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
535 ; movff old_velocity+3,WREG
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
536 ; addwf divA+0,F ; add old speed
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
537 ; bcf STATUS,C
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
538 ; rrcf divA+0,F ; /2
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
539 ; movff old_velocity+2,WREG
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
540 ; addwf divA+0,F ; add old speed
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
541 ; bcf STATUS,C
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
542 ; rrcf divA+0,F ; /2
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
543 ; movff old_velocity+1,WREG
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
544 ; addwf divA+0,F ; add old speed
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
545 ; bcf STATUS,C
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
546 ; rrcf divA+0,F ; /2
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
547 ; movff old_velocity+0,WREG
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
548 ; addwf divA+0,F ; add old speed
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
549 ; bcf STATUS,C
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
550 ; rrcf divA+0,F ; /2
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
551 goto TFT_display_velocity ; With divA+0 = m/min..., and return...
0
heinrichsweikamp
parents:
diff changeset
552
heinrichsweikamp
parents:
diff changeset
553
heinrichsweikamp
parents:
diff changeset
554 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
555
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
556 set_reset_safety_stop: ; Set flags for safety stop and/or reset safety stop
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
557 TSTOSS opt_enable_safetystop ; =1: A safety stop is shown
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
558 bra delete_safety_stop ; No, don't show safety stop
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
559
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
560 btfsc decostop_active ; Is a deco stop displayed?
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
561 bra delete_safety_stop ; Yes, don't show safety stop
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
562 ; Below "opt_safety_stop_reset"? Set flag and reset count-down timer
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
563 SAFE_2BYTE_COPY rel_pressure, lo
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
564 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar]
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
565 movff lo,sub_a+0
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
566 movff hi,sub_a+1
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
567 movff opt_safety_stop_reset,WREG ; [cbar]
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
568 mullw .10 ; mbar in PRODL:H
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
569 movff PRODL,sub_b+0
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
570 movff PRODH,sub_b+1
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
571 call subU16 ; sub_c = sub_a - sub_b
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
572 btfss neg_flag
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
573 bra reset_safety_stop ; Below 10m, reset safety stop
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
574
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
575 ; Above "opt_safety_stop_end"? Clear flag.
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
576 SAFE_2BYTE_COPY rel_pressure, lo
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
577 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar]
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
578 movff lo,sub_a+0
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
579 movff hi,sub_a+1
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
580 movff opt_safety_stop_end,WREG ; [cbar]
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
581 mullw .10 ; mbar in PRODL:H
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
582 movff PRODL,sub_b+0
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
583 movff PRODH,sub_b+1
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
584 call subU16 ; sub_c = sub_a - sub_b
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
585 btfsc neg_flag
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
586 bra delete_safety_stop ; Above 3m, remove safety stop
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
587
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
588 ; Above "opt_safety_stop_start"? Activate safety stop
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
589 SAFE_2BYTE_COPY rel_pressure, lo
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
590 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar]
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
591 movff lo,sub_a+0
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
592 movff hi,sub_a+1
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
593 movff opt_safety_stop_start,WREG ; [cbar]
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
594 mullw .10 ; mbar in PRODL:H
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
595 movff PRODL,sub_b+0
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
596 movff PRODH,sub_b+1
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
597 call subU16 ; sub_c = sub_a - sub_b
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
598 btfsc neg_flag
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
599 bra acivate_safety_stop ; Above 5m, activate safety stop
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
600 bra reset_safety_stop2 ; Pause safety stop
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
601
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
602 acivate_safety_stop:
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
603 tstfsz safety_stop_countdown ; Countdown at zero?
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
604 bsf show_safety_stop ; No, Set flag!
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
605 return
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
606
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
607 delete_safety_stop:
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
608 clrf safety_stop_countdown ; reset timer
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
609 bra reset_safety_stop2 ; Remove safety stop from display
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
610
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
611 reset_safety_stop:
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
612 movff opt_safety_stop_length,safety_stop_countdown ; reset timer
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
613 reset_safety_stop2:
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
614 bcf show_safety_stop ; Clear flag
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
615 btfss safety_stop_active ; Safety stop shown
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
616 return ; No, don't delete it
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
617 bcf safety_stop_active ; Clear flag
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
618 goto TFT_clear_safety_stop ; Clear safety stop, and return...
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
619
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
620
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
621 ;=============================================================================
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
622
0
heinrichsweikamp
parents:
diff changeset
623 timeout_menuview:
heinrichsweikamp
parents:
diff changeset
624 decfsz timeout_counter3,F ; timeout for menuview
heinrichsweikamp
parents:
diff changeset
625 return ; No timeout, return
heinrichsweikamp
parents:
diff changeset
626 ; Timeout, clear e.g. "Menu?"
heinrichsweikamp
parents:
diff changeset
627 goto menuview_toggle_reset ; "returns"
heinrichsweikamp
parents:
diff changeset
628
heinrichsweikamp
parents:
diff changeset
629 timeout_divemode_menu:
heinrichsweikamp
parents:
diff changeset
630 decfsz timeout_counter3,F ; timeout for divemode menu
heinrichsweikamp
parents:
diff changeset
631 return
heinrichsweikamp
parents:
diff changeset
632
heinrichsweikamp
parents:
diff changeset
633 global timeout_divemode_menu2
heinrichsweikamp
parents:
diff changeset
634 timeout_divemode_menu2: ; Called from divemenu_tree.asm
heinrichsweikamp
parents:
diff changeset
635 bcf divemode_menu ; Timeout! Clear flag
heinrichsweikamp
parents:
diff changeset
636 call TFT_clear_divemode_menu ; Clear menu
heinrichsweikamp
parents:
diff changeset
637 call TFT_active_gas_divemode ; Redraw gas/setpoint/diluent
heinrichsweikamp
parents:
diff changeset
638 bcf blinking_better_gas ; Clear flag to have temperature updated once
heinrichsweikamp
parents:
diff changeset
639 call TFT_temp_divemode ; Displays temperature
315
4f83470dcece VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents: 310
diff changeset
640 call TFT_draw_gassep_line ; Gas separator grid in spec mode only
0
heinrichsweikamp
parents:
diff changeset
641
heinrichsweikamp
parents:
diff changeset
642 btfss decostop_active ; In deco mode ?
heinrichsweikamp
parents:
diff changeset
643 bra timeout_divemode_menu_ndl ; No, show NDL again
heinrichsweikamp
parents:
diff changeset
644 ; Show deco
heinrichsweikamp
parents:
diff changeset
645 call TFT_display_deko_mask ; clear nostop time, display decodata
heinrichsweikamp
parents:
diff changeset
646 call TFT_display_deko
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
647 goto TFT_show_TTS_divemode; and return...
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
648
0
heinrichsweikamp
parents:
diff changeset
649 timeout_divemode_menu_ndl: ; Show NDL
heinrichsweikamp
parents:
diff changeset
650 call TFT_display_ndl_mask ; Clear deco data, display nostop time
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
651 goto TFT_display_ndl; and return...
0
heinrichsweikamp
parents:
diff changeset
652
heinrichsweikamp
parents:
diff changeset
653 timeout_divemode:
heinrichsweikamp
parents:
diff changeset
654 btfsc divemode_menu ; Divemode menu active?
heinrichsweikamp
parents:
diff changeset
655 rcall timeout_divemode_menu ; Yes, check the timeout for it...
heinrichsweikamp
parents:
diff changeset
656
heinrichsweikamp
parents:
diff changeset
657 btfsc menuview ; is a menuview shown?
heinrichsweikamp
parents:
diff changeset
658 rcall timeout_menuview ; Yes, check the timeout for it...
heinrichsweikamp
parents:
diff changeset
659
heinrichsweikamp
parents:
diff changeset
660 btfss realdive ; Dive longer then one minute
heinrichsweikamp
parents:
diff changeset
661 return
heinrichsweikamp
parents:
diff changeset
662
heinrichsweikamp
parents:
diff changeset
663 btfsc FLAG_apnoe_mode ; In Apnoe mode?
35
eca4a201d8cf change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents: 23
diff changeset
664 bra timeout_divemode2 ; Yes, use apnoe_timeout [min] for timeout
0
heinrichsweikamp
parents:
diff changeset
665
heinrichsweikamp
parents:
diff changeset
666 ifndef __DEBUG
heinrichsweikamp
parents:
diff changeset
667 btfsc simulatormode_active ; In Simulator mode?
heinrichsweikamp
parents:
diff changeset
668 bra timeout_divemode3 ; Yes, use simulator timeout
heinrichsweikamp
parents:
diff changeset
669 endif
heinrichsweikamp
parents:
diff changeset
670
heinrichsweikamp
parents:
diff changeset
671 bcf divemode
148
022b886eddaf some cleanup
heinrichsweikamp
parents: 145
diff changeset
672 infsnz timeout_counter,F
022b886eddaf some cleanup
heinrichsweikamp
parents: 145
diff changeset
673 incf timeout_counter2,F ; timeout is 15bits
0
heinrichsweikamp
parents:
diff changeset
674
444
d93d75ae01bf Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents: 437
diff changeset
675 movff opt_diveTimeout,WREG ; in [min]
d93d75ae01bf Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents: 437
diff changeset
676 mullw .60
d93d75ae01bf Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents: 437
diff changeset
677 movff PRODL,sub_a+0
d93d75ae01bf Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents: 437
diff changeset
678 movff PRODH,sub_a+1 ; in [s]
0
heinrichsweikamp
parents:
diff changeset
679
heinrichsweikamp
parents:
diff changeset
680 movff timeout_counter, sub_b+0
heinrichsweikamp
parents:
diff changeset
681 movff timeout_counter2, sub_b+1
heinrichsweikamp
parents:
diff changeset
682 call subU16 ; sub_c = sub_a - sub_b
heinrichsweikamp
parents:
diff changeset
683 btfss neg_flag ; Result negative?
heinrichsweikamp
parents:
diff changeset
684 bsf divemode ; No, set flag
heinrichsweikamp
parents:
diff changeset
685 return
heinrichsweikamp
parents:
diff changeset
686
heinrichsweikamp
parents:
diff changeset
687 timeout_divemode2:
heinrichsweikamp
parents:
diff changeset
688 incf timeout_counter,F ; seconds...
heinrichsweikamp
parents:
diff changeset
689 movlw d'60'
heinrichsweikamp
parents:
diff changeset
690 cpfseq timeout_counter ; timeout_counter=60?
heinrichsweikamp
parents:
diff changeset
691 return ; No.
heinrichsweikamp
parents:
diff changeset
692 ; One minute timeout done.
heinrichsweikamp
parents:
diff changeset
693 clrf timeout_counter
heinrichsweikamp
parents:
diff changeset
694 bcf divemode
heinrichsweikamp
parents:
diff changeset
695 incf apnoe_timeout_counter,F
heinrichsweikamp
parents:
diff changeset
696 movlw apnoe_timeout ; apnoe timeout [min]
heinrichsweikamp
parents:
diff changeset
697 cpfseq apnoe_timeout_counter
heinrichsweikamp
parents:
diff changeset
698 bsf divemode
heinrichsweikamp
parents:
diff changeset
699 return
heinrichsweikamp
parents:
diff changeset
700
heinrichsweikamp
parents:
diff changeset
701 timeout_divemode3:
heinrichsweikamp
parents:
diff changeset
702 bcf divemode
heinrichsweikamp
parents:
diff changeset
703 incf timeout_counter,F
heinrichsweikamp
parents:
diff changeset
704 movlw simulator_timeout ; simulator timeout
heinrichsweikamp
parents:
diff changeset
705 cpfsgt timeout_counter
heinrichsweikamp
parents:
diff changeset
706 bsf divemode
heinrichsweikamp
parents:
diff changeset
707 return
heinrichsweikamp
parents:
diff changeset
708
heinrichsweikamp
parents:
diff changeset
709 update_temp_and_or_depth: ; New sensor data arrived...
heinrichsweikamp
parents:
diff changeset
710 btfsc temp_changed
heinrichsweikamp
parents:
diff changeset
711 call TFT_temp_divemode ; Displays temperature
heinrichsweikamp
parents:
diff changeset
712
heinrichsweikamp
parents:
diff changeset
713 btfsc pressure_refresh
heinrichsweikamp
parents:
diff changeset
714 call TFT_depth ; Displays new depth
heinrichsweikamp
parents:
diff changeset
715
heinrichsweikamp
parents:
diff changeset
716 rcall set_max_depth ; update max. depth if required
heinrichsweikamp
parents:
diff changeset
717 bcf pressure_refresh ; until new pressure is available
heinrichsweikamp
parents:
diff changeset
718 return
heinrichsweikamp
parents:
diff changeset
719
heinrichsweikamp
parents:
diff changeset
720 update_divemode60: ; update any minute
heinrichsweikamp
parents:
diff changeset
721 call get_battery_voltage ; gets battery voltage
218
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 216
diff changeset
722 rcall set_powersafe ; Battery low?
0
heinrichsweikamp
parents:
diff changeset
723 call TFT_max_pressure ; Update max. depth
heinrichsweikamp
parents:
diff changeset
724 call customview_minute ; Do every-minute tasks for the custom view area
heinrichsweikamp
parents:
diff changeset
725 bcf oneminupdate
heinrichsweikamp
parents:
diff changeset
726
heinrichsweikamp
parents:
diff changeset
727 btfss simulatormode_active ; in simulator mode?
heinrichsweikamp
parents:
diff changeset
728 return ; No
heinrichsweikamp
parents:
diff changeset
729 ; Yes, quite dive mode simulation after 21*256s=89min:36s
heinrichsweikamp
parents:
diff changeset
730 movlw .20
heinrichsweikamp
parents:
diff changeset
731 cpfsgt total_divetime_seconds+1 ; Timeout?
heinrichsweikamp
parents:
diff changeset
732 return ; No
heinrichsweikamp
parents:
diff changeset
733 ifdef __DEBUG
heinrichsweikamp
parents:
diff changeset
734 return ; No simulator timeout in debug mode
heinrichsweikamp
parents:
diff changeset
735 endif
heinrichsweikamp
parents:
diff changeset
736 bra divemode_option1 ; Yes, set to 0m and "return"
heinrichsweikamp
parents:
diff changeset
737
heinrichsweikamp
parents:
diff changeset
738 set_max_depth:
heinrichsweikamp
parents:
diff changeset
739 movff max_pressure+0,sub_a+0
heinrichsweikamp
parents:
diff changeset
740 movff max_pressure+1,sub_a+1
heinrichsweikamp
parents:
diff changeset
741 SAFE_2BYTE_COPY rel_pressure, sub_b
heinrichsweikamp
parents:
diff changeset
742 call subU16 ; sub_c = sub_a - sub_b
heinrichsweikamp
parents:
diff changeset
743 ; max_pressure<rel_pressure -> neg_flag=1
heinrichsweikamp
parents:
diff changeset
744 ; rel_pressure<=max_pressure -> neg_flag=0
heinrichsweikamp
parents:
diff changeset
745 btfss neg_flag
heinrichsweikamp
parents:
diff changeset
746 return
heinrichsweikamp
parents:
diff changeset
747 ; max_pressure<rel_pressure
heinrichsweikamp
parents:
diff changeset
748 movff sub_b+0,max_pressure+0
heinrichsweikamp
parents:
diff changeset
749 movff sub_b+1,max_pressure+1
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
750 goto TFT_max_pressure ; No, use normal max. depth; and return...
0
heinrichsweikamp
parents:
diff changeset
751
heinrichsweikamp
parents:
diff changeset
752 set_min_temp:
heinrichsweikamp
parents:
diff changeset
753 movff minimum_temperature+0,sub_a+0
heinrichsweikamp
parents:
diff changeset
754 movff minimum_temperature+1,sub_a+1
heinrichsweikamp
parents:
diff changeset
755 SAFE_2BYTE_COPY temperature,sub_b
heinrichsweikamp
parents:
diff changeset
756 call sub16 ; sub_c = sub_a - sub_b
heinrichsweikamp
parents:
diff changeset
757 ; minimum_temperature<T -> neg_flag=1
heinrichsweikamp
parents:
diff changeset
758 ; T<=minimum_temperature -> neg_flag=0
heinrichsweikamp
parents:
diff changeset
759 btfsc neg_flag
heinrichsweikamp
parents:
diff changeset
760 return
heinrichsweikamp
parents:
diff changeset
761 ; minimum_temperature>=T
heinrichsweikamp
parents:
diff changeset
762 movff sub_b+0,minimum_temperature+0
heinrichsweikamp
parents:
diff changeset
763 movff sub_b+1,minimum_temperature+1
heinrichsweikamp
parents:
diff changeset
764 return
heinrichsweikamp
parents:
diff changeset
765
heinrichsweikamp
parents:
diff changeset
766 global set_dive_modes
heinrichsweikamp
parents:
diff changeset
767 set_dive_modes:
heinrichsweikamp
parents:
diff changeset
768 btfsc high_altitude_mode ; In high altitude (Fly) mode?
heinrichsweikamp
parents:
diff changeset
769 bra set_dive_modes3 ; Yes!
heinrichsweikamp
parents:
diff changeset
770
heinrichsweikamp
parents:
diff changeset
771 set_dive_modes0:
heinrichsweikamp
parents:
diff changeset
772 movlw LOW start_dive_threshold
heinrichsweikamp
parents:
diff changeset
773 movwf sub_a+0 ; dive_treshold is in cm
heinrichsweikamp
parents:
diff changeset
774 movlw HIGH start_dive_threshold
heinrichsweikamp
parents:
diff changeset
775 movwf sub_a+1 ; dive_treshold is in cm
heinrichsweikamp
parents:
diff changeset
776
heinrichsweikamp
parents:
diff changeset
777 set_dive_modes1:
heinrichsweikamp
parents:
diff changeset
778 SAFE_2BYTE_COPY rel_pressure, sub_b
heinrichsweikamp
parents:
diff changeset
779 call subU16 ; sub_c = sub_a - sub_b
heinrichsweikamp
parents:
diff changeset
780
heinrichsweikamp
parents:
diff changeset
781 btfss neg_flag
heinrichsweikamp
parents:
diff changeset
782 bra set_dive_modes2 ; too shallow (rel_pressure<dive_threshold)
heinrichsweikamp
parents:
diff changeset
783
heinrichsweikamp
parents:
diff changeset
784 btfsc realdive ; Dive longer than one minute?
heinrichsweikamp
parents:
diff changeset
785 clrf timeout_counter ; Yes, reset timout counter
heinrichsweikamp
parents:
diff changeset
786
heinrichsweikamp
parents:
diff changeset
787 bsf divemode ; (Re-)Set divemode flag
heinrichsweikamp
parents:
diff changeset
788 bsf divemode2 ; displayed divetime is running
heinrichsweikamp
parents:
diff changeset
789 return
heinrichsweikamp
parents:
diff changeset
790
heinrichsweikamp
parents:
diff changeset
791 set_dive_modes2:
heinrichsweikamp
parents:
diff changeset
792 bcf divemode2 ; Stop time
heinrichsweikamp
parents:
diff changeset
793 btfss realdive ; dive longer then one minute?
heinrichsweikamp
parents:
diff changeset
794 bcf divemode ; no -> this was no real dive
heinrichsweikamp
parents:
diff changeset
795 return ; No, return
heinrichsweikamp
parents:
diff changeset
796
heinrichsweikamp
parents:
diff changeset
797
heinrichsweikamp
parents:
diff changeset
798 set_dive_modes3: ; High-altitude mode
heinrichsweikamp
parents:
diff changeset
799 btfsc realdive ; dive longer then one minute?
heinrichsweikamp
parents:
diff changeset
800 bra set_dive_modes0 ; Yes -> this is a real dive -> Use start_dive_threshold or ascend
heinrichsweikamp
parents:
diff changeset
801
heinrichsweikamp
parents:
diff changeset
802 movlw HIGH high_altitude_dive_threshold
heinrichsweikamp
parents:
diff changeset
803 movwf sub_a+1
heinrichsweikamp
parents:
diff changeset
804 movlw LOW high_altitude_dive_threshold
heinrichsweikamp
parents:
diff changeset
805 movwf sub_a+0
heinrichsweikamp
parents:
diff changeset
806 bra set_dive_modes1
heinrichsweikamp
parents:
diff changeset
807
heinrichsweikamp
parents:
diff changeset
808 set_powersafe:
heinrichsweikamp
parents:
diff changeset
809 movlw color_code_battery_low+1; [%]
heinrichsweikamp
parents:
diff changeset
810 cpfslt batt_percent
heinrichsweikamp
parents:
diff changeset
811 return
heinrichsweikamp
parents:
diff changeset
812
heinrichsweikamp
parents:
diff changeset
813 movlw d'7' ; Type of Alarm (Battery Low)
heinrichsweikamp
parents:
diff changeset
814 movwf AlarmType ; Copy to Alarm Register
heinrichsweikamp
parents:
diff changeset
815 bsf event_occured ; Set Event Flag
heinrichsweikamp
parents:
diff changeset
816 movlw .0
heinrichsweikamp
parents:
diff changeset
817 movff WREG,opt_brightness ; Set Brightness to ECO
heinrichsweikamp
parents:
diff changeset
818 return ; return
heinrichsweikamp
parents:
diff changeset
819
heinrichsweikamp
parents:
diff changeset
820 calc_average_depth:
176
3fdafedc24af surface pressure copy in simulator
heinrichsweikamp
parents: 170
diff changeset
821 btfsc reset_average_depth ; Reset the Average depth?
0
heinrichsweikamp
parents:
diff changeset
822 rcall reset_average1 ; Reset the resettable average depth
heinrichsweikamp
parents:
diff changeset
823
heinrichsweikamp
parents:
diff changeset
824 ; 1. Add new 2xdepth to the Sum of depths registers
heinrichsweikamp
parents:
diff changeset
825 SAFE_2BYTE_COPY rel_pressure, xB ; Buffer...
heinrichsweikamp
parents:
diff changeset
826 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
827 rlcf xB+0,F
heinrichsweikamp
parents:
diff changeset
828 rlcf xB+1,F ; x2
heinrichsweikamp
parents:
diff changeset
829
heinrichsweikamp
parents:
diff changeset
830 movf xB+0,w
heinrichsweikamp
parents:
diff changeset
831 addwf average_depth_hold+0,F
heinrichsweikamp
parents:
diff changeset
832 movf xB+1,w
heinrichsweikamp
parents:
diff changeset
833 addwfc average_depth_hold+1,F
heinrichsweikamp
parents:
diff changeset
834 movlw d'0'
heinrichsweikamp
parents:
diff changeset
835 addwfc average_depth_hold+2,F
heinrichsweikamp
parents:
diff changeset
836 addwfc average_depth_hold+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar
heinrichsweikamp
parents:
diff changeset
837
heinrichsweikamp
parents:
diff changeset
838 ; Do the same for the _total registers (Non-Resettable)
heinrichsweikamp
parents:
diff changeset
839 movf xB+0,w
heinrichsweikamp
parents:
diff changeset
840 addwf average_depth_hold_total+0,F
heinrichsweikamp
parents:
diff changeset
841 movf xB+1,w
heinrichsweikamp
parents:
diff changeset
842 addwfc average_depth_hold_total+1,F
heinrichsweikamp
parents:
diff changeset
843 movlw d'0'
heinrichsweikamp
parents:
diff changeset
844 addwfc average_depth_hold_total+2,F
heinrichsweikamp
parents:
diff changeset
845 addwfc average_depth_hold_total+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar
heinrichsweikamp
parents:
diff changeset
846
heinrichsweikamp
parents:
diff changeset
847 ; 2. Compute Average Depth on base of average_divesecs:2
heinrichsweikamp
parents:
diff changeset
848 movff average_divesecs+0,xB+0
heinrichsweikamp
parents:
diff changeset
849 movff average_divesecs+1,xB+1 ; Copy
heinrichsweikamp
parents:
diff changeset
850 movff average_depth_hold+0,xC+0
heinrichsweikamp
parents:
diff changeset
851 movff average_depth_hold+1,xC+1
heinrichsweikamp
parents:
diff changeset
852 movff average_depth_hold+2,xC+2
heinrichsweikamp
parents:
diff changeset
853 movff average_depth_hold+3,xC+3
heinrichsweikamp
parents:
diff changeset
854
heinrichsweikamp
parents:
diff changeset
855 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder
437
23b58c4bc6aa CHANGE: Language fixes, 2.08 release
heinrichsweikamp
parents: 428
diff changeset
856 movff xC+0,avg_rel_pressure+0
23b58c4bc6aa CHANGE: Language fixes, 2.08 release
heinrichsweikamp
parents: 428
diff changeset
857 movff xC+1,avg_rel_pressure+1
0
heinrichsweikamp
parents:
diff changeset
858
89
c34516c99ca8 BUGFIX: No average depth for end-of-dive portion (<1m)
heinrichsweikamp
parents: 86
diff changeset
859 btfss divemode2 ; displayed divetime is running?
c34516c99ca8 BUGFIX: No average depth for end-of-dive portion (<1m)
heinrichsweikamp
parents: 86
diff changeset
860 return ; No (e.g. too shallow)
c34516c99ca8 BUGFIX: No average depth for end-of-dive portion (<1m)
heinrichsweikamp
parents: 86
diff changeset
861
0
heinrichsweikamp
parents:
diff changeset
862 ; 3. Compute Total Average Depth on base of total_divetime_seconds:2
heinrichsweikamp
parents:
diff changeset
863 movff total_divetime_seconds+0,xB+0
heinrichsweikamp
parents:
diff changeset
864 movff total_divetime_seconds+1,xB+1 ; Copy
heinrichsweikamp
parents:
diff changeset
865 movff average_depth_hold_total+0,xC+0
heinrichsweikamp
parents:
diff changeset
866 movff average_depth_hold_total+1,xC+1
heinrichsweikamp
parents:
diff changeset
867 movff average_depth_hold_total+2,xC+2
heinrichsweikamp
parents:
diff changeset
868 movff average_depth_hold_total+3,xC+3
heinrichsweikamp
parents:
diff changeset
869 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder
437
23b58c4bc6aa CHANGE: Language fixes, 2.08 release
heinrichsweikamp
parents: 428
diff changeset
870 movff xC+0,avg_rel_pressure_total+0
23b58c4bc6aa CHANGE: Language fixes, 2.08 release
heinrichsweikamp
parents: 428
diff changeset
871 movff xC+1,avg_rel_pressure_total+1
0
heinrichsweikamp
parents:
diff changeset
872 return
heinrichsweikamp
parents:
diff changeset
873
heinrichsweikamp
parents:
diff changeset
874 reset_average1:
heinrichsweikamp
parents:
diff changeset
875 clrf average_depth_hold+0
heinrichsweikamp
parents:
diff changeset
876 clrf average_depth_hold+1
heinrichsweikamp
parents:
diff changeset
877 clrf average_depth_hold+2
heinrichsweikamp
parents:
diff changeset
878 clrf average_depth_hold+3 ; Clear average depth register
heinrichsweikamp
parents:
diff changeset
879 movlw d'2'
heinrichsweikamp
parents:
diff changeset
880 movwf average_divesecs+0
heinrichsweikamp
parents:
diff changeset
881 clrf average_divesecs+1
heinrichsweikamp
parents:
diff changeset
882 bcf reset_average_depth ; Clear flag
heinrichsweikamp
parents:
diff changeset
883 return
heinrichsweikamp
parents:
diff changeset
884
heinrichsweikamp
parents:
diff changeset
885 test_switches_divemode: ; checks switches in divemode
heinrichsweikamp
parents:
diff changeset
886 btfsc divemode_menu ; Divemode menu shown?
heinrichsweikamp
parents:
diff changeset
887 bra test_switches_divemode_menu ; Yes, use menu processor
heinrichsweikamp
parents:
diff changeset
888 btfsc switch_left
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
889 goto menuview_toggle ; Menu or Simulator tasks; and return...; bra test_switches_divemode2 ; Enter button pressed, check if we need to do something
0
heinrichsweikamp
parents:
diff changeset
890 btfss switch_right
heinrichsweikamp
parents:
diff changeset
891 return ; No button press
heinrichsweikamp
parents:
diff changeset
892 tstfsz menupos2 ; any option shown?
heinrichsweikamp
parents:
diff changeset
893 bra test_switches_divemode1 ; Yes, do option tasks
heinrichsweikamp
parents:
diff changeset
894 bsf toggle_customview ; No, toggle custom view
heinrichsweikamp
parents:
diff changeset
895 return
heinrichsweikamp
parents:
diff changeset
896
heinrichsweikamp
parents:
diff changeset
897 test_switches_divemode_menu:
heinrichsweikamp
parents:
diff changeset
898 btfsc switch_left
heinrichsweikamp
parents:
diff changeset
899 bra test_switches_divemode_menu2 ; Move cursor
heinrichsweikamp
parents:
diff changeset
900 btfsc switch_right
heinrichsweikamp
parents:
diff changeset
901 bra test_switches_divemode_menu3 ; Enter submenu or do something
heinrichsweikamp
parents:
diff changeset
902 return ; No button press
heinrichsweikamp
parents:
diff changeset
903
heinrichsweikamp
parents:
diff changeset
904 test_switches_divemode_menu1:
heinrichsweikamp
parents:
diff changeset
905 clrf menupos
heinrichsweikamp
parents:
diff changeset
906 test_switches_divemode_menu2:
heinrichsweikamp
parents:
diff changeset
907 incf menupos,F
heinrichsweikamp
parents:
diff changeset
908 incf menupos4,W ; menupos4+1 -> WREG
heinrichsweikamp
parents:
diff changeset
909 cpfslt menupos ; >menupos4 (Set in menu_processor.asm)?
heinrichsweikamp
parents:
diff changeset
910 bra test_switches_divemode_menu1; > Yes, set to 1
heinrichsweikamp
parents:
diff changeset
911 call TFT_divemode_menu_cursor ; Update the cursor
heinrichsweikamp
parents:
diff changeset
912 bcf switch_left
heinrichsweikamp
parents:
diff changeset
913 movlw divemode_menu_timeout ; Reload timeout
heinrichsweikamp
parents:
diff changeset
914 movwf timeout_counter3 ; timeout for divemode menu
heinrichsweikamp
parents:
diff changeset
915 return
heinrichsweikamp
parents:
diff changeset
916
heinrichsweikamp
parents:
diff changeset
917 test_switches_divemode_menu3: ; Enter submenu or do something
heinrichsweikamp
parents:
diff changeset
918 bcf switch_right
heinrichsweikamp
parents:
diff changeset
919 ; decf menupos,F ; menu_processor needs 0-5...
heinrichsweikamp
parents:
diff changeset
920 extern do_line_menu
heinrichsweikamp
parents:
diff changeset
921 goto do_line_menu ; Warning! Trashes STKPTR and returns to diveloop_loop4:
heinrichsweikamp
parents:
diff changeset
922
heinrichsweikamp
parents:
diff changeset
923 test_switches_divemode1:
heinrichsweikamp
parents:
diff changeset
924 bcf switch_right
heinrichsweikamp
parents:
diff changeset
925 movlw divemode_menuview_timeout
heinrichsweikamp
parents:
diff changeset
926 movwf timeout_counter3 ; Reload timeout
216
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
927 movff menupos2,WREG ; menupos2 holds number of customview/divemode menu function
0
heinrichsweikamp
parents:
diff changeset
928 dcfsnz WREG,F
137
28b057aa9f75 Simplify gas change
heinrichsweikamp
parents: 134
diff changeset
929 bra divemode_option_gaschange ; Switch to the indicated "better gas"
28b057aa9f75 Simplify gas change
heinrichsweikamp
parents: 134
diff changeset
930 dcfsnz WREG,F
0
heinrichsweikamp
parents:
diff changeset
931 bra divemode_option0 ; Start/Setup Divemode menu
heinrichsweikamp
parents:
diff changeset
932 dcfsnz WREG,F
heinrichsweikamp
parents:
diff changeset
933 bra divemode_option1 ; Quit Simulation?
heinrichsweikamp
parents:
diff changeset
934 dcfsnz WREG,F
heinrichsweikamp
parents:
diff changeset
935 bra divemode_option2 ; Descent 1m
heinrichsweikamp
parents:
diff changeset
936 dcfsnz WREG,F
heinrichsweikamp
parents:
diff changeset
937 bra divemode_option3 ; Ascend 1m
heinrichsweikamp
parents:
diff changeset
938 dcfsnz WREG,F
heinrichsweikamp
parents:
diff changeset
939 bra divemode_option4 ; Quit Apnoe mode
heinrichsweikamp
parents:
diff changeset
940 dcfsnz WREG,F
heinrichsweikamp
parents:
diff changeset
941 bra divemode_option5 ; Reset Stopwatch (In Gauge mode)
216
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
942 dcfsnz WREG,F
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
943 bra divemode_option6 ; +5mins simulation
254
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 239
diff changeset
944 dcfsnz WREG,F
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 239
diff changeset
945 bra divemode_option7 ; Store heading
0
heinrichsweikamp
parents:
diff changeset
946 return
heinrichsweikamp
parents:
diff changeset
947
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
948 ;test_switches_divemode2:
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
949 ; goto menuview_toggle ; Menu or Simulator tasks; and return...
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
950 ; return
0
heinrichsweikamp
parents:
diff changeset
951
heinrichsweikamp
parents:
diff changeset
952 gas_switched_common:
99
87cc1adfe4da show event "bailout" in the internal logbook
heinrichsweikamp
parents: 98
diff changeset
953 bcf divemode_gaschange ; Clear flag
87cc1adfe4da show event "bailout" in the internal logbook
heinrichsweikamp
parents: 98
diff changeset
954
274
9347893b74ce BUGFIX: Fast Gas change near the ppO2 limit could cause switching to a non-available Gas #0
heinrichsweikamp
parents: 256
diff changeset
955 tstfsz menupos ; menupos=0?
9347893b74ce BUGFIX: Fast Gas change near the ppO2 limit could cause switching to a non-available Gas #0
heinrichsweikamp
parents: 256
diff changeset
956 bra $+4 ; No
9347893b74ce BUGFIX: Fast Gas change near the ppO2 limit could cause switching to a non-available Gas #0
heinrichsweikamp
parents: 256
diff changeset
957 return ; Yes, do not switch gas (There is no Gas #0 !)
9347893b74ce BUGFIX: Fast Gas change near the ppO2 limit could cause switching to a non-available Gas #0
heinrichsweikamp
parents: 256
diff changeset
958
0
heinrichsweikamp
parents:
diff changeset
959 decf menupos,W ; 1-5 -> 0-4
heinrichsweikamp
parents:
diff changeset
960 btfss FLAG_ccr_mode ; Choose OC Gases
heinrichsweikamp
parents:
diff changeset
961 rcall setup_gas_registers ; With WREG=Gas 0-4
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
962 decf menupos,W ; 1-5 -> 0-4
0
heinrichsweikamp
parents:
diff changeset
963 btfsc FLAG_ccr_mode ; Choose CC Diluents
heinrichsweikamp
parents:
diff changeset
964 rcall setup_dil_registers ; With WREG=Gas 0-4
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
965 decf menupos,W ; 1-5 -> 0-4
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
966 btfsc FLAG_pscr_mode ; Choose CC Diluents
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
967 rcall setup_dil_registers ; With WREG=Gas 0-4
0
heinrichsweikamp
parents:
diff changeset
968
heinrichsweikamp
parents:
diff changeset
969 decf menupos,W ; 1-5 -> 0-4
heinrichsweikamp
parents:
diff changeset
970 btfsc is_bailout ; Choose OC Bailouts (OC Gases)
heinrichsweikamp
parents:
diff changeset
971 rcall setup_gas_registers ; With WREG=Gas 0-4
heinrichsweikamp
parents:
diff changeset
972
heinrichsweikamp
parents:
diff changeset
973 call TFT_active_gas_divemode ; Display gas/Setpoint
heinrichsweikamp
parents:
diff changeset
974 clrf WREG
heinrichsweikamp
parents:
diff changeset
975 movff WREG,char_O_deco_status ; Restart decoplan computation
98
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
976
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
977 ; Set flags for profile recording
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
978 bsf event_occured ; Set global event byte
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
979 btfsc is_bailout ; Choose OC Bailouts (OC Gases)
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
980 bsf bailoutgas_event ; Bailout gas change
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
981 btfss is_bailout ; Choose OC Bailouts (OC Gases)
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
982 bsf stored_gas_changed ; OC gas change
0
heinrichsweikamp
parents:
diff changeset
983 return
heinrichsweikamp
parents:
diff changeset
984
heinrichsweikamp
parents:
diff changeset
985 global setup_gas_registers
heinrichsweikamp
parents:
diff changeset
986 setup_gas_registers: ; With WREG=Gas 0-4
heinrichsweikamp
parents:
diff changeset
987 lfsr FSR1,opt_gas_O2_ratio+0
heinrichsweikamp
parents:
diff changeset
988 movff PLUSW1,char_I_O2_ratio ; O2 (For ppO2 calculations)
heinrichsweikamp
parents:
diff changeset
989 lfsr FSR1,opt_gas_He_ratio+0
heinrichsweikamp
parents:
diff changeset
990 movff PLUSW1,char_I_He_ratio ; He
heinrichsweikamp
parents:
diff changeset
991 incf WREG,W ; Gas# 1-5
heinrichsweikamp
parents:
diff changeset
992 movff WREG,char_I_current_gas ; Set gas
heinrichsweikamp
parents:
diff changeset
993 movff WREG,active_gas ; Set for logbook and display
heinrichsweikamp
parents:
diff changeset
994 banksel char_I_O2_ratio
heinrichsweikamp
parents:
diff changeset
995 movf char_I_O2_ratio,W ; Add O2...
heinrichsweikamp
parents:
diff changeset
996 addwf char_I_He_ratio,W ; ...and He...
heinrichsweikamp
parents:
diff changeset
997 sublw .100 ; ...subtract both from 100
heinrichsweikamp
parents:
diff changeset
998 movwf char_I_N2_ratio ; -> N2!
heinrichsweikamp
parents:
diff changeset
999 banksel common
heinrichsweikamp
parents:
diff changeset
1000 return
heinrichsweikamp
parents:
diff changeset
1001
heinrichsweikamp
parents:
diff changeset
1002 global setup_dil_registers
heinrichsweikamp
parents:
diff changeset
1003 setup_dil_registers: ; With WREG=dil 0-4
97
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 89
diff changeset
1004 btfsc is_bailout
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 89
diff changeset
1005 return ; Ignore in bailout
0
heinrichsweikamp
parents:
diff changeset
1006 lfsr FSR1,opt_dil_O2_ratio+0
heinrichsweikamp
parents:
diff changeset
1007 movff PLUSW1,char_I_O2_ratio ; O2 (For ppO2 calculations)
heinrichsweikamp
parents:
diff changeset
1008 lfsr FSR1,opt_dil_He_ratio+0
heinrichsweikamp
parents:
diff changeset
1009 movff PLUSW1,char_I_He_ratio ; He
heinrichsweikamp
parents:
diff changeset
1010 incf WREG,W ; Gas# 1-5
heinrichsweikamp
parents:
diff changeset
1011 movff WREG,char_I_current_gas ; Set gas
heinrichsweikamp
parents:
diff changeset
1012 movff WREG,active_gas ; Set for logbook and display
97
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 89
diff changeset
1013 movff WREG,active_diluent ; As a backup when switching back from Bailout to CCR
0
heinrichsweikamp
parents:
diff changeset
1014 banksel char_I_O2_ratio
heinrichsweikamp
parents:
diff changeset
1015 movf char_I_O2_ratio,W ; Add O2...
heinrichsweikamp
parents:
diff changeset
1016 addwf char_I_He_ratio,W ; ...and He...
heinrichsweikamp
parents:
diff changeset
1017 sublw .100 ; ...subtract both from 100
heinrichsweikamp
parents:
diff changeset
1018 movwf char_I_N2_ratio ; -> N2!
heinrichsweikamp
parents:
diff changeset
1019 banksel common
heinrichsweikamp
parents:
diff changeset
1020 return
heinrichsweikamp
parents:
diff changeset
1021
137
28b057aa9f75 Simplify gas change
heinrichsweikamp
parents: 134
diff changeset
1022 divemode_option_gaschange: ; Switch to the better gas
28b057aa9f75 Simplify gas change
heinrichsweikamp
parents: 134
diff changeset
1023 movff better_gas_number,menupos; 1-5
28b057aa9f75 Simplify gas change
heinrichsweikamp
parents: 134
diff changeset
1024 bsf divemode_gaschange ; Change the gas in the dive mode loop...
28b057aa9f75 Simplify gas change
heinrichsweikamp
parents: 134
diff changeset
1025 call menuview_toggle_reset ; Reset to zero (Zero=no menuview)
138
2852b0bd6391 minor: some extra protection against wrong gas selection
heinrichsweikamp
parents: 137
diff changeset
1026 bcf better_gas_available ; Clear flag immediately
137
28b057aa9f75 Simplify gas change
heinrichsweikamp
parents: 134
diff changeset
1027 return
28b057aa9f75 Simplify gas change
heinrichsweikamp
parents: 134
diff changeset
1028
0
heinrichsweikamp
parents:
diff changeset
1029 divemode_option0: ; Start/Setup Divemode menu
heinrichsweikamp
parents:
diff changeset
1030 call TFT_clear_divemode_menu ; Clear menu area
heinrichsweikamp
parents:
diff changeset
1031 bcf menuview
heinrichsweikamp
parents:
diff changeset
1032 extern do_main_divemenu
heinrichsweikamp
parents:
diff changeset
1033 call do_main_divemenu
heinrichsweikamp
parents:
diff changeset
1034 global divemode_option0_return
heinrichsweikamp
parents:
diff changeset
1035 divemode_option0_return:
heinrichsweikamp
parents:
diff changeset
1036 ; movlw .1
heinrichsweikamp
parents:
diff changeset
1037 ; movwf menupos ; Set to first option in divemode menu
heinrichsweikamp
parents:
diff changeset
1038 call TFT_divemode_menu_cursor; Show the cursor
heinrichsweikamp
parents:
diff changeset
1039 movlw divemode_menu_timeout
heinrichsweikamp
parents:
diff changeset
1040 movwf timeout_counter3 ; timeout for divemode menu
heinrichsweikamp
parents:
diff changeset
1041 bsf divemode_menu ; Set flag
heinrichsweikamp
parents:
diff changeset
1042 clrf menupos2 ; Clear option counter
heinrichsweikamp
parents:
diff changeset
1043 bra diveloop_loop4 ; Goto back to diveloop (Menuprocessor trashes STKPTR!)
heinrichsweikamp
parents:
diff changeset
1044
heinrichsweikamp
parents:
diff changeset
1045 divemode_option4:
heinrichsweikamp
parents:
diff changeset
1046 movlw d'58' ; two seconds left
heinrichsweikamp
parents:
diff changeset
1047 movwf timeout_counter
heinrichsweikamp
parents:
diff changeset
1048 movlw apnoe_timeout-1 ; apnoe timeout [min]
heinrichsweikamp
parents:
diff changeset
1049 movwf apnoe_timeout_counter
heinrichsweikamp
parents:
diff changeset
1050 btfss simulatormode_active ; in simulator mode?
heinrichsweikamp
parents:
diff changeset
1051 return ; No
heinrichsweikamp
parents:
diff changeset
1052 divemode_option1: ; Quit simulation mode
heinrichsweikamp
parents:
diff changeset
1053 banksel isr_backup
heinrichsweikamp
parents:
diff changeset
1054 movlw low .1000
heinrichsweikamp
parents:
diff changeset
1055 movwf sim_pressure+0
heinrichsweikamp
parents:
diff changeset
1056 movlw high .1000
heinrichsweikamp
parents:
diff changeset
1057 movwf sim_pressure+1 ; Set to 0m -> End of Dive
heinrichsweikamp
parents:
diff changeset
1058 banksel common
heinrichsweikamp
parents:
diff changeset
1059 call menuview_toggle_reset ; Reset to zero (Zero=no menuview)
heinrichsweikamp
parents:
diff changeset
1060
heinrichsweikamp
parents:
diff changeset
1061 btfss FLAG_apnoe_mode ; In Apnoe mode?
heinrichsweikamp
parents:
diff changeset
1062 return ; No
heinrichsweikamp
parents:
diff changeset
1063 movlw d'58' ; two seconds left
heinrichsweikamp
parents:
diff changeset
1064 movwf timeout_counter
heinrichsweikamp
parents:
diff changeset
1065 movlw apnoe_timeout-1 ; apnoe timeout [min]
heinrichsweikamp
parents:
diff changeset
1066 movwf apnoe_timeout_counter
heinrichsweikamp
parents:
diff changeset
1067 return
heinrichsweikamp
parents:
diff changeset
1068
heinrichsweikamp
parents:
diff changeset
1069 divemode_option3: ; minus 1m
heinrichsweikamp
parents:
diff changeset
1070 banksel isr_backup
315
4f83470dcece VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents: 310
diff changeset
1071 movlw d'100'
0
heinrichsweikamp
parents:
diff changeset
1072 subwf sim_pressure+0
heinrichsweikamp
parents:
diff changeset
1073 movlw .0
heinrichsweikamp
parents:
diff changeset
1074 subwfb sim_pressure+1
heinrichsweikamp
parents:
diff changeset
1075 rcall divemode_simulator_check_limits
heinrichsweikamp
parents:
diff changeset
1076 banksel common
heinrichsweikamp
parents:
diff changeset
1077 return
heinrichsweikamp
parents:
diff changeset
1078
heinrichsweikamp
parents:
diff changeset
1079 divemode_option2: ; plus 1m
heinrichsweikamp
parents:
diff changeset
1080 banksel isr_backup
315
4f83470dcece VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents: 310
diff changeset
1081 movlw d'100'
0
heinrichsweikamp
parents:
diff changeset
1082 addwf sim_pressure+0
heinrichsweikamp
parents:
diff changeset
1083 movlw .0
heinrichsweikamp
parents:
diff changeset
1084 addwfc sim_pressure+1
heinrichsweikamp
parents:
diff changeset
1085 rcall divemode_simulator_check_limits
heinrichsweikamp
parents:
diff changeset
1086 banksel common
heinrichsweikamp
parents:
diff changeset
1087 return
heinrichsweikamp
parents:
diff changeset
1088
heinrichsweikamp
parents:
diff changeset
1089 divemode_option5:
heinrichsweikamp
parents:
diff changeset
1090 call menuview_toggle_reset ; Reset to zero (Zero=no menuview)
heinrichsweikamp
parents:
diff changeset
1091 bsf reset_average_depth ; Set Flag
heinrichsweikamp
parents:
diff changeset
1092 return
heinrichsweikamp
parents:
diff changeset
1093
216
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1094 divemode_option6:
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1095 bcf divemode2 ; Stop divetime
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1096 movlw .5
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1097 addwf divemins+0,F
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1098 movlw .0
254
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 239
diff changeset
1099 addwfc divemins+1,F ; Add 5 mins
385
b075fa71b659 BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents: 382
diff changeset
1100 movlw LOW (.5*.60)
b075fa71b659 BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents: 382
diff changeset
1101 addwf average_divesecs+0,F
b075fa71b659 BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents: 382
diff changeset
1102 movlw HIGH (.5*.60)
b075fa71b659 BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents: 382
diff changeset
1103 addwfc average_divesecs+1,F ; Add 5*60 seconds
b075fa71b659 BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents: 382
diff changeset
1104 movlw LOW (.5*.60)
b075fa71b659 BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents: 382
diff changeset
1105 addwf total_divetime_seconds+0,F
b075fa71b659 BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents: 382
diff changeset
1106 movlw HIGH (.5*.60)
b075fa71b659 BUGFIX: +5min for stopwatch during simulation did not work
heinrichsweikamp
parents: 382
diff changeset
1107 addwfc total_divetime_seconds+1,F ; Add 5*60 seconds
386
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1108 ; 1. Add 300xdepth to the Sum of depths registers
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1109 SAFE_2BYTE_COPY rel_pressure, xB ; Buffer...
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1110 movlw LOW (.5*.60)
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1111 movwf xA+0
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1112 movlw HIGH (.5*.60)
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1113 movwf xA+1
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1114 call mult16x16 ;xA*xB=xC
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1115
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1116 movf xC+0,w
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1117 addwf average_depth_hold+0,F
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1118 movf xC+1,w
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1119 addwfc average_depth_hold+1,F
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1120 movf xC+2,w
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1121 addwfc average_depth_hold+2,F
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1122 movf xC+3,w
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1123 addwfc average_depth_hold+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1124
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1125 ; Do the same for the _total registers (Non-Resettable)
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1126 movf xC+0,w
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1127 addwf average_depth_hold_total+0,F
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1128 movf xC+1,w
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1129 addwfc average_depth_hold_total+1,F
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1130 movf xC+2,w
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1131 addwfc average_depth_hold_total+2,F
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1132 movf xC+3,w
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1133 addwfc average_depth_hold_total+3,F ; Will work up to 9999mbar*60*60*24=863913600mbar
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1134
216
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1135 movlw .5
254
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 239
diff changeset
1136 movwf up ; counter
216
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1137 ; 1min mode
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1138 divemode_option6_2:
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1139 movlw .1
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1140 movff WREG,char_I_step_is_1min ; Force 1min mode
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1141 clrf TMR5L
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1142 clrf TMR5H ; 30,51757813µs/bit in TMR5L:TMR5H
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1143 call deco_calc_hauptroutine ; calc_tissue
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1144 movlb .1
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1145 decfsz up,F ; Done?
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1146 bra divemode_option6_2 ; Not yet
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1147 bsf divemode2 ; continue divetime
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
1148 goto menuview_toggle_reset ; and return...
216
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1149
254
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 239
diff changeset
1150 divemode_option7:
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 239
diff changeset
1151 ; Store heading for compass view
255
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
1152 movff compass_heading_shown+0,compass_bearing+0
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
1153 movff compass_heading_shown+1,compass_bearing+1
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
1154 bsf compass_bearing_set ; set flag
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
1155 goto menuview_toggle_reset ; Done and return...
216
973a0969e0ac NEW: On-board simulator can increase divetime in 5min steps
heinrichsweikamp
parents: 206
diff changeset
1156
0
heinrichsweikamp
parents:
diff changeset
1157 divemode_simulator_check_limits:
heinrichsweikamp
parents:
diff changeset
1158 ; Check limits (150m and 0m)
heinrichsweikamp
parents:
diff changeset
1159 movlw LOW d'16000' ; Compare to 16bar=16000mbar (150m).
heinrichsweikamp
parents:
diff changeset
1160 subwf sim_pressure+0,W
heinrichsweikamp
parents:
diff changeset
1161 movlw HIGH d'16000'
heinrichsweikamp
parents:
diff changeset
1162 subwfb sim_pressure+1,W
heinrichsweikamp
parents:
diff changeset
1163 bnc divemode_simulator_check_limits2 ; No-carry = borrow = not deeper
heinrichsweikamp
parents:
diff changeset
1164
heinrichsweikamp
parents:
diff changeset
1165 ; Too deep, limit to 150m
heinrichsweikamp
parents:
diff changeset
1166 movlw LOW d'16000'
heinrichsweikamp
parents:
diff changeset
1167 movwf sim_pressure+0
heinrichsweikamp
parents:
diff changeset
1168 movlw HIGH d'16000'
heinrichsweikamp
parents:
diff changeset
1169 movwf sim_pressure+1
heinrichsweikamp
parents:
diff changeset
1170 return
heinrichsweikamp
parents:
diff changeset
1171 divemode_simulator_check_limits2:
heinrichsweikamp
parents:
diff changeset
1172 movlw LOW d'1000' ; Compare to 1bar == 0m == 1000 mbar.
heinrichsweikamp
parents:
diff changeset
1173 subwf sim_pressure+0,W
heinrichsweikamp
parents:
diff changeset
1174 movlw HIGH d'1000'
heinrichsweikamp
parents:
diff changeset
1175 subwfb sim_pressure+1,W
heinrichsweikamp
parents:
diff changeset
1176 btfsc STATUS,C ; No-carry = borrow = not deeper.
heinrichsweikamp
parents:
diff changeset
1177 return ; Deeper than 0m == Ok.
heinrichsweikamp
parents:
diff changeset
1178 ; Too shallow, limit to 0m
heinrichsweikamp
parents:
diff changeset
1179 movlw LOW d'1000'
heinrichsweikamp
parents:
diff changeset
1180 movwf sim_pressure+0
heinrichsweikamp
parents:
diff changeset
1181 movlw HIGH d'1000'
heinrichsweikamp
parents:
diff changeset
1182 movwf sim_pressure+1
heinrichsweikamp
parents:
diff changeset
1183 return
heinrichsweikamp
parents:
diff changeset
1184
heinrichsweikamp
parents:
diff changeset
1185 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
1186 ; Compare all enabled gas in list, to see if a better one is available.
heinrichsweikamp
parents:
diff changeset
1187 ;
heinrichsweikamp
parents:
diff changeset
1188 ; Output: better_gas_available, better_gas_number
heinrichsweikamp
parents:
diff changeset
1189 ;
heinrichsweikamp
parents:
diff changeset
1190 check_gas_change: ; Checks if a better gas should be selected (by user)
heinrichsweikamp
parents:
diff changeset
1191 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
heinrichsweikamp
parents:
diff changeset
1192 clrf better_gas_number ; Clear better gas register
heinrichsweikamp
parents:
diff changeset
1193
heinrichsweikamp
parents:
diff changeset
1194 SAFE_2BYTE_COPY rel_pressure,xA
heinrichsweikamp
parents:
diff changeset
1195 movlw d'100'
heinrichsweikamp
parents:
diff changeset
1196 movwf xB+0
heinrichsweikamp
parents:
diff changeset
1197 clrf xB+1
heinrichsweikamp
parents:
diff changeset
1198 call div16x16 ; compute depth in full m -> result in xC+0
heinrichsweikamp
parents:
diff changeset
1199
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1200 btfsc FLAG_ccr_mode ; In PSCR mode...
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1201 bra check_gas_change2 ; Yes, check for diluents
0
heinrichsweikamp
parents:
diff changeset
1202 btfss FLAG_ccr_mode ; In CCR mode...
heinrichsweikamp
parents:
diff changeset
1203 bra check_gas_change_OC_bail; No, check for OC or bailout
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1204 check_gas_change2:
0
heinrichsweikamp
parents:
diff changeset
1205 btfsc is_bailout ; Bailout?
heinrichsweikamp
parents:
diff changeset
1206 bra check_gas_change_OC_bail; Yes, check for OC or bailout
heinrichsweikamp
parents:
diff changeset
1207
heinrichsweikamp
parents:
diff changeset
1208 ; Check Diluents
160
99ac325586ce BUGFIX: Fast diluent (w/o dive mode menu) change did not work correctly
heinrichsweikamp
parents: 152
diff changeset
1209 bsf ccr_diluent_setup ; in CCR menus
0
heinrichsweikamp
parents:
diff changeset
1210 movlw .0
heinrichsweikamp
parents:
diff changeset
1211 rcall check_dil_common ; With Gas 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1212 movlw .1
heinrichsweikamp
parents:
diff changeset
1213 rcall check_dil_common ; With Gas 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1214 movlw .2
heinrichsweikamp
parents:
diff changeset
1215 rcall check_dil_common ; With Gas 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1216 movlw .3
heinrichsweikamp
parents:
diff changeset
1217 rcall check_dil_common ; With Gas 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1218 movlw .4
heinrichsweikamp
parents:
diff changeset
1219 rcall check_dil_common ; With Gas 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1220 bra check_gas_change_exit
heinrichsweikamp
parents:
diff changeset
1221
heinrichsweikamp
parents:
diff changeset
1222 check_gas_change_OC_bail:
160
99ac325586ce BUGFIX: Fast diluent (w/o dive mode menu) change did not work correctly
heinrichsweikamp
parents: 152
diff changeset
1223 bcf ccr_diluent_setup ; in OC menus
0
heinrichsweikamp
parents:
diff changeset
1224 movlw .0
heinrichsweikamp
parents:
diff changeset
1225 rcall check_gas_common ; With Gas 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1226 movlw .1
heinrichsweikamp
parents:
diff changeset
1227 rcall check_gas_common ; With Gas 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1228 movlw .2
heinrichsweikamp
parents:
diff changeset
1229 rcall check_gas_common ; With Gas 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1230 movlw .3
heinrichsweikamp
parents:
diff changeset
1231 rcall check_gas_common ; With Gas 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1232 movlw .4
heinrichsweikamp
parents:
diff changeset
1233 rcall check_gas_common ; With Gas 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1234 ; bra check_gas_change_exit
heinrichsweikamp
parents:
diff changeset
1235 check_gas_change_exit:
heinrichsweikamp
parents:
diff changeset
1236 btfss better_gas_available ; Is a better gas available
heinrichsweikamp
parents:
diff changeset
1237 bcf blinking_better_gas ; No, Clear blinking flag
heinrichsweikamp
parents:
diff changeset
1238 btfss better_gas_available ; Is a better gas available
heinrichsweikamp
parents:
diff changeset
1239 clrf better_gas_number ; No, Clear better_gas_number (For gaslist display)
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
1240 goto TFT_active_gas_divemode ; Display gas/Setpoint and return...
0
heinrichsweikamp
parents:
diff changeset
1241
heinrichsweikamp
parents:
diff changeset
1242 check_gas_common: ; With Gas 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1243 btfsc better_gas_available ; Better Gas already found?
heinrichsweikamp
parents:
diff changeset
1244 return ; Yes, return
heinrichsweikamp
parents:
diff changeset
1245 lfsr FSR1,opt_gas_type ; 0=Disabled, 1=First, 2=Travel, 3=Deco
heinrichsweikamp
parents:
diff changeset
1246 btfss PLUSW1,0 ; Test for Bit0 and 1 -> type=3 -> Deco
heinrichsweikamp
parents:
diff changeset
1247 return ; No
heinrichsweikamp
parents:
diff changeset
1248 btfss PLUSW1,1 ; Test for Bit0 and 1 -> type=3 -> Deco
heinrichsweikamp
parents:
diff changeset
1249 return ; No
heinrichsweikamp
parents:
diff changeset
1250 incf WREG,W ; 1-5
heinrichsweikamp
parents:
diff changeset
1251 cpfseq active_gas ; is this gas currently selected?
heinrichsweikamp
parents:
diff changeset
1252 bra check_gas_common2 ; No
heinrichsweikamp
parents:
diff changeset
1253 return ; Yes, skip test for active gas
heinrichsweikamp
parents:
diff changeset
1254 check_gas_common2:
heinrichsweikamp
parents:
diff changeset
1255 decf WREG,W ; 0-4
heinrichsweikamp
parents:
diff changeset
1256 movwf hi ; Save tested gas 0-4
97
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 89
diff changeset
1257 lfsr FSR1,opt_OC_bail_gas_change
0
heinrichsweikamp
parents:
diff changeset
1258 movff PLUSW1,lo ; Change depth into lo
heinrichsweikamp
parents:
diff changeset
1259 movlw minimum_change_depth
heinrichsweikamp
parents:
diff changeset
1260 cpfsgt lo ; Change depth>minimum_change_depth?
heinrichsweikamp
parents:
diff changeset
1261 return ; No, Change depth not deep enough, skip!
heinrichsweikamp
parents:
diff changeset
1262 movf xC+0,W ; load depth in m into WREG
heinrichsweikamp
parents:
diff changeset
1263 cpfsgt lo ; gas_change_depth < current depth?
69
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1264 bra check_gas_common3 ; No, check if we are within the better_gas_window_pos window
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1265 incf hi,W ; 1-5
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1266 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1267 movlw better_gas_window_neg
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1268 subwf lo,W ; Change depth-better_gas_window_neg
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1269 cpfslt xC+0 ; current depth<Change depth-better_gas_window_neg?
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1270 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1271 return
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1272
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1273 check_gas_common3:
0
heinrichsweikamp
parents:
diff changeset
1274 incf hi,W ; 1-5
heinrichsweikamp
parents:
diff changeset
1275 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available
69
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1276 movlw better_gas_window_pos
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1277 addwf lo,W ; Change depth+better_gas_window_pos
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1278 cpfsgt xC+0 ; current depth>Change depth+better_gas_window_pos?
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1279 bra check_gas_common4 ; Ok, now check the better gas ppO2<opt_ppO2_max
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1280 return
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1281
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1282 check_gas_common4:
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1283 movf hi,W ; 0-4
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1284 lfsr FSR1,char_I_deco_N2_ratio
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1285 movff PLUSW1,lo ; N2 ratio into lo
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1286 lfsr FSR1,char_I_deco_He_ratio
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1287 movff PLUSW1,xB+0 ; He ratio into xB+0
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1288 movf xB+0,W
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1289 addwf lo,F
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1290 movlw .101
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1291 bcf STATUS,C
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1292 subfwb lo,F ; O2 ratio in lo
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1293
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1294 SAFE_2BYTE_COPY amb_pressure, xA
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1295 movlw d'10'
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1296 movwf xB+0
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1297 clrf xB+1
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1298 call div16x16 ; xC=p_amb/10
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1299 movff xC+0,xA+0
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1300 movff xC+1,xA+1
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1301 movff lo,xB+0 ; =O2 ratio
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1302 clrf xB+1
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1303 call mult16x16 ; lo * p_amb/10
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1304
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1305 ; Check very high ppO2 manually
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1306 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar?
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1307 return ; Done.
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1308 ; Check if ppO2>3,30bar
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1309 btfsc xC+1,7
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1310 return ; Done.
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1311
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1312 ; ; Check for low ppo2
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1313 ; movff xC+0,sub_b+0
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1314 ; movff xC+1,sub_b+1
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1315 ; movff opt_ppO2_min,WREG
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1316 ; mullw d'100' ; opt_ppO2_min*100
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1317 ; movff PRODL,sub_a+0
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1318 ; movff PRODH,sub_a+1
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1319 ; call subU16
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1320 ; btfss neg_flag
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1321 ; return ; Done (Too low).
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1322
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1323 ;check if we are within our warning thresholds!
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1324 movff xC+0,sub_b+0
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1325 movff xC+1,sub_b+1
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1326 movff opt_ppO2_max,WREG ; PPO2 Max for MOD calculation and color coding in divemode
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1327 addlw .1 ; e.g. >1.60
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1328 mullw d'100' ; opt_ppO2_max*100
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1329 movff PRODL,sub_a+0
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1330 movff PRODH,sub_a+1
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1331 call subU16
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1332 btfss neg_flag
0
heinrichsweikamp
parents:
diff changeset
1333 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
69
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1334 return ; Done.
0
heinrichsweikamp
parents:
diff changeset
1335
heinrichsweikamp
parents:
diff changeset
1336 check_dil_common: ; With Dil 0-4 in WREG
heinrichsweikamp
parents:
diff changeset
1337 btfsc better_gas_available ; Better Diluent already found?
heinrichsweikamp
parents:
diff changeset
1338 return ; Yes, return
heinrichsweikamp
parents:
diff changeset
1339 lfsr FSR1,opt_dil_type ; 0=Disabled, 1=First, 2=Normal
heinrichsweikamp
parents:
diff changeset
1340 tstfsz PLUSW1 ; =0?
heinrichsweikamp
parents:
diff changeset
1341 bra check_dil_common1 ; No
heinrichsweikamp
parents:
diff changeset
1342 return ; Yes, skip inactive diluents for test
heinrichsweikamp
parents:
diff changeset
1343 check_dil_common1:
heinrichsweikamp
parents:
diff changeset
1344 incf WREG,W ; 1-5
heinrichsweikamp
parents:
diff changeset
1345 cpfseq active_gas ; is this diluent currently selected?
heinrichsweikamp
parents:
diff changeset
1346 bra check_dil_common2 ; No
heinrichsweikamp
parents:
diff changeset
1347 return ; Yes, skip test for active diluent
heinrichsweikamp
parents:
diff changeset
1348 check_dil_common2:
heinrichsweikamp
parents:
diff changeset
1349 decf WREG,W ; 0-4
heinrichsweikamp
parents:
diff changeset
1350 movwf hi ; Save tested diluent 0-4
heinrichsweikamp
parents:
diff changeset
1351 lfsr FSR1,char_I_dil_change
heinrichsweikamp
parents:
diff changeset
1352 movff PLUSW1,lo ; Change depth into lo
heinrichsweikamp
parents:
diff changeset
1353 movlw minimum_change_depth
heinrichsweikamp
parents:
diff changeset
1354 cpfsgt lo ; Change depth>minimum_change_depth?
heinrichsweikamp
parents:
diff changeset
1355 return ; No, Change depth not deep enough, skip!
heinrichsweikamp
parents:
diff changeset
1356 movf xC+0,W ; load depth in m into WREG
heinrichsweikamp
parents:
diff changeset
1357 cpfsgt lo ; gas_change_depth < current depth?
heinrichsweikamp
parents:
diff changeset
1358 return ; No, check next gas
heinrichsweikamp
parents:
diff changeset
1359 incf hi,W ; 1-5
heinrichsweikamp
parents:
diff changeset
1360 movwf better_gas_number ; number (1-5) of the "better gas" in divemode, =0: no better gas available
69
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1361 movlw better_gas_window_neg
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1362 subwf lo,W ; Change depth-better_gas_window_neg
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1363 cpfslt xC+0 ; current depth<Change depth-better_gas_window_neg?
0
heinrichsweikamp
parents:
diff changeset
1364 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
heinrichsweikamp
parents:
diff changeset
1365 return
heinrichsweikamp
parents:
diff changeset
1366
338
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1367
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1368 ;=============================================================================
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1369 ; Check for Auto-SP
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1370 ;
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1371 check_dive_autosp: ; Check for Auto-SP
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1372 movff opt_ccr_mode,WREG ; =0: Fixed SP, =1: Sensor, =2: Auto SP
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1373 sublw .2 ; opt_ccr_mode = 2 (Auto SP)?
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1374 bz check_dive_autosp2 ; Yes, check
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1375 return ; No, return for Sensor or Fixed mode
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1376 check_dive_autosp2:
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1377 SAFE_2BYTE_COPY rel_pressure,xA
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1378 movlw d'100'
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1379 movwf xB+0
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1380 clrf xB+1
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1381 call div16x16 ; compute depth in full m -> result in xC+0
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1382 ; Check SP2
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1383 btfsc sp2_switched ;=1: This setpoint has been autoselected already
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1384 bra check_dive_autosp3 ; Skip check
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1385 movff char_I_setpoint_change+1,lo ; Get depth in m
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1386 tstfsz lo ; =0?
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1387 bra $+4 ; No, continue
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1388 bra check_dive_autosp3 ; Skip check
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1389 decf lo,W ; -1 -> WREG
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1390 cpfsgt xC+0 ; Compare with depth
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1391 bra check_dive_autosp3 ; lower depth, do not switch
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1392 ; auto switch to SP2
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1393 movff char_I_setpoint_cbar+1, char_I_const_ppO2 ; Use SetPoint
352
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1394 rcall xmit_sp_set_flag
338
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1395 bsf sp2_switched ; Set flag
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1396 check_dive_autosp3:
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1397 ; Check SP3
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1398 btfsc sp3_switched ;=1: This setpoint has been autoselected already
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1399 bra check_dive_autosp4 ; Skip check
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1400 movff char_I_setpoint_change+2,lo ; Get depth in m
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1401 tstfsz lo ; =0?
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1402 bra $+4 ; No, continue
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1403 bra check_dive_autosp4 ; Skip check
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1404 decf lo,W ; -1 -> WREG
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1405 cpfsgt xC+0 ; Compare with depth
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1406 bra check_dive_autosp4 ; lower depth, do not switch
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1407 ; auto switch to SP3
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1408 movff char_I_setpoint_cbar+2, char_I_const_ppO2 ; Use SetPoint
352
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1409 rcall xmit_sp_set_flag
338
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1410 bsf sp3_switched ; Set flag
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1411 check_dive_autosp4:
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1412 ; Check SP4
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1413 btfsc sp4_switched ;=1: This setpoint has been autoselected already
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1414 bra check_dive_autosp5 ; Skip check
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1415 movff char_I_setpoint_change+3,lo ; Get depth in m
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1416 tstfsz lo ; =0?
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1417 bra $+4 ; No, continue
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1418 bra check_dive_autosp5 ; Skip check
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1419 decf lo,W ; -1 -> WREG
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1420 cpfsgt xC+0 ; Compare with depth
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1421 bra check_dive_autosp5 ; lower depth, do not switch
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1422 ; auto switch to SP4
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1423 movff char_I_setpoint_cbar+3, char_I_const_ppO2 ; Use SetPoint
352
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1424 rcall xmit_sp_set_flag
338
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1425 bsf sp4_switched ; Set flag
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1426 check_dive_autosp5:
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1427 ; Check SP5
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1428 btfsc sp5_switched ;=1: This setpoint has been autoselected already
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1429 bra check_dive_autosp6 ; Skip check
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1430 movff char_I_setpoint_change+4,lo ; Get depth in m
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1431 tstfsz lo ; =0?
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1432 bra $+4 ; No, continue
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1433 bra check_dive_autosp6 ; Skip check
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1434 decf lo,W ; -1 -> WREG
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1435 cpfsgt xC+0 ; Compare with depth
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1436 bra check_dive_autosp6 ; lower depth, do not switch
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1437 ; auto switch to SP5
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1438 movff char_I_setpoint_cbar+4, char_I_const_ppO2 ; Use SetPoint
352
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1439 rcall xmit_sp_set_flag
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1440 bsf sp5_switched ; Set flag
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1441 check_dive_autosp6:
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1442 return
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1443
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1444 xmit_sp_set_flag:
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1445 movff char_I_const_ppO2,WREG
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1446 call transmit_setpoint ; Transmit current setpoint from WREG (in cbar) to external electronics
338
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1447 bsf setpoint_changed ; Set flag (For profile)
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1448 bsf event_occured ; Set global event byte
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1449 return
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1450
0
heinrichsweikamp
parents:
diff changeset
1451 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
1452 ; Setup everything to enter divemode.
heinrichsweikamp
parents:
diff changeset
1453 ;
heinrichsweikamp
parents:
diff changeset
1454 dive_boot_oc:
heinrichsweikamp
parents:
diff changeset
1455 extern get_first_gas_to_WREG
heinrichsweikamp
parents:
diff changeset
1456 call get_first_gas_to_WREG ; Gets first gas (0-4) into WREG
heinrichsweikamp
parents:
diff changeset
1457 movff WREG,char_I_first_gas ; Copy for compatibility
heinrichsweikamp
parents:
diff changeset
1458 rcall setup_gas_registers ; With WREG=Gas 0-4
197
3bbfac29ba3e cleanup
heinrichsweikamp
parents: 195
diff changeset
1459 banksel char_I_first_gas
3bbfac29ba3e cleanup
heinrichsweikamp
parents: 195
diff changeset
1460 incf char_I_first_gas,F ; 0-4 -> 1-5
3bbfac29ba3e cleanup
heinrichsweikamp
parents: 195
diff changeset
1461 banksel common
0
heinrichsweikamp
parents:
diff changeset
1462 return
heinrichsweikamp
parents:
diff changeset
1463
heinrichsweikamp
parents:
diff changeset
1464 dive_boot_cc:
277
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
1465 bcf is_bailout ; =1: Bailout
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
1466 bcf setpoint_fallback ; =1: Fallback to SP1 due to external O2 sensor failure
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
1467 bcf blinking_setpoint ; Reset blinking SP flag
192
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
1468 call compute_ppo2 ; compute mv_sensorX and ppo2_sensorX arrays
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
1469 bsf voting_logic_sensor1
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
1470 bsf voting_logic_sensor2
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
1471 bsf voting_logic_sensor3
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
1472 call divemode_setup_sensor_values ; setup sensor values
192
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 178
diff changeset
1473
338
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1474 ; Setup first SP for Fixed or Auto mode
398
1f2e35f5a5aa BUGFIX: Make sure SP1 is always selected on start in Auto-SP mode
heinrichsweikamp
parents: 389
diff changeset
1475 movff opt_ccr_mode,WREG ; =0: Fixed SP, =1: Sensor, =2: Auto SP
1f2e35f5a5aa BUGFIX: Make sure SP1 is always selected on start in Auto-SP mode
heinrichsweikamp
parents: 389
diff changeset
1476 sublw .1 ; opt_ccr_mode = 1 (Sensor)?
1f2e35f5a5aa BUGFIX: Make sure SP1 is always selected on start in Auto-SP mode
heinrichsweikamp
parents: 389
diff changeset
1477 movff char_I_setpoint_cbar+0,char_I_const_ppO2 ; No, setup fixed Setpoint (Always start with SP1)
352
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1478 movff char_I_const_ppO2,WREG
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1479 call transmit_setpoint ; Transmit current setpoint from WREG (in cbar) to external electronics
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 339
diff changeset
1480 bsf setpoint_changed ; Set flag (For profile)
338
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1481 bcf sp2_switched ; =1: This setpoint has been autoselected already
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1482 bcf sp3_switched ; =1: This setpoint has been autoselected already
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1483 bcf sp4_switched ; =1: This setpoint has been autoselected already
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1484 bcf sp5_switched ; =1: This setpoint has been autoselected already
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
1485
0
heinrichsweikamp
parents:
diff changeset
1486 extern get_first_dil_to_WREG
heinrichsweikamp
parents:
diff changeset
1487 call get_first_dil_to_WREG ; Gets first gas (0-4) into WREG
heinrichsweikamp
parents:
diff changeset
1488 movff WREG,char_I_first_gas ; Copy for compatibility
heinrichsweikamp
parents:
diff changeset
1489 rcall setup_dil_registers ; With WREG=Gas 0-4
197
3bbfac29ba3e cleanup
heinrichsweikamp
parents: 195
diff changeset
1490 banksel char_I_first_gas
3bbfac29ba3e cleanup
heinrichsweikamp
parents: 195
diff changeset
1491 incf char_I_first_gas,F ; 0-4 -> 1-5
3bbfac29ba3e cleanup
heinrichsweikamp
parents: 195
diff changeset
1492 banksel common
428
eccae727702f some cleanup
heinrichsweikamp
parents: 403
diff changeset
1493 goto calc_deko_divemode_sensor ; External sensor stuff and return...
0
heinrichsweikamp
parents:
diff changeset
1494
heinrichsweikamp
parents:
diff changeset
1495 diveloop_boot:
heinrichsweikamp
parents:
diff changeset
1496 call restart_set_modes_and_flags
heinrichsweikamp
parents:
diff changeset
1497
heinrichsweikamp
parents:
diff changeset
1498 call I2C_sleep_accelerometer ; Stop accelerometer
heinrichsweikamp
parents:
diff changeset
1499 call I2C_sleep_compass ; Stop compass
heinrichsweikamp
parents:
diff changeset
1500
heinrichsweikamp
parents:
diff changeset
1501 clrf WREG
heinrichsweikamp
parents:
diff changeset
1502 movff WREG,max_pressure+0 ; clear some variables
heinrichsweikamp
parents:
diff changeset
1503 movff WREG,max_pressure+1
heinrichsweikamp
parents:
diff changeset
1504
heinrichsweikamp
parents:
diff changeset
1505 bcf use_agf ; Start with normal GF set
heinrichsweikamp
parents:
diff changeset
1506 bcf divemode_menu ; clear divemode menu flag
heinrichsweikamp
parents:
diff changeset
1507 movlw d'1'
heinrichsweikamp
parents:
diff changeset
1508 movwf apnoe_max_pressure+0
heinrichsweikamp
parents:
diff changeset
1509 clrf apnoe_max_pressure+1
386
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1510 ; clrf apnoe_surface_mins
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1511 ; clrf apnoe_surface_secs
0
heinrichsweikamp
parents:
diff changeset
1512 clrf apnoe_mins
heinrichsweikamp
parents:
diff changeset
1513 clrf divemins+0
heinrichsweikamp
parents:
diff changeset
1514 clrf divemins+1
389
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 386
diff changeset
1515
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 386
diff changeset
1516 ; Copy date and time for logbook
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 386
diff changeset
1517 movff year,start_year
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 386
diff changeset
1518 movff month,start_month
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 386
diff changeset
1519 movff day,start_day
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 386
diff changeset
1520 movff hours,start_hours
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 386
diff changeset
1521 movff mins,start_mins
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 386
diff changeset
1522
277
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
1523 bcf no_more_divesecs ; =1: Do no longer show seconds in divemode
0
heinrichsweikamp
parents:
diff changeset
1524 bcf divemode_menu_active
heinrichsweikamp
parents:
diff changeset
1525 clrf menupos
277
24daa6523218 1.79beta - update internal sensor registers during boot
heinrichsweikamp
parents: 275
diff changeset
1526 clrf menupos2 ; Reset to zero (Zero=no premenu or simulator task)
0
heinrichsweikamp
parents:
diff changeset
1527
heinrichsweikamp
parents:
diff changeset
1528 btfss FLAG_ccr_mode
heinrichsweikamp
parents:
diff changeset
1529 rcall dive_boot_oc
heinrichsweikamp
parents:
diff changeset
1530 btfsc FLAG_ccr_mode
heinrichsweikamp
parents:
diff changeset
1531 rcall dive_boot_cc
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1532 btfsc FLAG_pscr_mode
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1533 rcall dive_boot_cc
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1534
403
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1535 ; Copy opt_dil_types into backup (For "lost gas" feature)
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1536 movff opt_dil_type+0,opt_dil_type_backup+0 ; 0=Disabled, 1=First, 2=Normal
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1537 movff opt_dil_type+1,opt_dil_type_backup+1 ; 0=Disabled, 1=First, 2=Normal
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1538 movff opt_dil_type+2,opt_dil_type_backup+2 ; 0=Disabled, 1=First, 2=Normal
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1539 movff opt_dil_type+3,opt_dil_type_backup+3 ; 0=Disabled, 1=First, 2=Normal
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1540 movff opt_dil_type+4,opt_dil_type_backup+4 ; 0=Disabled, 1=First, 2=Normal
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1541 ; Copy opt_gas_types into backup (For "lost gas" feature)
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1542 movff opt_gas_type+0,opt_gas_type_backup+0 ; 0=Disabled, 1=First, 2=Travel, 3=Deco
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1543 movff opt_gas_type+1,opt_gas_type_backup+1 ; 0=Disabled, 1=First, 2=Travel, 3=Deco
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1544 movff opt_gas_type+2,opt_gas_type_backup+2 ; 0=Disabled, 1=First, 2=Travel, 3=Deco
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1545 movff opt_gas_type+3,opt_gas_type_backup+3 ; 0=Disabled, 1=First, 2=Travel, 3=Deco
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1546 movff opt_gas_type+4,opt_gas_type_backup+4 ; 0=Disabled, 1=First, 2=Travel, 3=Deco
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1547 ; Also copy change depths into backup (For "lost gas" feature)
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1548 movff opt_OC_bail_gas_change+0,opt_OC_bail_gas_change_backup+0 ; Gas change depths OC/Bailout
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1549 movff opt_OC_bail_gas_change+1,opt_OC_bail_gas_change_backup+1 ; Gas change depths OC/Bailout
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1550 movff opt_OC_bail_gas_change+2,opt_OC_bail_gas_change_backup+2 ; Gas change depths OC/Bailout
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1551 movff opt_OC_bail_gas_change+3,opt_OC_bail_gas_change_backup+3 ; Gas change depths OC/Bailout
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1552 movff opt_OC_bail_gas_change+4,opt_OC_bail_gas_change_backup+4 ; Gas change depths OC/Bailout
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 399
diff changeset
1553
0
heinrichsweikamp
parents:
diff changeset
1554 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
heinrichsweikamp
parents:
diff changeset
1555 clrf better_gas_number ; Clear better gas register
heinrichsweikamp
parents:
diff changeset
1556
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
1557 bcf show_safety_stop ;=1: Show the safety stop
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
1558 clrf safety_stop_countdown ; Clear count-down
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 102
diff changeset
1559
0
heinrichsweikamp
parents:
diff changeset
1560 clrf samplesecs
heinrichsweikamp
parents:
diff changeset
1561 clrf apnoe_timeout_counter ; timeout in minutes
heinrichsweikamp
parents:
diff changeset
1562 clrf timeout_counter ; takes care of the timeout (Low byte)
heinrichsweikamp
parents:
diff changeset
1563 clrf timeout_counter2 ; takes care of the timeout (High byte)
heinrichsweikamp
parents:
diff changeset
1564 clrf AlarmType ; Clear all alarms
heinrichsweikamp
parents:
diff changeset
1565 bcf event_occured ; clear flag
heinrichsweikamp
parents:
diff changeset
1566 clrf total_divetime_seconds+1
heinrichsweikamp
parents:
diff changeset
1567 clrf average_depth_hold_total+0
heinrichsweikamp
parents:
diff changeset
1568 clrf average_depth_hold_total+1
heinrichsweikamp
parents:
diff changeset
1569 clrf average_depth_hold_total+2
heinrichsweikamp
parents:
diff changeset
1570 clrf average_depth_hold_total+3 ; Clear Non-Resettable Average
heinrichsweikamp
parents:
diff changeset
1571 rcall reset_average1 ; Reset the resettable average depth
heinrichsweikamp
parents:
diff changeset
1572 bcf decostop_active
heinrichsweikamp
parents:
diff changeset
1573 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
204
heinrichsweikamp
parents: 197
diff changeset
1574 call ghostwriter_short_header ; Write short header with divenumber into profile memory
0
heinrichsweikamp
parents:
diff changeset
1575
heinrichsweikamp
parents:
diff changeset
1576 btfsc simulatormode_active
heinrichsweikamp
parents:
diff changeset
1577 bra diveloop_boot_1
heinrichsweikamp
parents:
diff changeset
1578 ; Normal mode = Surface pressure is the pressure 30mn before dive.
heinrichsweikamp
parents:
diff changeset
1579 SAFE_2BYTE_COPY last_surfpressure_30min, int_I_pres_surface ;copy surfacepressure to deco routine
heinrichsweikamp
parents:
diff changeset
1580 SAFE_2BYTE_COPY last_surfpressure_30min, last_surfpressure ;copy surfacepressure to last_surfpressure for correct depth
heinrichsweikamp
parents:
diff changeset
1581 bra diveloop_boot_2
heinrichsweikamp
parents:
diff changeset
1582
heinrichsweikamp
parents:
diff changeset
1583 diveloop_boot_1:
heinrichsweikamp
parents:
diff changeset
1584 ; Simulator mode: Surface pressure is 1bar.
heinrichsweikamp
parents:
diff changeset
1585 movlw LOW .1000
heinrichsweikamp
parents:
diff changeset
1586 movff WREG,int_I_pres_surface+0 ; LOW copy surfacepressure to deco routine
heinrichsweikamp
parents:
diff changeset
1587 movlw HIGH .1000
heinrichsweikamp
parents:
diff changeset
1588 movff WREG,int_I_pres_surface+1 ; HIGH copy surfacepressure to deco routine
heinrichsweikamp
parents:
diff changeset
1589
heinrichsweikamp
parents:
diff changeset
1590 diveloop_boot_2:
heinrichsweikamp
parents:
diff changeset
1591 SAFE_2BYTE_COPY temperature,minimum_temperature ; Reset Min-Temp registers
heinrichsweikamp
parents:
diff changeset
1592
heinrichsweikamp
parents:
diff changeset
1593 ; Init profile recording parameters
23
e402813343b6 new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents: 0
diff changeset
1594 movff samplingrate,samplesecs_value ; to avoid EEPROM access in the ISR
0
heinrichsweikamp
parents:
diff changeset
1595 movlw div_temperature
heinrichsweikamp
parents:
diff changeset
1596 movwf divisor_temperature ; load divisors for profile storage
heinrichsweikamp
parents:
diff changeset
1597 movlw div_deco
heinrichsweikamp
parents:
diff changeset
1598 movwf divisor_deco
heinrichsweikamp
parents:
diff changeset
1599 movlw div_gf
heinrichsweikamp
parents:
diff changeset
1600 movwf divisor_gf
heinrichsweikamp
parents:
diff changeset
1601 movlw div_ppo2_sensors
heinrichsweikamp
parents:
diff changeset
1602 movwf divisor_ppo2_sensors
heinrichsweikamp
parents:
diff changeset
1603 movlw div_decoplan
heinrichsweikamp
parents:
diff changeset
1604 movwf divisor_decoplan
heinrichsweikamp
parents:
diff changeset
1605 movlw div_cns
heinrichsweikamp
parents:
diff changeset
1606 movwf divisor_cns
heinrichsweikamp
parents:
diff changeset
1607 movlw div_tank
heinrichsweikamp
parents:
diff changeset
1608 movwf divisor_tank
heinrichsweikamp
parents:
diff changeset
1609
heinrichsweikamp
parents:
diff changeset
1610 btfss FLAG_apnoe_mode ; In Apnoe mode?
102
37275e0fa7f5 NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents: 99
diff changeset
1611 bra divemode_boot1
0
heinrichsweikamp
parents:
diff changeset
1612 ; Overwrite some parameters in Apnoe mode....
heinrichsweikamp
parents:
diff changeset
1613 movlw samplingrate_apnoe
heinrichsweikamp
parents:
diff changeset
1614 movwf samplesecs_value ; to avoid EEPROM access in the ISR
102
37275e0fa7f5 NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents: 99
diff changeset
1615 divemode_boot1:
37275e0fa7f5 NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents: 99
diff changeset
1616 btfsc FLAG_ccr_mode ; =1: CCR mode (Fixed ppO2 or Sensor) active
37275e0fa7f5 NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents: 99
diff changeset
1617 bra divemode_boot2
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1618 btfsc FLAG_pscr_mode
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1619 bra divemode_boot2
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1620
102
37275e0fa7f5 NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents: 99
diff changeset
1621 ; in OC Mode, disable ppO2 logging
37275e0fa7f5 NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents: 99
diff changeset
1622 movlw .0
37275e0fa7f5 NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents: 99
diff changeset
1623 movwf divisor_ppo2_sensors
37275e0fa7f5 NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents: 99
diff changeset
1624 divemode_boot2:
0
heinrichsweikamp
parents:
diff changeset
1625
heinrichsweikamp
parents:
diff changeset
1626 bcf LEDg
heinrichsweikamp
parents:
diff changeset
1627 bcf LEDr
heinrichsweikamp
parents:
diff changeset
1628 bcf realdive
heinrichsweikamp
parents:
diff changeset
1629 btfss simulatormode_active ; do not disable in simulator mode!
heinrichsweikamp
parents:
diff changeset
1630 call disable_rs232 ; Disable RS232
heinrichsweikamp
parents:
diff changeset
1631 btfsc enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump)
heinrichsweikamp
parents:
diff changeset
1632 call enable_rs232 ; Also sets to speed_normal ...
39
e4e91fe8b09d remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents: 38
diff changeset
1633 ; Reset divetime seconds
e4e91fe8b09d remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents: 38
diff changeset
1634 movlw .2 ; Start at 2seconds
0
heinrichsweikamp
parents:
diff changeset
1635 movwf total_divetime_seconds+0
39
e4e91fe8b09d remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents: 38
diff changeset
1636 movwf divesecs
e4e91fe8b09d remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents: 38
diff changeset
1637 movwf apnoe_secs
0
heinrichsweikamp
parents:
diff changeset
1638 bsf divemode2 ; displayed divetime is running (Divetime starts HERE)
heinrichsweikamp
parents:
diff changeset
1639
heinrichsweikamp
parents:
diff changeset
1640 movff int_O_CNS_fraction+0,CNS_start+0
heinrichsweikamp
parents:
diff changeset
1641 movff int_O_CNS_fraction+1,CNS_start+1 ; Save CNS value at beginning of dive
heinrichsweikamp
parents:
diff changeset
1642 movff char_O_relative_gradient_GF,GF_start ; Save GF value at beginning of dive
heinrichsweikamp
parents:
diff changeset
1643 return ; Done with divemode boot
heinrichsweikamp
parents:
diff changeset
1644
heinrichsweikamp
parents:
diff changeset
1645 divemode_check_for_warnings:
131
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
1646 movlw .2
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
1647 cpfsgt warning_counter ; only two warnings active?
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
1648 bra divemode_check_for_warnings1 ; Yes, update every second
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
1649
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
1650 btfss secs,0 ; Every two seconds...
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
1651 return
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
1652 btfss secs,1 ; Every four seconds...
0
heinrichsweikamp
parents:
diff changeset
1653 return
heinrichsweikamp
parents:
diff changeset
1654
131
35b9da423de6 NEW: Update warnings every second
heinrichsweikamp
parents: 113
diff changeset
1655 divemode_check_for_warnings1:
0
heinrichsweikamp
parents:
diff changeset
1656 movf warning_counter_backup,W
heinrichsweikamp
parents:
diff changeset
1657 cpfseq warning_counter ; warning_counter_backup = warning_counter?
heinrichsweikamp
parents:
diff changeset
1658 call TFT_clear_warning_text ; No, clear all warnings
heinrichsweikamp
parents:
diff changeset
1659 movff warning_counter,warning_counter_backup ; copy warning_counter
heinrichsweikamp
parents:
diff changeset
1660
heinrichsweikamp
parents:
diff changeset
1661 bcf warning_active ; Clear flag
heinrichsweikamp
parents:
diff changeset
1662 clrf warning_counter ; Clear counter
heinrichsweikamp
parents:
diff changeset
1663
heinrichsweikamp
parents:
diff changeset
1664 ; Warnings for all modes
heinrichsweikamp
parents:
diff changeset
1665 call check_warn_battery ; Check if the battery level should be displayed/warned
55
448ba265fdae Change "O2" warning to "ppO2"
heinrichsweikamp
parents: 39
diff changeset
1666 call check_divetimeout ; Not actually a warning. Check and show the divemode timeout
0
heinrichsweikamp
parents:
diff changeset
1667
heinrichsweikamp
parents:
diff changeset
1668 btfsc FLAG_apnoe_mode ; Done for Apnoe or Gauge mode
heinrichsweikamp
parents:
diff changeset
1669 bra divemode_check_for_warnings2
heinrichsweikamp
parents:
diff changeset
1670 btfsc FLAG_gauge_mode ; Done for Apnoe or Gauge mode
heinrichsweikamp
parents:
diff changeset
1671 bra divemode_check_for_warnings2
heinrichsweikamp
parents:
diff changeset
1672
heinrichsweikamp
parents:
diff changeset
1673 ; Warnings only in deco modes
heinrichsweikamp
parents:
diff changeset
1674 btfss FLAG_ccr_mode ; Don't check in CCR mode
heinrichsweikamp
parents:
diff changeset
1675 rcall check_ppO2 ; check ppO2 and displays warning, if required
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1676 ; mH: PSCR handling missing here (Not critical but should be done...)
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1677
0
heinrichsweikamp
parents:
diff changeset
1678 btfsc is_bailout ; But check in Bailout case...
heinrichsweikamp
parents:
diff changeset
1679 rcall check_ppO2 ; check ppO2 and displays warning, if required
heinrichsweikamp
parents:
diff changeset
1680 rcall check_cns_violation ; Check CNS value and display it, if required
heinrichsweikamp
parents:
diff changeset
1681 btfsc decostop_active ; In deco mode?
heinrichsweikamp
parents:
diff changeset
1682 rcall check_and_store_gf_violation ; Yes, Sets warnings, if required
heinrichsweikamp
parents:
diff changeset
1683 btfsc decostop_active ; In deco mode?
heinrichsweikamp
parents:
diff changeset
1684 call TFT_ftts ; Show @+x time
heinrichsweikamp
parents:
diff changeset
1685 btfsc use_agf ; In aGF mode?
heinrichsweikamp
parents:
diff changeset
1686 rcall warn_agf ; Yes, show a warning for it
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 138
diff changeset
1687 btfsc setpoint_fallback ; =1: Fallback to SP1 due to external O2 sensor failure
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 138
diff changeset
1688 rcall warn_fallback ; Show the warning
0
heinrichsweikamp
parents:
diff changeset
1689
heinrichsweikamp
parents:
diff changeset
1690 divemode_check_for_warnings2:
heinrichsweikamp
parents:
diff changeset
1691 ; Display the warning icon?
heinrichsweikamp
parents:
diff changeset
1692 btfsc warning_active ; Any warning active?
heinrichsweikamp
parents:
diff changeset
1693 call TFT_divemode_warning ; Yes
heinrichsweikamp
parents:
diff changeset
1694 btfss warning_active ; Any warning active?
heinrichsweikamp
parents:
diff changeset
1695 call TFT_divemode_warning_clear ; No, clear warning icon
heinrichsweikamp
parents:
diff changeset
1696
heinrichsweikamp
parents:
diff changeset
1697 ; Setup warning_page number
heinrichsweikamp
parents:
diff changeset
1698 incf warning_page,F
heinrichsweikamp
parents:
diff changeset
1699 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
1700 rlcf warning_page,W ; *2
heinrichsweikamp
parents:
diff changeset
1701 cpfsgt warning_counter ; > warning_counter
heinrichsweikamp
parents:
diff changeset
1702 clrf warning_page ; No, clear
heinrichsweikamp
parents:
diff changeset
1703
heinrichsweikamp
parents:
diff changeset
1704 ; Clear 2nd row of warnings if there is nothing to show (on this page)
heinrichsweikamp
parents:
diff changeset
1705 btfss second_row_warning ; =1: The second row contains a warning
heinrichsweikamp
parents:
diff changeset
1706 call TFT_clear_warning_text_2nd_row ; No, clear this row
heinrichsweikamp
parents:
diff changeset
1707 return ; Done.
heinrichsweikamp
parents:
diff changeset
1708
heinrichsweikamp
parents:
diff changeset
1709 global check_warn_battery
heinrichsweikamp
parents:
diff changeset
1710 check_warn_battery:
heinrichsweikamp
parents:
diff changeset
1711 movff batt_percent,lo
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1712 movlw battery_show_level+1
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1713 cpfslt lo
0
heinrichsweikamp
parents:
diff changeset
1714 return ; No Display, no warning
heinrichsweikamp
parents:
diff changeset
1715 ; Display Battery, but warn?
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1716 movff batt_percent,lo
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1717 movlw color_code_battery_low+1
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1718 cpfsgt lo ;
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1719 bsf warning_active ; Set Warning flag
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1720
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1721 movlw .4
473
heinrichsweikamp
parents: 472
diff changeset
1722 cpfseq menupos3 ; battery shown in Custom View 4?
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1723 bra check_warn_battery2 ; No
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1724 return ; Yes, do not show twice (in custom view and in warning area)
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1725 check_warn_battery2:
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1726 incf warning_counter,F ; increase counter
0
heinrichsweikamp
parents:
diff changeset
1727 call TFT_update_batt_percent_divemode ; Show percent
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1728 return
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1729
55
448ba265fdae Change "O2" warning to "ppO2"
heinrichsweikamp
parents: 39
diff changeset
1730 check_divetimeout:
448ba265fdae Change "O2" warning to "ppO2"
heinrichsweikamp
parents: 39
diff changeset
1731 btfsc divemode2
448ba265fdae Change "O2" warning to "ppO2"
heinrichsweikamp
parents: 39
diff changeset
1732 return ; displayed divetime is not running
448ba265fdae Change "O2" warning to "ppO2"
heinrichsweikamp
parents: 39
diff changeset
1733 incf warning_counter,F ; increase counter
386
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1734 goto TFT_divetimeout ; Show timeout counter (and return)
55
448ba265fdae Change "O2" warning to "ppO2"
heinrichsweikamp
parents: 39
diff changeset
1735
448ba265fdae Change "O2" warning to "ppO2"
heinrichsweikamp
parents: 39
diff changeset
1736
0
heinrichsweikamp
parents:
diff changeset
1737 check_ppO2: ; check current ppO2 and display warning if required
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1738 btfss FLAG_pscr_mode
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1739 bra check_ppO2_non_pscr ; Non-PSCR modes...
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1740 ; in PSCR mode
485
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1741 btfsc is_bailout
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1742 bra check_ppO2_non_pscr ; Non-PSCR modes...
18e047102e49 3.14 BETA release
heinrichsweikamp
parents: 482
diff changeset
1743
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1744 call compute_pscr_ppo2 ; pSCR ppO2 into sub_c:2
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1745 movff sub_c+0,xA+0
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1746 movff sub_c+1,xA+1
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1747 movlw d'100'
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1748 movwf xB+0
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1749 clrf xB+1
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1750 call div16x16 ; /100
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1751 tstfsz xC+1 ; Is ppO2 > 2.55bar ?
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1752 setf xC+0 ; yes: bound to 2.55... better than wrap around.
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1753 movff xC+0,char_I_actual_ppO2 ; copy last ppO2 to buffer register (for pSCR CNS)
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1754 clrf xC+2
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1755 clrf xC+3
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1756 movff sub_c+0,xC+0
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1757 movff sub_c+1,xC+1 ; copy for comptibility
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1758 bra check_ppO2_check
0
heinrichsweikamp
parents:
diff changeset
1759
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1760 check_ppO2_non_pscr:
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1761 SAFE_2BYTE_COPY amb_pressure, xA
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1762 movlw d'10'
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1763 movwf xB+0
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1764 clrf xB+1
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1765 call div16x16 ; xC=p_amb/10
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1766
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1767 movff xC+0,xA+0
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1768 movff xC+1,xA+1
0
heinrichsweikamp
parents:
diff changeset
1769 movff char_I_O2_ratio,xB+0 ; =O2 ratio
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1770 clrf xB+1
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1771 call mult16x16 ; char_I_O2_ratio * p_amb/10
0
heinrichsweikamp
parents:
diff changeset
1772
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 473
diff changeset
1773 check_ppO2_check:
0
heinrichsweikamp
parents:
diff changeset
1774 ; Check very high ppO2 manually
heinrichsweikamp
parents:
diff changeset
1775 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar?
heinrichsweikamp
parents:
diff changeset
1776 bra check_ppO2_1 ; Yes, display Value!
heinrichsweikamp
parents:
diff changeset
1777 ; Check if ppO2>3,30bar
heinrichsweikamp
parents:
diff changeset
1778 btfsc xC+1,7
heinrichsweikamp
parents:
diff changeset
1779 bra check_ppO2_1 ; Yes!
heinrichsweikamp
parents:
diff changeset
1780
heinrichsweikamp
parents:
diff changeset
1781 ; Check for low ppo2
heinrichsweikamp
parents:
diff changeset
1782 movff xC+0,sub_b+0
heinrichsweikamp
parents:
diff changeset
1783 movff xC+1,sub_b+1
heinrichsweikamp
parents:
diff changeset
1784 movff opt_ppO2_min,WREG
heinrichsweikamp
parents:
diff changeset
1785 mullw d'100' ; opt_ppO2_min*100
heinrichsweikamp
parents:
diff changeset
1786 movff PRODL,sub_a+0
heinrichsweikamp
parents:
diff changeset
1787 movff PRODH,sub_a+1
heinrichsweikamp
parents:
diff changeset
1788 call subU16
heinrichsweikamp
parents:
diff changeset
1789 btfsc neg_flag
heinrichsweikamp
parents:
diff changeset
1790 bra check_ppO2_0 ; Not too low
heinrichsweikamp
parents:
diff changeset
1791 ; ppO2 low
376
e99bb91f6f92 CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents: 352
diff changeset
1792 rcall check_ppo2_display ; display if not already shown in custom view
0
heinrichsweikamp
parents:
diff changeset
1793 movlw d'4' ; Type of Alarm (ppO2 low)
heinrichsweikamp
parents:
diff changeset
1794 movwf AlarmType ; Copy to Alarm Register
heinrichsweikamp
parents:
diff changeset
1795 bsf event_occured ; Set Event Flag
heinrichsweikamp
parents:
diff changeset
1796 bsf warning_active ; Set Warning flag
heinrichsweikamp
parents:
diff changeset
1797 return ; Done.
heinrichsweikamp
parents:
diff changeset
1798
heinrichsweikamp
parents:
diff changeset
1799 check_ppO2_0:
heinrichsweikamp
parents:
diff changeset
1800 ; Check if ppO2 should be displayed
335
3d43da7acfe1 Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents: 318
diff changeset
1801 movlw .0
3d43da7acfe1 Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents: 318
diff changeset
1802 TSTOSS opt_showppo2 ; 0=no, 1=always show
0
heinrichsweikamp
parents:
diff changeset
1803 movlw ppo2_display_high
heinrichsweikamp
parents:
diff changeset
1804 mullw d'100' ; ppo2_display_high*100
heinrichsweikamp
parents:
diff changeset
1805 movff PRODL,sub_a+0
heinrichsweikamp
parents:
diff changeset
1806 movff PRODH,sub_a+1
heinrichsweikamp
parents:
diff changeset
1807 call subU16
heinrichsweikamp
parents:
diff changeset
1808 btfss neg_flag
heinrichsweikamp
parents:
diff changeset
1809 return ; No Display, no warning
heinrichsweikamp
parents:
diff changeset
1810 ; Display ppO2, but warn?
376
e99bb91f6f92 CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents: 352
diff changeset
1811 rcall check_ppo2_display ; display if not already shown in custom view
0
heinrichsweikamp
parents:
diff changeset
1812
heinrichsweikamp
parents:
diff changeset
1813 ;check if we are within our warning thresholds!
heinrichsweikamp
parents:
diff changeset
1814 movff xC+0,sub_b+0
heinrichsweikamp
parents:
diff changeset
1815 movff xC+1,sub_b+1
heinrichsweikamp
parents:
diff changeset
1816 movff opt_ppO2_max,WREG ; PPO2 Max for MOD calculation and color coding in divemode
69
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 55
diff changeset
1817 addlw .1 ; e.g. >1.60
0
heinrichsweikamp
parents:
diff changeset
1818 mullw d'100' ; opt_ppO2_max*100
heinrichsweikamp
parents:
diff changeset
1819 movff PRODL,sub_a+0
heinrichsweikamp
parents:
diff changeset
1820 movff PRODH,sub_a+1
heinrichsweikamp
parents:
diff changeset
1821 call subU16
heinrichsweikamp
parents:
diff changeset
1822 btfss neg_flag
heinrichsweikamp
parents:
diff changeset
1823 return ; Done. Not too high
heinrichsweikamp
parents:
diff changeset
1824 movlw d'5' ; Type of Alarm (ppO2 high)
heinrichsweikamp
parents:
diff changeset
1825 movwf AlarmType ; Copy to Alarm Register
heinrichsweikamp
parents:
diff changeset
1826 bsf event_occured ; Set Event Flag
heinrichsweikamp
parents:
diff changeset
1827 bsf warning_active ; Set Warning flag
heinrichsweikamp
parents:
diff changeset
1828 return ; Done.
heinrichsweikamp
parents:
diff changeset
1829
heinrichsweikamp
parents:
diff changeset
1830 check_ppO2_1: ; ppO2 very high
376
e99bb91f6f92 CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents: 352
diff changeset
1831 rcall check_ppo2_display ; display if not already shown in custom view
0
heinrichsweikamp
parents:
diff changeset
1832 movlw d'5' ; Type of Alarm
heinrichsweikamp
parents:
diff changeset
1833 movwf AlarmType ; Copy to Alarm Register
heinrichsweikamp
parents:
diff changeset
1834 bsf event_occured ; Set Event Flag
heinrichsweikamp
parents:
diff changeset
1835 bsf warning_active ; Set Warning flag
heinrichsweikamp
parents:
diff changeset
1836 return ; Done.
heinrichsweikamp
parents:
diff changeset
1837
376
e99bb91f6f92 CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents: 352
diff changeset
1838 check_ppo2_display:
e99bb91f6f92 CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents: 352
diff changeset
1839 movlw .9
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1840 cpfseq menupos3 ; ppO2 shown in Custom View 9?
376
e99bb91f6f92 CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents: 352
diff changeset
1841 bra check_ppO2_a ; No
e99bb91f6f92 CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents: 352
diff changeset
1842 return ; Yes, do not show twice (in custom view and in warning area)
e99bb91f6f92 CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents: 352
diff changeset
1843 check_ppO2_a:
471
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1844 movlw .11
472
4fdf6886004b CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents: 471
diff changeset
1845 cpfseq menupos3 ; ppO2 shown in Custom View 11?
471
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1846 bra check_ppO2_b ; No
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1847 return ; Yes, do not show twice (in custom view and in warning area)
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1848 check_ppO2_b:
482
c0ee33f1f399 New customview #12 for PSCR mode shows ppO2, O2 drop and lung ratio
heinrichsweikamp
parents: 480
diff changeset
1849 movlw .12
c0ee33f1f399 New customview #12 for PSCR mode shows ppO2, O2 drop and lung ratio
heinrichsweikamp
parents: 480
diff changeset
1850 cpfseq menupos3 ; ppO2 shown in Custom View 12?
c0ee33f1f399 New customview #12 for PSCR mode shows ppO2, O2 drop and lung ratio
heinrichsweikamp
parents: 480
diff changeset
1851 bra check_ppO2_c ; No
c0ee33f1f399 New customview #12 for PSCR mode shows ppO2, O2 drop and lung ratio
heinrichsweikamp
parents: 480
diff changeset
1852 return ; Yes, do not show twice (in custom view and in warning area)
c0ee33f1f399 New customview #12 for PSCR mode shows ppO2, O2 drop and lung ratio
heinrichsweikamp
parents: 480
diff changeset
1853 check_ppO2_c:
471
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1854 incf warning_counter,F ; increase counter
386
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1855 goto TFT_display_ppo2 ; Show ppO2 (and return)
376
e99bb91f6f92 CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents: 352
diff changeset
1856
0
heinrichsweikamp
parents:
diff changeset
1857 global check_cns_violation
heinrichsweikamp
parents:
diff changeset
1858 check_cns_violation:
heinrichsweikamp
parents:
diff changeset
1859 ; Check if CNS should be displayed
heinrichsweikamp
parents:
diff changeset
1860 movff int_O_CNS_fraction+1,lo ; copy into bank1
heinrichsweikamp
parents:
diff changeset
1861 tstfsz lo ; >255% ?
heinrichsweikamp
parents:
diff changeset
1862 bra check_cns_violation2 ; Yes
heinrichsweikamp
parents:
diff changeset
1863 movff int_O_CNS_fraction+0,lo ; copy into bank1
heinrichsweikamp
parents:
diff changeset
1864
heinrichsweikamp
parents:
diff changeset
1865 movlw cns_warning_high ; cns_warning_high
heinrichsweikamp
parents:
diff changeset
1866 subwf lo,W
heinrichsweikamp
parents:
diff changeset
1867 btfsc STATUS,C
heinrichsweikamp
parents:
diff changeset
1868 bsf warning_active ; Set Warning flag
heinrichsweikamp
parents:
diff changeset
1869
heinrichsweikamp
parents:
diff changeset
1870 movlw cns_display_high ; cns_display_high
heinrichsweikamp
parents:
diff changeset
1871 subwf lo,W
heinrichsweikamp
parents:
diff changeset
1872 btfss STATUS,C
heinrichsweikamp
parents:
diff changeset
1873 return ; No Display, no warning
heinrichsweikamp
parents:
diff changeset
1874 ; Display CNS
471
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1875 bra display_cns_violation
0
heinrichsweikamp
parents:
diff changeset
1876 check_cns_violation2:
471
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1877 bsf warning_active ; Set Warning flag
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1878 display_cns_violation: ; Show CNS if not shown in the custom view
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1879 movlw .11
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1880 cpfseq menupos3 ; CNS shown in Custom View?
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1881 bra display_cns_violation2 ; No
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1882 return ; Yes, do not show twice (in custom view and in warning area)
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1883 display_cns_violation2:
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1884 incf warning_counter,F ; increase counter
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1885 goto TFT_display_cns ; Show CNS (and return)
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1886
9edb1359ce43 NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents: 444
diff changeset
1887
0
heinrichsweikamp
parents:
diff changeset
1888 global check_and_store_gf_violation
heinrichsweikamp
parents:
diff changeset
1889 check_and_store_gf_violation:
heinrichsweikamp
parents:
diff changeset
1890 movff char_O_gradient_factor,lo ; gradient factor absolute (Non-GF model)
heinrichsweikamp
parents:
diff changeset
1891 movff char_I_deco_model,hi
heinrichsweikamp
parents:
diff changeset
1892 decfsz hi,F ; jump over next line if char_I_deco_model == 1
heinrichsweikamp
parents:
diff changeset
1893 movff char_O_relative_gradient_GF,lo ; gradient factor relative (GF model)
heinrichsweikamp
parents:
diff changeset
1894
heinrichsweikamp
parents:
diff changeset
1895 movlw gf_warning_high
heinrichsweikamp
parents:
diff changeset
1896 cpfsgt lo
heinrichsweikamp
parents:
diff changeset
1897 bra check_and_store_gf_violation2 ; No warning
heinrichsweikamp
parents:
diff changeset
1898 movlw d'2' ; Type of Alarm
heinrichsweikamp
parents:
diff changeset
1899 movwf AlarmType ; Copy to Alarm Register
heinrichsweikamp
parents:
diff changeset
1900 bsf event_occured ; Set Event Flag
heinrichsweikamp
parents:
diff changeset
1901 bsf warning_active ; Set Warning flag
heinrichsweikamp
parents:
diff changeset
1902 check_and_store_gf_violation2:
heinrichsweikamp
parents:
diff changeset
1903 movlw gf_display_high
heinrichsweikamp
parents:
diff changeset
1904 cpfsgt lo
heinrichsweikamp
parents:
diff changeset
1905 return ; No Display, no warning
heinrichsweikamp
parents:
diff changeset
1906 ; Display GF
heinrichsweikamp
parents:
diff changeset
1907 incf warning_counter,F ; increase counter
386
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1908 goto TFT_warning_gf ; Show GF Warning (and return)
0
heinrichsweikamp
parents:
diff changeset
1909
heinrichsweikamp
parents:
diff changeset
1910 warn_agf:
heinrichsweikamp
parents:
diff changeset
1911 incf warning_counter,F ; increase counter
386
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1912 goto TFT_warning_agf ; Show aGF warning (and return)
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 138
diff changeset
1913
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 138
diff changeset
1914 warn_fallback:
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 138
diff changeset
1915 incf warning_counter,F ; increase counter
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 138
diff changeset
1916 bsf warning_active ; Set Warning flag
386
3c55627d5f8f some cleanups, jump to 1.90 stable
heinrichsweikamp
parents: 385
diff changeset
1917 goto TFT_warning_fallback ; Show fallback warning (and return)
0
heinrichsweikamp
parents:
diff changeset
1918
heinrichsweikamp
parents:
diff changeset
1919
heinrichsweikamp
parents:
diff changeset
1920 END