annotate code_part1/OSTC_code_asm_part1/simulator.asm @ 230:9406a5b0ba5e

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