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
|
|
152 bsf divemode ; Set divemode flag
|
|
153 ostc_debug 'P' ; Sends debug-information to screen if debugmode active
|
|
154 goto diveloop ; Start Divemode
|
|
155
|
|
156 simulator_show_decoplan:
|
|
157 call PLED_ClearScreen
|
34
|
158 call PLED_simdata_screen
|
69
|
159 call divemode_copy_decolist ;copy gf_decolist (0x250:.32) to gf_decolist_copy (0x0E0:.32)
|
0
|
160 call divemenu_see_decoplan
|
63
|
161
|
68
|
162 ;call enable_rs232
|
|
163 ; lfsr FSR0,0x250
|
|
164 ; movlw 0x20
|
|
165 ; movwf wait_temp
|
|
166 ;xy: ; Clear Deco list
|
|
167 ; movff POSTINC0,TXREG
|
|
168 ; call rs232_wait_tx
|
|
169 ; decfsz wait_temp,F
|
|
170 ; bra xy
|
|
171 ; movff char_O_array_decodepth+0,TXREG
|
|
172 ;
|
63
|
173
|
0
|
174
|
34
|
175 WIN_INVERT .1 ; Init new Wordprocessor
|
|
176 DISPLAYTEXT .188 ; Sim. Results:
|
|
177 WIN_INVERT .0 ; Init new Wordprocessor
|
|
178
|
64
|
179 simulator_show_decoplan1:
|
0
|
180 bcf switch_left
|
|
181 bcf switch_right
|
|
182 simulator_show_decoplan2:
|
|
183 btfss onesecupdate
|
|
184 bra simulator_show_decoplan3
|
|
185
|
|
186 call timeout_surfmode
|
|
187 call set_dive_modes
|
|
188 call test_charger ; check if charger IC is active
|
|
189 call get_battery_voltage ; get battery voltage
|
|
190
|
|
191 bcf onesecupdate ; End of one second tasks
|
|
192
|
|
193 simulator_show_decoplan3:
|
64
|
194 btfsc switch_right
|
0
|
195 bra simulator_show_decoplan4 ; Quit display
|
|
196
|
64
|
197 btfsc switch_left
|
|
198 bra simulator_show_decoplan5 ; Quit display or new Decoplan-Page (GF Mode only)
|
0
|
199
|
|
200 btfsc sleepmode
|
|
201 goto more_menu
|
|
202
|
|
203 btfsc divemode
|
|
204 goto restart ; exit menu, restart and enter divemode
|
|
205
|
|
206 bra simulator_show_decoplan2
|
|
207
|
64
|
208 simulator_show_decoplan5:
|
|
209 btfsc multi_gf_display ; Next Page in Multi-GF Screen?
|
|
210 bra simulator_show_decoplan5_1 ; Yes!
|
|
211 simulator_show_decoplan5_0:
|
|
212
|
|
213 bcf display_see_deco ; clear flag
|
|
214 bra simulator_show_decoplan4 ; Quit
|
|
215
|
|
216 simulator_show_decoplan5_1:
|
|
217 incf temp8,F
|
|
218 btfsc last_ceiling_gf_shown ; last ceiling shown?
|
|
219 bra simulator_show_decoplan5_0 ; All done, clear and return
|
|
220
|
|
221 call PLED_decoplan_gf_page_current ; Re-Draw Current page of GF Decoplan
|
|
222 bra simulator_show_decoplan1
|
|
223
|
0
|
224 simulator_show_decoplan4:
|
|
225 movlw d'5'
|
|
226 movwf menupos
|
|
227 bra menu_simulator1
|
|
228
|
|
229
|
|
230 simulator_calc_deco:
|
|
231 call diveloop_boot ; configure gases, etc.
|
|
232
|
|
233 bsf simulatormode_active ; normal simulator mode
|
|
234 bsf standalone_simulator ; Standalone Simulator active
|
|
235
|
|
236
|
|
237 movff logbook_temp2,xA+0
|
|
238 clrf xA+1
|
|
239 movlw d'100'
|
|
240 movwf xB+0
|
|
241 clrf xB+1
|
|
242 call mult16x16 ;xA*xB=xC ; Depth in m*100
|
|
243
|
62
|
244 movlw LOW d'1000'
|
0
|
245 addwf xC+0,F
|
62
|
246 movlw HIGH d'1000'
|
|
247 addwfc xC+1,F ; add 1000mBar
|
|
248
|
|
249 ; movf amb_pressure+0,W
|
|
250 ; addwf xC+0,F
|
|
251 ; movf amb_pressure+1,W
|
|
252 ; addwfc xC+1,F ; Add ambient pressure
|
|
253 ;
|
0
|
254 movff xC+0,sim_pressure+0
|
|
255 movff xC+1,sim_pressure+1
|
|
256
|
|
257 movff sim_pressure+0,amb_pressure+0 ; override readings with simulator values
|
|
258 movff sim_pressure+1,amb_pressure+1
|
|
259
|
|
260 call simulator_save_tissue_data ; Stores 32 floats "pre_tissue" into bank3
|
|
261
|
|
262 WIN_INVERT .1
|
|
263 DISPLAYTEXT .12 ;" Wait.."
|
|
264 WIN_INVERT .0
|
|
265
|
|
266 simulator_calc_deco_loop1:
|
32
|
267 call divemode_check_decogases ; Checks for decogases and sets the gases
|
|
268 call divemode_prepare_flags_for_deco
|
|
269
|
|
270 call deco_main_calc_hauptroutine ; calc_tissue
|
|
271 movlb b'00000001' ; rambank 1 selected
|
|
272
|
|
273 movff char_O_deco_status,deco_status ;
|
|
274 tstfsz deco_status ; deco_status=0 if decompression calculation done
|
|
275 bra simulator_calc_deco_loop1 ; Not finished
|
0
|
276
|
31
|
277 movlw d'1'
|
|
278 movff WREG,char_I_step_is_1min ; 1 minute mode
|
32
|
279
|
|
280 movlw d'255'
|
|
281 movff WREG,char_O_deco_status ; Reset Deco module
|
|
282
|
|
283 simulator_calc_deco_loop2:
|
69
|
284
|
32
|
285 call PLED_simulator_data
|
|
286
|
|
287 btg LED_red
|
31
|
288
|
0
|
289 call divemode_check_decogases ; Checks for decogases and sets the gases
|
|
290 call divemode_prepare_flags_for_deco
|
|
291
|
|
292 call deco_main_calc_hauptroutine ; calc_tissue
|
|
293 movlb b'00000001' ; rambank 1 selected
|
|
294 ostc_debug 'C' ; Sends debug-information to screen if debugmode active
|
|
295
|
|
296 decfsz logbook_temp1,F
|
32
|
297 bra simulator_calc_deco_loop2
|
|
298
|
|
299 movlw d'0'
|
|
300 movff WREG,char_I_step_is_1min ; 2 second deco mode
|
|
301
|
|
302 movlw d'255'
|
|
303 movff WREG,char_O_deco_status ; Reset Deco module
|
0
|
304
|
|
305 bra simulator_calc_deco2 ; Not finished
|
|
306
|
|
307 simulator_calc_deco3:
|
21
|
308 bsf LED_red
|
0
|
309
|
|
310 call simulator_restore_tissue_data ; Restore 32 floats "pre_tissue" from bank3
|
|
311
|
|
312 bcf simulatormode_active ; normal simulator mode
|
|
313 bcf standalone_simulator ; Standalone Simulator active
|
|
314
|
|
315 WAITMS d'250'
|
|
316 WAITMS d'250'
|
|
317 WAITMS d'250' ; Wait for Pressure Sensor to get real pressure again...
|
|
318
|
21
|
319 bcf LED_red
|
0
|
320
|
|
321 movlw d'1'
|
|
322 movwf logbook_temp1 ; Bottom time>0!
|
|
323
|
|
324 movlw d'5' ; Pre-Set Cursor to "Show Decoplan"
|
|
325 movwf menupos
|
|
326 bra menu_simulator1 ; Done.
|
|
327
|
|
328 simulator_calc_deco2:
|
|
329 call divemode_check_decogases ; Checks for decogases and sets the gases
|
|
330 call divemode_prepare_flags_for_deco
|
|
331
|
|
332 call deco_main_calc_hauptroutine ; calc_tissue
|
|
333 movlb b'00000001' ; rambank 1 selected
|
|
334
|
|
335 movff char_O_deco_status,deco_status ;
|
|
336 tstfsz deco_status ; deco_status=0 if decompression calculation done
|
|
337 bra simulator_calc_deco2 ; Not finished
|
49
|
338 bra simulator_calc_deco3 ; finished!
|
|
339
|
|
340
|
|
341 simulator_save_tissue_data:
|
|
342 bsf restore_deco_data ; Set restore flag
|
|
343 ostc_debug 'S' ; Sends debug-information to screen if debugmode active
|
|
344 call main_push_tissues_to_vault
|
|
345 movlb 0x01 ; Back to RAM Bank1
|
|
346 ostc_debug 'T' ; Sends debug-information to screen if debugmode active
|
|
347 return
|
|
348
|
|
349 simulator_restore_tissue_data:
|
|
350 bcf restore_deco_data ; clear restore flag
|
|
351 ostc_debug 'S' ; Sends debug-information to screen if debugmode active
|
|
352 call main_pull_tissues_from_vault
|
|
353 movlb 0x01 ; Back to RAM Bank1
|
|
354 ostc_debug 'T' ; Sends debug-information to screen if debugmode active
|
|
355
|
|
356 ostc_debug 'G' ; Sends debug-information to screen if debugmode active
|
|
357 call deco_main_calc_desaturation_time ; calculate desaturation time
|
|
358 movlb b'00000001' ; select ram bank 1
|
|
359 call calculate_noflytime ; Calc NoFly time
|
|
360 ostc_debug 'H' ; Sends debug-information to screen if debugmode active
|
|
361
|
|
362 ; Calculate CNS
|
|
363 call main_calc_CNS_fraction ; calculate CNS
|
|
364 movlb b'00000001' ; rambank 1 selected
|
|
365 return
|