Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/simulator.asm @ 224:49c90c5d9603
Gas usage
+ Show after last page of decoplan.
+ Units in 0.1 litters (or bars), hence 16bits.
+ Define CF#56 and CF#57, defaults to 20.0 l/min.
+ Go RED if volume > 6553.5 (saturated).
+ Calculate gas usage at bottom of ascent (safe bet).
+ Fix when first gas is not Gas1.
+ BUGFIX gas usage: first gas is not in the sorted gaslist (in general).
KNOWN BUG: wrong result if the gaslist is not sorted, or first gas do have a depth > 0.
author | JeanDo |
---|---|
date | Thu, 03 Mar 2011 15:16:23 +0100 |
parents | 0a3ca358c684 |
children | 2dc4a7340510 |
rev | line source |
---|---|
0 | 1 |
2 ; OSTC - diving computer code | |
3 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
4 | |
5 ; This program is free software: you can redistribute it and/or modify | |
6 ; it under the terms of the GNU General Public License as published by | |
7 ; the Free Software Foundation, either version 3 of the License, or | |
8 ; (at your option) any later version. | |
9 | |
10 ; This program is distributed in the hope that it will be useful, | |
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 ; GNU General Public License for more details. | |
14 | |
15 ; You should have received a copy of the GNU General Public License | |
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | |
18 | |
19 ; menu "Simulator" | |
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
21 ; written: 081210 | |
22 ; last updated: 081210 | |
23 ; known bugs: | |
24 ; ToDo: | |
25 | |
26 menu_simulator: | |
27 movlw d'1' | |
28 movwf logbook_temp1 ; Bottom time | |
29 movlw d'15' | |
30 movwf logbook_temp2 ; Max. Depth | |
31 movlw d'1' | |
32 movwf menupos | |
33 | |
34 menu_simulator1: | |
35 clrf timeout_counter2 | |
36 bsf menubit | |
37 bsf cursor | |
49 | 38 call PLED_brightness_full ;max. brightness |
0 | 39 call PLED_ClearScreen |
40 call PLED_simulator_mask | |
41 | |
42 menu_simulator2: | |
43 bcf switch_left | |
44 bcf switch_right | |
45 bcf menubit2 | |
46 bcf menubit3 | |
47 call PLED_simulator_data | |
48 call PLED_menu_cursor | |
49 | |
50 menu_simulator_loop: | |
51 call check_switches_menu | |
52 menu_simulator_loop2: | |
53 btfss onesecupdate | |
54 bra menu_simulator_loop3 | |
55 | |
56 call timeout_surfmode | |
57 call set_dive_modes | |
58 call test_charger ; check if charger IC is active | |
59 call get_battery_voltage ; get battery voltage | |
60 | |
61 bcf onesecupdate ; End of one second tasks | |
62 | |
63 menu_simulator_loop3: | |
64 btfsc menubit2 | |
65 goto menu_simulator_do ; call submenu | |
66 | |
67 btfss menubit | |
35 | 68 goto menu_simulator_exit |
0 | 69 |
70 btfsc sleepmode | |
35 | 71 goto menu_simulator_exit |
0 | 72 |
73 btfsc divemode | |
74 goto restart ; exit menu, restart and enter divemode | |
75 | |
76 bra menu_simulator_loop | |
77 | |
78 menu_simulator_do: ; calls submenu | |
79 dcfsnz menupos,F | |
80 bra simulator_startdive | |
81 dcfsnz menupos,F | |
82 bra simulator_inc_bottomtime | |
83 dcfsnz menupos,F | |
84 bra simulator_inc_maxdepth | |
85 dcfsnz menupos,F | |
86 bra simulator_calc_deco | |
87 dcfsnz menupos,F | |
88 bra simulator_show_decoplan | |
35 | 89 menu_simulator_exit: |
0 | 90 movlw d'4' |
91 movwf menupos | |
92 goto more_menu2 ; exit... | |
93 | |
94 simulator_inc_bottomtime: | |
95 movlw d'2' | |
96 addwf logbook_temp1,F ; Here: Bottomtime in m | |
97 movlw d'199' | |
98 cpfslt logbook_temp1 | |
99 movwf logbook_temp1 | |
100 movlw d'2' | |
101 movwf menupos | |
102 bra menu_simulator2 | |
103 | |
104 simulator_inc_maxdepth: | |
105 movlw d'3' | |
106 addwf logbook_temp2,F ; Here: Maxdepth in m | |
107 movlw d'99' | |
108 cpfslt logbook_temp2 | |
109 movwf logbook_temp2 | |
110 movlw d'3' | |
111 movwf menupos | |
112 bra menu_simulator2 | |
113 | |
114 simulator_startdive: | |
33 | 115 ; Descent to -15m depth |
0 | 116 ; Set standalone_simulator flag (Displays Simulator menu during simulation by pressing ENTER button) |
117 ; Clear standalone_simulator after (any) dive | |
118 bsf simulatormode_active ; normal simulator mode | |
119 bsf standalone_simulator ; Standalone Simulator active | |
120 | |
121 movff logbook_temp2,xA+0 | |
122 clrf xA+1 | |
123 movlw d'100' | |
124 movwf xB+0 | |
125 clrf xB+1 | |
126 call mult16x16 ;xA*xB=xC ; Depth in m*100 | |
127 | |
62 | 128 movlw LOW d'1000' |
0 | 129 addwf xC+0,F |
62 | 130 movlw HIGH d'1000' |
131 addwfc xC+1,F ; add 1000mBar | |
132 | |
133 ; movf amb_pressure+0,W | |
134 ; addwf xC+0,F | |
135 ; movf amb_pressure+1,W | |
136 ; addwfc xC+1,F ; Add ambient pressure | |
137 ; | |
0 | 138 movff xC+0,sim_pressure+0 |
139 movff xC+1,sim_pressure+1 | |
140 | |
141 movff sim_pressure+0,amb_pressure+0 ; override readings with simulator values | |
142 movff sim_pressure+1,amb_pressure+1 | |
143 | |
144 bcf menubit2 | |
145 bcf menubit3 | |
146 bcf menubit | |
147 bcf switch_left | |
148 bcf switch_right | |
149 | |
150 call simulator_save_tissue_data ; Stores 32 floats "pre_tissue" into bank3 | |
151 | |
200 | 152 movlw d'3' ; Begin of deco cycle (reset table). |
153 movff WREG,char_O_deco_status ; Reset Deco module. | |
154 | |
0 | 155 bsf divemode ; Set divemode flag |
156 ostc_debug 'P' ; Sends debug-information to screen if debugmode active | |
157 goto diveloop ; Start Divemode | |
158 | |
159 simulator_show_decoplan: | |
124 | 160 call PLED_ClearScreen |
161 call PLED_simdata_screen | |
162 call divemenu_see_decoplan | |
163 | |
184 | 164 WIN_LEFT .0 |
165 call PLED_standard_color | |
166 | |
124 | 167 ; Display TTS, if any... |
168 | 168 movff int_O_ascenttime+0,lo |
169 movff int_O_ascenttime+1,hi | |
170 movf lo,W | |
171 iorwf hi,W | |
124 | 172 bz simulator_decoplan_notts |
184 | 173 |
124 | 174 WIN_TOP .160 |
184 | 175 lfsr FSR2, letter |
176 OUTPUTTEXT .85 ; TTS (for translation). | |
177 STRCAT ": " | |
178 bsf leftbind | |
179 output_16 | |
180 STRCAT_PRINT "'" | |
181 | |
182 simulator_decoplan_notts: | |
224 | 183 ; Print ambient pressure in DEBUG compile, because if might |
184 ; be usefull to calibrate decompression algorithm. | |
185 #ifdef __DEBUG | |
184 | 186 movff int_I_pres_surface+0,lo |
187 movff int_I_pres_surface+1,hi | |
188 | |
224 | 189 WIN_TOP .190 |
184 | 190 lfsr FSR2, letter |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
191 bsf leftbind |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
192 output_16 |
124 | 193 bcf leftbind |
184 | 194 STRCAT_PRINT " mbar" |
224 | 195 #endif |
124 | 196 |
197 WIN_INVERT .1 ; Init new Wordprocessor | |
198 DISPLAYTEXT .188 ; Sim. Results: | |
199 WIN_INVERT .0 ; Init new Wordprocessor | |
34 | 200 |
64 | 201 simulator_show_decoplan1: |
0 | 202 bcf switch_left |
203 bcf switch_right | |
204 simulator_show_decoplan2: | |
205 btfss onesecupdate | |
206 bra simulator_show_decoplan3 | |
207 | |
208 call timeout_surfmode | |
209 call set_dive_modes | |
210 call test_charger ; check if charger IC is active | |
211 call get_battery_voltage ; get battery voltage | |
212 | |
213 bcf onesecupdate ; End of one second tasks | |
214 | |
215 simulator_show_decoplan3: | |
64 | 216 btfsc switch_right |
0 | 217 bra simulator_show_decoplan4 ; Quit display |
218 | |
64 | 219 btfsc switch_left |
224 | 220 bra simulator_show_decoplan5 ; Next decoplan-page. |
0 | 221 |
222 btfsc sleepmode | |
223 goto more_menu | |
224 | |
225 btfsc divemode | |
226 goto restart ; exit menu, restart and enter divemode | |
227 | |
228 bra simulator_show_decoplan2 | |
229 | |
64 | 230 simulator_show_decoplan5: |
124 | 231 incf decoplan_page,F |
64 | 232 btfsc last_ceiling_gf_shown ; last ceiling shown? |
233 bra simulator_show_decoplan5_0 ; All done, clear and return | |
234 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
235 call PLED_decoplan ; Re-Draw Current page of GF Decoplan |
64 | 236 bra simulator_show_decoplan1 |
237 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
238 simulator_show_decoplan5_0: |
224 | 239 btfss display_see_deco |
240 bra simulator_show_decoplan4 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
241 bcf display_see_deco ; clear flag |
224 | 242 |
243 call deco_gas_volumes | |
244 movlb 1 | |
245 | |
246 call PLED_clear_divemode_menu ; Clear right part. | |
247 | |
248 movlw d'10' | |
249 movwf waitms_temp ; Row for gas list is .10+.25 | |
250 clrf wait_temp ; Gas counter | |
251 lfsr FSR0,int_O_gas_volumes ; Initialize indexed addressing. | |
252 | |
253 WIN_LEFT .90 ; Set column | |
254 | |
255 simulator_show_decoplan5_loop: | |
256 incf wait_temp,F ; Increment gas # | |
257 | |
258 movlw .25 | |
259 addwf waitms_temp,F ; Increase row position | |
260 movff waitms_temp,win_top ; Set Row | |
261 | |
262 movff POSTINC0,lo ; Read (16bit) result, low first, | |
263 movff POSTINC0,hi ; then high. | |
264 movf lo,W ; Null ? | |
265 iorwf hi,W | |
266 bz simulator_show_decoplan5_1 ; Skip printing. | |
267 | |
268 movf lo,W ; == 65535 (saturated ?) | |
269 iorwf hi,W | |
270 incf WREG | |
271 bnz simulator_show_decoplan5_2 | |
272 call PLED_warnings_color | |
273 STRCPY "> " | |
274 bra simulator_show_decoplan5_3 | |
275 | |
276 simulator_show_decoplan5_2: | |
277 call PLED_standard_color | |
278 STRCPY "= " | |
279 | |
280 simulator_show_decoplan5_3: | |
281 output_16dp .4 ; 1 decimal. | |
282 call word_processor ; No unit: can be bars or litters. | |
283 | |
284 ; Loop for all 5 gas | |
285 simulator_show_decoplan5_1: | |
286 movlw d'5' ; list all five gases | |
287 cpfseq wait_temp ; All gases shown? | |
288 bra simulator_show_decoplan5_loop ; No | |
289 | |
290 WIN_TOP .2 | |
291 WIN_LEFT .0 | |
292 WIN_INVERT 1 | |
293 STRCPY_PRINT "Gas usage: " | |
294 WIN_INVERT 0 | |
295 | |
296 bra simulator_show_decoplan1 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
297 |
0 | 298 simulator_show_decoplan4: |
299 movlw d'5' | |
300 movwf menupos | |
301 bra menu_simulator1 | |
302 | |
303 | |
304 simulator_calc_deco: | |
305 call diveloop_boot ; configure gases, etc. | |
306 | |
307 bsf simulatormode_active ; normal simulator mode | |
308 bsf standalone_simulator ; Standalone Simulator active | |
309 | |
224 | 310 ; Save dive parameters for gas volume estimation: |
311 movff logbook_temp2,char_I_bottom_depth | |
312 movff logbook_temp1,char_I_bottom_time | |
313 | |
0 | 314 |
197 | 315 movff logbook_temp2,xA+0 ; Bottom depth. |
0 | 316 clrf xA+1 |
317 movlw d'100' | |
318 movwf xB+0 | |
319 clrf xB+1 | |
320 call mult16x16 ;xA*xB=xC ; Depth in m*100 | |
321 | |
62 | 322 movlw LOW d'1000' |
0 | 323 addwf xC+0,F |
62 | 324 movlw HIGH d'1000' |
325 addwfc xC+1,F ; add 1000mBar | |
326 | |
0 | 327 movff xC+0,sim_pressure+0 |
328 movff xC+1,sim_pressure+1 | |
329 | |
330 movff sim_pressure+0,amb_pressure+0 ; override readings with simulator values | |
331 movff sim_pressure+1,amb_pressure+1 | |
332 | |
197 | 333 call simulator_save_tissue_data ; Stores 32 floats "pre_tissue" into bank3 |
0 | 334 |
124 | 335 call PLED_topline_box |
0 | 336 WIN_INVERT .1 |
197 | 337 DISPLAYTEXT .12 ; "Wait..." |
0 | 338 WIN_INVERT .0 |
339 | |
197 | 340 call divemode_check_decogases ; Checks for decogases and sets the gases |
341 call divemode_prepare_flags_for_deco | |
200 | 342 movlw d'3' ; Begin of deco cycle (reset table). |
197 | 343 movff WREG,char_O_deco_status ; Reset Deco module. |
344 | |
0 | 345 simulator_calc_deco_loop1: |
197 | 346 call deco_calc_hauptroutine ; calc_tissue |
347 movlb b'00000001' ; rambank 1 selected | |
32 | 348 |
124 | 349 movff char_O_deco_status,WREG |
350 tstfsz WREG ; deco_status=0 if decompression calculation done | |
197 | 351 bra simulator_calc_deco_loop1 ; Not finished |
0 | 352 |
31 | 353 movlw d'1' |
197 | 354 movff WREG,char_I_step_is_1min ; 1 minute mode |
32 | 355 |
356 simulator_calc_deco_loop2: | |
357 call PLED_simulator_data | |
197 | 358 btg LED_red |
32 | 359 |
197 | 360 call divemode_check_decogases ; Checks for decogases and sets the gases |
0 | 361 call divemode_prepare_flags_for_deco |
362 | |
116 | 363 call deco_calc_hauptroutine ; calc_tissue |
197 | 364 movlb b'00000001' ; rambank 1 selected |
365 ostc_debug 'C' ; Sends debug-information to screen if debugmode active | |
366 | |
367 decfsz logbook_temp1,F ; Decrement bottom time. | |
368 bra simulator_calc_deco_loop2 | |
32 | 369 |
370 movlw d'0' | |
197 | 371 movff WREG,char_I_step_is_1min ; 2 second deco mode |
372 | |
373 simulator_calc_deco2: | |
200 | 374 btg LED_red |
375 | |
197 | 376 call divemode_check_decogases ; Checks for decogases and sets the gases |
377 call divemode_prepare_flags_for_deco | |
32 | 378 |
197 | 379 call deco_calc_hauptroutine ; calc_tissue |
380 movlb b'00000001' ; rambank 1 selected | |
0 | 381 |
197 | 382 movff char_O_deco_status,WREG |
383 tstfsz WREG ; deco_status=0 if decompression calculation done | |
384 bra simulator_calc_deco2 ; Not finished | |
0 | 385 |
197 | 386 ; Finished |
21 | 387 bsf LED_red |
0 | 388 |
389 call simulator_restore_tissue_data ; Restore 32 floats "pre_tissue" from bank3 | |
390 | |
197 | 391 bcf simulatormode_active ; normal simulator mode |
392 bcf standalone_simulator ; Standalone Simulator active | |
0 | 393 |
394 WAITMS d'250' | |
395 WAITMS d'250' | |
197 | 396 WAITMS d'250' ; Wait for Pressure Sensor to get real pressure again... |
0 | 397 |
197 | 398 bcf LED_red |
0 | 399 |
197 | 400 movlw d'5' ; Pre-Set Cursor to "Show Decoplan" |
401 movwf menupos | |
224 | 402 movff char_I_bottom_time,logbook_temp1; restore bottom time. |
197 | 403 bra menu_simulator1 ; Done. |
49 | 404 |
405 simulator_save_tissue_data: | |
406 bsf restore_deco_data ; Set restore flag | |
407 ostc_debug 'S' ; Sends debug-information to screen if debugmode active | |
116 | 408 call deco_push_tissues_to_vault |
49 | 409 movlb 0x01 ; Back to RAM Bank1 |
410 ostc_debug 'T' ; Sends debug-information to screen if debugmode active | |
411 return | |
412 | |
413 simulator_restore_tissue_data: | |
414 bcf restore_deco_data ; clear restore flag | |
415 ostc_debug 'S' ; Sends debug-information to screen if debugmode active | |
116 | 416 call deco_pull_tissues_from_vault |
49 | 417 movlb 0x01 ; Back to RAM Bank1 |
418 ostc_debug 'T' ; Sends debug-information to screen if debugmode active | |
419 | |
420 ostc_debug 'G' ; Sends debug-information to screen if debugmode active | |
116 | 421 call deco_calc_desaturation_time ; calculate desaturation time |
49 | 422 movlb b'00000001' ; select ram bank 1 |
423 call calculate_noflytime ; Calc NoFly time | |
424 ostc_debug 'H' ; Sends debug-information to screen if debugmode active | |
425 | |
426 ; Calculate CNS | |
116 | 427 call deco_calc_CNS_fraction ; calculate CNS |
49 | 428 movlb b'00000001' ; rambank 1 selected |
429 return |