Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/outputs.asm @ 793:55bd11e07d9f
BUGFIX: Surface interval was paused during simulator
author | heinrichsweikamp |
---|---|
date | Sun, 28 Sep 2014 20:56:16 +0200 |
parents | a652b0ff4dcf |
children | 7f3f79e53f66 |
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 ; routines for display outputs | |
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
21 ; written: 15/01/05 | |
124 | 22 ; |
23 ; History: | |
24 ; 2008-06-06 [MH] last updated | |
25 ; 2010-12-31 [jDG] Multi-page display for GF decoplan | |
128 | 26 ; 2011-01-04 [jDG] Saturation graphs in customview divemode |
124 | 27 ; |
0 | 28 ; known bugs: |
29 ; ToDo: More comments | |
30 | |
681 | 31 global DISP_divemask_color |
32 DISP_divemask_color: | |
25 | 33 GETCUSTOM8 d'36' ; Divemask output color |
681 | 34 bra DISP_standard_color_0 |
35 | |
36 global DISP_warnings_color | |
37 DISP_warnings_color: | |
25 | 38 GETCUSTOM8 d'37' ; Warnings output color |
681 | 39 bra DISP_standard_color_0 |
40 | |
41 global DISP_standard_color | |
42 DISP_standard_color: | |
29 | 43 GETCUSTOM8 d'35' ; Standard output color |
681 | 44 DISP_standard_color_0: ; Common entry point |
45 movwf DISPLAY1_temp ; copy | |
29 | 46 movlw d'0' |
681 | 47 cpfseq DISPLAY1_temp |
48 bra DISP_standard_color_1 | |
49 bra DISP_standard_color2 | |
50 DISP_standard_color_1: | |
29 | 51 movlw d'4' |
681 | 52 cpfseq DISPLAY1_temp |
53 bra DISP_standard_color_2 | |
54 bra DISP_standard_color2 | |
55 DISP_standard_color_2: | |
29 | 56 movlw d'8' |
681 | 57 cpfseq DISPLAY1_temp |
58 bra DISP_standard_color_3 | |
59 bra DISP_standard_color2 | |
60 DISP_standard_color_3: | |
29 | 61 movlw d'192' |
681 | 62 cpfseq DISPLAY1_temp |
63 bra DISP_standard_color_4 | |
64 bra DISP_standard_color2 | |
65 DISP_standard_color_4: | |
29 | 66 movlw d'196' |
681 | 67 cpfseq DISPLAY1_temp |
68 bra DISP_standard_color_5 | |
69 bra DISP_standard_color2 | |
70 DISP_standard_color_5: | |
29 | 71 movlw d'200' |
681 | 72 cpfseq DISPLAY1_temp |
73 bra DISP_standard_color_6 | |
74 bra DISP_standard_color2 | |
75 DISP_standard_color_6: | |
76 movf DISPLAY1_temp,W ; Color should be OK... | |
77 call DISP_set_color | |
29 | 78 return |
681 | 79 DISP_standard_color2: |
77 | 80 movlw 0xFF ; Force full white. |
681 | 81 call DISP_set_color |
25 | 82 return |
3 | 83 |
681 | 84 DISP_color_code macro color_code_temp |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
85 movlw color_code_temp |
681 | 86 call DISP_color_code1 |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
87 endm |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
88 |
681 | 89 DISP_color_code1: ; Color-codes the output, if required |
142 | 90 dcfsnz WREG |
681 | 91 bra DISP_color_code_depth ; CF43 [mbar], 16Bit |
142 | 92 dcfsnz WREG |
681 | 93 bra DISP_color_code_cns ; CF44 [%] |
142 | 94 dcfsnz WREG |
681 | 95 bra DISP_color_code_gf ; CF45 [%] |
142 | 96 dcfsnz WREG |
681 | 97 bra DISP_color_code_ppo2 ; CF46 [cbar] |
142 | 98 dcfsnz WREG |
681 | 99 bra DISP_color_code_velocity ; CF47 [m/min] |
142 | 100 dcfsnz WREG |
681 | 101 bra DISP_color_code_ceiling ; Show warning if CF41=1 and current depth>shown ceiling |
142 | 102 dcfsnz WREG |
681 | 103 bra DISP_color_code_gaslist ; Color-code current row in Gaslist (%O2 in "EEDATA") |
104 | |
105 | |
106 DISP_color_code_gaslist: ; %O2 in "EEDATA" | |
74 | 107 ; Check very high ppO2 manually |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
108 SAFE_2BYTE_COPY amb_pressure,xA |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
109 movlw d'10' |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
110 movwf xB+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
111 clrf xB+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
112 call div16x16 ; xC=p_amb/10 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
113 movff xC+0,xA+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
114 movff xC+1,xA+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
115 movff EEDATA,xB+0 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
116 clrf xB+1 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
117 call mult16x16 ; EEDATA * p_amb/10 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
118 |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
119 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? |
681 | 120 bra DISP_color_code_gaslist1 ; Yes, warn in warning color |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
121 ; Check if ppO2>3,30bar |
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
122 btfsc xC+1,7 |
681 | 123 bra DISP_color_code_gaslist1 ; Yes, warn in warning color |
74 | 124 |
125 movff xC+0,sub_a+0 | |
126 movff xC+1,sub_a+1 | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
127 GETCUSTOM8 d'46' ; color-code ppO2 warning [cbar] |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
128 mullw d'100' ; ppo2_warning_high*100 |
74 | 129 movff PRODL,sub_b+0 |
130 movff PRODH,sub_b+1 | |
131 call sub16 ; sub_c = sub_a - sub_b | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
132 btfss neg_flag |
681 | 133 bra DISP_color_code_gaslist1; too high -> Warning Color! |
134 call DISP_standard_color | |
74 | 135 return |
136 | |
681 | 137 DISP_color_code_gaslist1: |
138 call DISP_warnings_color | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
139 return |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
140 |
681 | 141 DISP_color_code_ceiling: |
69 | 142 GETCUSTOM8 d'40' ; =1: Warn at all? |
143 movwf lo | |
144 movlw d'1' | |
145 cpfseq lo ; =1? | |
681 | 146 bra DISP_color_code_ceiling1 ; No, Set to default color |
69 | 147 |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
148 SAFE_2BYTE_COPY rel_pressure, lo |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
149 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
296 | 150 movff hi,xA+1 |
151 movff lo,xA+0 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
152 movff char_O_first_deco_depth,lo ; Ceiling in m |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
153 decf lo,F ; -1 |
69 | 154 movlw LOW d'100' |
155 movwf xB+0 | |
156 clrf xB+1 ; Devide/100 -> xC+0 = Depth in m | |
157 call div16x16 ; xA/xB=xC with xA as remainder | |
158 movf xC+0,W ; Depth in m | |
159 subwf lo,W | |
160 btfsc STATUS,C | |
681 | 161 bra DISP_color_code_ceiling2 ; Set to warning color |
162 DISP_color_code_ceiling1: | |
163 call DISP_standard_color | |
69 | 164 return |
681 | 165 DISP_color_code_ceiling2: |
166 call DISP_warnings_color | |
69 | 167 return |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
168 |
681 | 169 DISP_color_code_depth: |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
170 movff hi,hi_temp |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
171 movff lo,lo_temp |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
172 SAFE_2BYTE_COPY rel_pressure, lo |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
173 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
174 movff lo,sub_a+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
175 movff hi,sub_a+1 |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
176 GETCUSTOM15 d'43' ; Depth warn [mbar] |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
177 movff lo,sub_b+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
178 movff hi,sub_b+1 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
179 call sub16 ; sub_c = sub_a - sub_b |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
180 btfss neg_flag |
681 | 181 bra DISP_color_code_depth2; Set to warning color |
182 call DISP_standard_color | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
183 movff hi_temp,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
184 movff lo_temp,lo ; Restore hi, lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
185 return |
681 | 186 DISP_color_code_depth2: |
187 call DISP_warnings_color | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
188 movff hi_temp,hi |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
189 movff lo_temp,lo ; Restore hi, lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
190 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
191 |
681 | 192 DISP_color_code_cns: |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
193 movff char_O_CNS_fraction,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
194 GETCUSTOM8 d'44' ; CNS Warn [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
195 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
196 btfsc STATUS,C |
681 | 197 bra DISP_color_code_cns2 ; Set to warning color |
198 call DISP_standard_color | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
199 return |
681 | 200 DISP_color_code_cns2: |
201 call DISP_warnings_color | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
202 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
203 |
681 | 204 DISP_color_code_gf: |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
205 movff char_O_gradient_factor,lo ; gradient factor |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
206 GETCUSTOM8 d'45' ; GF Warn [%] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
207 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
208 btfsc STATUS,C |
681 | 209 bra DISP_color_code_gf2 ; Set to warning color |
210 call DISP_standard_color | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
211 return |
681 | 212 DISP_color_code_gf2: |
213 call DISP_warnings_color | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
214 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
215 |
681 | 216 DISP_color_code_ppo2: |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
217 ; Check if ppO2>6,55bar |
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
218 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? |
681 | 219 bra DISP_color_code_ppo22 ; Yes, warn in warning color |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
220 ; Check if ppO2>3,30bar |
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
221 btfsc xC+1,7 |
681 | 222 bra DISP_color_code_ppo22 ; Yes, warn in warning color |
74 | 223 |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
224 movff xC+0,sub_a+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
225 movff xC+1,sub_a+1 |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
226 GETCUSTOM8 d'46' ; color-code ppO2 warning [cbar] |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
227 mullw d'100' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
228 movff PRODL,sub_b+0 |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
229 movff PRODH,sub_b+1 |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
230 call sub16 ; sub_c = sub_a - sub_b |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
231 btfss neg_flag |
681 | 232 bra DISP_color_code_ppo22; Set to warning color |
233 call DISP_standard_color | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
234 return |
681 | 235 DISP_color_code_ppo22: |
236 call DISP_warnings_color | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
237 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
238 |
681 | 239 DISP_color_code_velocity: |
47 | 240 btfss neg_flag ; Ignore for ascend! |
681 | 241 bra DISP_color_code_velocity1 ; Skip check! |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
242 movff divA+0,lo |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
243 GETCUSTOM8 d'47' ; Velocity warn [m/min] |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
244 subwf lo,W |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
245 btfsc STATUS,C |
681 | 246 bra DISP_color_code_velocity2 ; Set to warning color |
247 DISP_color_code_velocity1: | |
248 call DISP_standard_color | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
249 return |
681 | 250 DISP_color_code_velocity2: |
251 call DISP_warnings_color | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
252 return |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
26
diff
changeset
|
253 |
142 | 254 ostc_debug macro value |
255 movlw value | |
0 | 256 call ostc_debug1 |
257 endm | |
258 | |
259 ostc_debug1: | |
260 movff debug_char+4,debug_char+5 ; Save for background debugger | |
261 movff debug_char+3,debug_char+4 | |
262 movff debug_char+2,debug_char+3 | |
263 movff debug_char+1,debug_char+2 | |
264 movff debug_char+0,debug_char+1 | |
142 | 265 movff WREG,debug_char+0 |
0 | 266 |
267 btfss debug_mode ; Are we in debugmode? | |
268 return ; No, return! | |
269 | |
256 | 270 WIN_TOP .192 |
0 | 271 WIN_LEFT .100 |
272 WIN_FONT FT_SMALL | |
273 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 274 call DISP_standard_color |
0 | 275 lfsr FSR2,letter |
276 movf debug_char+0,W | |
277 movwf POSTINC2 | |
278 movf debug_char+1,W | |
279 movwf POSTINC2 | |
280 movf debug_char+2,W | |
281 movwf POSTINC2 | |
282 movf debug_char+3,W | |
283 movwf POSTINC2 | |
284 movf debug_char+4,W | |
285 movwf POSTINC2 | |
286 movf debug_char+5,W | |
287 movwf POSTINC2 | |
123 | 288 |
289 STRCAT_PRINT " " | |
0 | 290 return |
291 | |
235 | 292 ;============================================================================= |
293 ; BlueScreen function. | |
294 ; | |
681 | 295 DISP_resetdebugger: |
296 global DISP_resetdebugger | |
235 | 297 global temp10 |
298 | |
299 movlb 1 ; For C-code calls | |
720 | 300 call DISPLAY_boot ; DISP boot |
681 | 301 call DISP_standard_color |
47 | 302 WIN_INVERT .0 ; Init new Wordprocessor |
0 | 303 |
304 DISPLAYTEXT .133 | |
305 DISPLAYTEXT .134 | |
306 DISPLAYTEXT .135 | |
307 DISPLAYTEXT .136 ; Display Debug intro | |
308 | |
309 WIN_TOP .100 | |
310 WIN_LEFT .10 | |
235 | 311 |
0 | 312 lfsr FSR2,letter |
235 | 313 movff temp10+0,lo ; Code-stack point at crash time. |
314 movff temp10+1,hi ; Code-stack point at crash time. | |
315 output_16 | |
119 | 316 movlw ' ' |
317 movwf POSTINC2 | |
0 | 318 movf debug_char+0,W |
319 movwf POSTINC2 | |
320 movf debug_char+1,W | |
321 movwf POSTINC2 | |
322 movf debug_char+2,W | |
323 movwf POSTINC2 | |
324 movf debug_char+3,W | |
325 movwf POSTINC2 | |
326 movf debug_char+4,W | |
327 movwf POSTINC2 | |
328 movf debug_char+5,W | |
329 movwf POSTINC2 | |
123 | 330 STRCAT ". " |
0 | 331 movff flag1,lo |
332 output_8 | |
123 | 333 PUTC ' ' |
0 | 334 movff flag2,lo |
335 output_8 | |
336 call word_processor | |
337 | |
338 WIN_TOP .125 | |
339 | |
340 lfsr FSR2,letter | |
341 movff flag3,lo | |
342 output_8 | |
123 | 343 PUTC ' ' |
0 | 344 movff flag4,lo |
345 output_8 | |
123 | 346 PUTC ' ' |
0 | 347 movff flag5,lo |
348 output_8 | |
123 | 349 PUTC ' ' |
0 | 350 movff flag6,lo |
351 output_8 | |
123 | 352 PUTC ' ' |
0 | 353 movff flag7,lo |
354 output_8 | |
355 call word_processor | |
356 | |
357 WIN_TOP .150 | |
358 | |
359 lfsr FSR2,letter | |
360 movff flag8,lo | |
361 output_8 | |
123 | 362 PUTC ' ' |
0 | 363 movff flag9,lo |
364 output_8 | |
123 | 365 PUTC ' ' |
0 | 366 movff flag10,lo |
367 output_8 | |
123 | 368 PUTC ' ' |
0 | 369 movff flag11,lo |
370 output_8 | |
123 | 371 PUTC ' ' |
0 | 372 movff flag12,lo |
373 output_8 | |
374 call word_processor | |
375 | |
576 | 376 call wait_switches ; Waits until switches are released, resets flag if button stays pressed! |
681 | 377 DISP_resetdebugger_loop: |
235 | 378 bcf LED_blue ; Blink blue led every seconds.. |
379 btfss secs,0 | |
380 bsf LED_blue | |
381 | |
0 | 382 btfss switch_left |
681 | 383 bra DISP_resetdebugger_loop ; Loop |
235 | 384 |
385 bcf LED_blue | |
576 | 386 call wait_switches ; Waits until switches are released, resets flag if button stays pressed! |
0 | 387 return |
388 | |
681 | 389 DISP_divemode_mask: ; Displays mask in Dive-Mode |
390 call DISP_divemask_color ; Set Color for Divemode mask | |
75 | 391 DISPLAYTEXTH .267 ; Max. |
0 | 392 DISPLAYTEXT .86 ; Divetime |
393 DISPLAYTEXT .87 ; Depth | |
681 | 394 call DISP_standard_color |
0 | 395 return |
396 | |
681 | 397 DISP_clear_customview_divemode: |
204 | 398 WIN_BOX_BLACK .168, .239, .90, .159 ;top, bottom, left, right |
87 | 399 return |
400 | |
681 | 401 DISP_clear_customview_surfmode: |
204 | 402 WIN_BOX_BLACK .25, .121, .82, .159 ;top, bottom, left, right |
107 | 403 return |
404 | |
681 | 405 DISP_clear_decoarea: |
204 | 406 WIN_BOX_BLACK .54, .168, .90, .159 ;top, bottom, left, right |
0 | 407 return |
408 | |
681 | 409 DISP_display_ndl_mask: |
619 | 410 ; Clears Gradient Factor |
411 movlw d'8' | |
412 movwf temp1 | |
413 WIN_TOP .145 | |
414 WIN_LEFT .0 | |
681 | 415 call DISP_display_clear_common_y1 |
619 | 416 |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
417 btfsc menubit ; Divemode menu active? |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
418 return ; Yes, return |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
419 |
0 | 420 ; Clear Dekostop and Dekosum |
681 | 421 rcall DISP_clear_decoarea |
422 call DISP_divemask_color ; Set Color for Divemode mask | |
0 | 423 DISPLAYTEXT d'84' ; NoStop |
681 | 424 call DISP_standard_color |
0 | 425 return |
426 | |
681 | 427 DISP_display_ndl: |
619 | 428 GETCUSTOM8 d'66' ; Always show GF? |
429 decfsz WREG,F ; WREG=1? | |
681 | 430 bra DISP_display_ndl2 ; No |
431 rcall DISP_display_gf ; Show GF (If GF > CF08) | |
432 | |
433 DISP_display_ndl2: | |
87 | 434 btfsc menubit ; Divemode menu active? |
435 return ; Yes, return | |
0 | 436 |
437 ostc_debug 'z' ; Sends debug-information to screen if debugmode active | |
438 | |
87 | 439 WIN_TOP .136 |
682 | 440 WIN_LEFT .118 |
0 | 441 WIN_FONT FT_MEDIUM |
442 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 443 call DISP_standard_color |
3 | 444 |
0 | 445 lfsr FSR2,letter |
446 movff char_O_nullzeit,lo ; NDL in minutes | |
447 output_8 | |
123 | 448 STRCAT_PRINT "'" |
0 | 449 WIN_FONT FT_SMALL |
450 return | |
451 | |
681 | 452 DISP_display_deko_mask: |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
453 btfsc menubit ; Divemode menu active? |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
454 return ; Yes, return |
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
455 |
681 | 456 rcall DISP_clear_decoarea |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
457 ; total deco time word |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
458 bcf show_safety_stop ; Clear safety stop flag |
681 | 459 call DISP_divemask_color ; Set Color for Divemode mask |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
460 DISPLAYTEXT d'85' ; TTS |
280 | 461 DISPLAYTEXT d'82' ; DEKOSTOP |
681 | 462 call DISP_standard_color |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
463 return |
0 | 464 |
681 | 465 DISP_display_deko: |
0 | 466 btfsc menubit ; Divemode menu active? |
681 | 467 bra DISP_display_deko1 ; Yes, do not display deco, only GF (if required) |
0 | 468 |
469 ostc_debug 'y' ; Sends debug-information to screen if debugmode active | |
87 | 470 WIN_TOP .80 |
517 | 471 WIN_LEFT .94 |
0 | 472 WIN_FONT FT_MEDIUM |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
473 WIN_INVERT .0 ; Init new Wordprocessor |
571
7f5419d4157d
timeout for 2nd page of Gas Setup, ceiling allingment
heinrichsweikamp
parents:
559
diff
changeset
|
474 bcf leftbind |
681 | 475 DISP_color_code warn_ceiling ; Color-code Output |
665
259e4c1bf3c2
grey-out TTS and ceiling after gas change (until new plan is ready)
heinrichsweikamp
parents:
657
diff
changeset
|
476 btfsc decoplan_invalid ; The decoplan needs to updated... |
681 | 477 call DISP_grey ; .. so set the color to grey |
0 | 478 lfsr FSR2,letter |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
479 movff char_O_first_deco_depth,lo ; Ceiling in m |
0 | 480 output_99 |
446 | 481 PUTC TXT_METER_C |
517 | 482 movff char_O_first_deco_time,lo ; length of first stop in m |
0 | 483 output_99 |
123 | 484 STRCAT_PRINT "'" |
0 | 485 WIN_FONT FT_SMALL |
517 | 486 |
0 | 487 ostc_debug 'x' ; Sends debug-information to screen if debugmode active |
488 | |
87 | 489 WIN_TOP .136 |
168 | 490 WIN_LEFT .140 - 6*7 - 4 ; let space for sign + 5 digits + ' |
0 | 491 WIN_FONT FT_MEDIUM |
168 | 492 WIN_INVERT .0 ; Init new Wordprocessor |
493 | |
681 | 494 call DISP_standard_color |
665
259e4c1bf3c2
grey-out TTS and ceiling after gas change (until new plan is ready)
heinrichsweikamp
parents:
657
diff
changeset
|
495 btfsc decoplan_invalid ; The decoplan needs to updated... |
681 | 496 call DISP_grey ; .. so set the color to grey |
0 | 497 lfsr FSR2,letter |
180 | 498 movff int_O_ascenttime+0,lo ; TTS |
168 | 499 movff int_O_ascenttime+1,hi ; on 16bits |
500 output_16 | |
123 | 501 STRCAT_PRINT "'" |
681 | 502 call DISP_standard_color |
503 | |
504 DISP_display_deko1: | |
505 rcall DISP_display_gf ; Show GF (If GF > CF08) | |
619 | 506 return ; Done. |
507 | |
681 | 508 DISP_display_gf: |
619 | 509 movff char_O_gradient_factor,lo ; gradient factor |
510 GETCUSTOM8 d'8' ; threshold for display | |
511 cpfslt lo ; show value? | |
681 | 512 bra DISP_display_deko2 ; Yes |
0 | 513 ; No |
619 | 514 ; Clears Gradient Factor |
515 movlw d'8' | |
516 movwf temp1 | |
517 WIN_TOP .145 | |
518 WIN_LEFT .0 | |
681 | 519 call DISP_display_clear_common_y1 |
619 | 520 return |
0 | 521 |
681 | 522 DISP_display_deko2: |
0 | 523 ostc_debug 'w' ; Sends debug-information to screen if debugmode active |
524 ;GF | |
525 WIN_TOP .145 | |
526 WIN_LEFT .0 | |
527 WIN_FONT FT_SMALL | |
681 | 528 DISP_color_code warn_gf ; Color-code Output |
123 | 529 |
446 | 530 STRCPY TXT_GF3 |
0 | 531 movff char_O_gradient_factor,lo ; gradient factor |
532 output_8 | |
123 | 533 STRCAT_PRINT "% " |
681 | 534 call DISP_standard_color |
0 | 535 return |
536 | |
681 | 537 DISP_show_safety_stop: |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
538 tstfsz safety_stop_countdown ; Countdown at zero? |
681 | 539 bra DISP_show_safety_stop2 ; No, show stop |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
540 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
541 bcf show_safety_stop ; Clear flag |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
542 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
543 btfsc safety_stop_active ; Displayed? |
681 | 544 rcall DISP_clear_decoarea ; Yes, Clear stop |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
545 bcf safety_stop_active ; Clear flag |
681 | 546 bra DISP_display_ndl_mask ; Show NDL again |
547 | |
548 DISP_show_safety_stop2: | |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
549 btfsc safety_stop_active ; Displayed? |
681 | 550 bra DISP_show_safety_stop3 ; Yes. |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
551 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
552 bsf safety_stop_active ; Set flag |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
553 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
554 btfsc menubit ; Divemode menu active? |
681 | 555 bra DISP_show_safety_stop3 ; Yes, do not display now but countdown |
556 | |
557 call DISP_divemask_color ; Set Color for Divemode mask | |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
558 DISPLAYTEXT d'227' ; Safety stop |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
559 |
681 | 560 DISP_show_safety_stop3: |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
561 decf safety_stop_countdown,F ; Reduce countdown |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
562 btfsc menubit ; Divemode menu active? |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
563 return ; Yes, do not show |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
564 movff safety_stop_countdown,lo |
681 | 565 call DISP_standard_color |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
566 WIN_TOP .80 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
567 WIN_LEFT .104 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
568 WIN_FONT FT_MEDIUM |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
569 WIN_INVERT .0 ; Init new Wordprocessor |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
570 lfsr FSR2,letter |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
571 clrf hi |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
572 call convert_time ; converts hi:lo in seconds to mins (hi) and seconds (lo) |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
573 movf hi,W |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
574 movff lo,hi |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
575 movwf lo ; exchange lo and hi |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
576 output_99 |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
577 PUTC ':' |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
578 movff hi,lo |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
579 output_99x |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
580 STRCAT_PRINT "" |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
581 WIN_FONT FT_SMALL |
681 | 582 call DISP_standard_color |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
583 return |
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
584 |
780 | 585 DISP_show_gas_change_countdown: |
586 btfss gaschange_cnt_active | |
587 return | |
588 decf apnoe_surface_secs,F ; Reduce countdown | |
589 btfss STATUS,N | |
590 bra DISP_show_gas_change_countdown2 | |
591 movlw .59 | |
592 movwf apnoe_surface_secs | |
593 decf apnoe_surface_mins,F | |
594 btfss STATUS,N | |
595 bra DISP_show_gas_change_countdown2 | |
596 bcf gaschange_cnt_active ; Clear flag | |
781 | 597 WIN_TOP .91 |
780 | 598 WIN_LEFT .64 |
599 WIN_FONT FT_SMALL | |
600 movlw d'4' | |
601 movwf temp1 | |
602 call DISP_display_clear_common_y1 | |
603 ; Reload countdown | |
604 GETCUSTOM8 d'55' | |
605 movwf apnoe_surface_mins | |
606 clrf apnoe_surface_secs | |
607 return | |
608 | |
609 DISP_show_gas_change_countdown2: | |
610 btfsc menubit ; Divemode menu active? | |
611 return ; Yes, do not show | |
612 movlw color_yellow ; show in yellow | |
613 call DISP_set_color | |
781 | 614 WIN_TOP .91 |
780 | 615 WIN_LEFT .64 |
616 WIN_FONT FT_SMALL | |
617 WIN_INVERT .0 ; Init new Wordprocessor | |
618 lfsr FSR2,letter | |
619 movff apnoe_surface_mins,lo | |
620 bsf leftbind | |
621 output_8 | |
622 PUTC ':' | |
623 movff apnoe_surface_secs,lo | |
624 output_99x | |
625 STRCAT_PRINT "" | |
626 call DISP_standard_color | |
627 bcf leftbind | |
628 return | |
629 | |
630 | |
199 | 631 ;============================================================================= |
632 ; Update simulator menu with time/depth | |
633 ; Note: because translations might change a bit the string length, we reprint | |
634 ; that part of the mask to be sure the numbers fit in the right places. | |
681 | 635 DISP_simulator_data: |
199 | 636 WIN_LEFT .20 |
0 | 637 WIN_FONT FT_SMALL |
681 | 638 call DISP_standard_color |
369 | 639 |
640 ;---- Updates interval line ---------------------------------------------- | |
641 WIN_TOP .35 | |
642 lfsr FSR2,letter | |
370 | 643 OUTPUTTEXTH .307 ; Interval: |
369 | 644 |
645 movff char_I_dive_interval,lo | |
646 movf lo,W | |
681 | 647 bnz DISP_simulator_data_1 |
370 | 648 OUTPUTTEXTH .308 ; Now |
369 | 649 clrf POSTINC2 ; End buffer. |
681 | 650 bra DISP_simulator_data_2 |
651 | |
652 DISP_simulator_data_1: | |
0 | 653 bsf leftbind |
654 output_8 | |
446 | 655 STRCAT TXT_0MIN5 |
369 | 656 |
681 | 657 DISP_simulator_data_2: |
369 | 658 call word_processor |
659 | |
660 ;---- Updates bottom time line ------------------------------------------- | |
661 WIN_TOP .95 | |
662 lfsr FSR2,letter | |
663 OUTPUTTEXTH .277 ; Bottom Time: | |
664 | |
430 | 665 movff sim_btm_time,lo |
369 | 666 bsf leftbind |
667 output_8 | |
446 | 668 STRCAT_PRINT TXT_MIN4 |
0 | 669 |
369 | 670 ;---- Updates depth line ------------------------------------------------- |
671 WIN_TOP .125 | |
0 | 672 lfsr FSR2,letter |
199 | 673 OUTPUTTEXTH .278 ; Max. Depth: |
674 | |
430 | 675 movff sim_btm_depth,lo |
0 | 676 bsf leftbind |
677 output_8 | |
446 | 678 STRCAT_PRINT TXT_METER3 |
369 | 679 |
0 | 680 bcf leftbind |
681 return | |
682 | |
199 | 683 ;============================================================================= |
684 | |
681 | 685 DISP_divemode_timeout2: |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
686 WIN_TOP .54 |
689 | 687 WIN_LEFT .110 |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
688 WIN_FONT FT_SMALL |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
689 WIN_INVERT .1 |
681 | 690 call DISP_warnings_color |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
691 STRCPY 0x94 ; "End of dive" icon |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
692 movff timeout_counter, lo |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
693 movff timeout_counter2, hi |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
694 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
695 movf hi,W |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
696 movff lo,hi |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
697 movwf lo ; exchange lo and hi |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
698 output_99x |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
699 PUTC ':' |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
700 movff hi,lo |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
701 output_99x |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
702 STRCAT_PRINT " " |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
703 bsf timeout_display ; Set Flag |
681 | 704 call DISP_standard_color |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
705 WIN_INVERT .0 |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
706 return |
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
707 |
681 | 708 DISP_divemode_timeout: |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
709 WIN_TOP .54 |
689 | 710 WIN_LEFT .110 |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
711 WIN_FONT FT_SMALL |
681 | 712 call DISP_standard_color |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
713 STRCPY 0x94 ; "End of dive" icon |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
714 GETCUSTOM15 d'2' ; diveloop_timeout |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
715 movff lo,sub_a+0 |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
716 movff hi,sub_a+1 |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
717 movff timeout_counter, sub_b+0 |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
718 movff timeout_counter2, sub_b+1 ; Divemode timeout |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
719 call sub16 ; sub_c = sub_a - sub_b |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
720 movff sub_c+0,lo |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
721 movff sub_c+1,hi |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
722 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
723 movf hi,W |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
724 movff lo,hi |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
725 movwf lo ; exchange lo and hi |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
726 output_99x |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
727 PUTC ':' |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
728 movff hi,lo |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
729 output_99x |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
730 STRCAT_PRINT " " |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
731 bsf timeout_display ; Set Flag |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
732 return |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
733 |
681 | 734 DISP_divemode_timeout_clear: |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
735 btfsc dekostop_active ; Is a deco stop displayed? |
681 | 736 call DISP_display_deko_mask ; Yes, redraw mask |
572
80a1d2d5a9ee
timeout display when deco stops are violated
heinrichsweikamp
parents:
571
diff
changeset
|
737 |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
738 WIN_TOP .54 |
739
96d32c0cf206
BUGFIX: Clear end-of-dive countdown properly when descending again
heinrichsweikamp
parents:
734
diff
changeset
|
739 WIN_LEFT .110 |
408
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
740 movlw d'6' |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
741 movwf temp1 |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
742 bcf timeout_display ; Clear flag |
681 | 743 bra DISP_display_clear_common_y1 |
744 | |
745 DISP_display_velocity_graph_clr: | |
497
06db5dd9149f
show numeric _and_ graphic velocity, move desat, nofly and interval into isr
heinrichsweikamp
parents:
492
diff
changeset
|
746 WIN_BOX_BLACK .20, .90, .65, .75 ; Clear graphic display |
681 | 747 bra DISP_display_velocity ; Continue with normal output |
748 | |
749 DISP_display_velocity_graphical: | |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
750 btfss neg_flag |
681 | 751 bra DISP_display_velocity_graph_clr |
752 bsf DISP_velocity_display | |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
753 ; divA+0 holding the ascend speed in m/min |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
754 movff divA+0,hi ; Copy |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
755 WIN_BOX_BLACK .20, .90, .65, .75 ; Clear graphic display |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
756 GETCUSTOM8 d'36' ; Divemode mask |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
757 WIN_FRAME_COLOR .20, .90, .65, .75 ; Outer frame |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
758 GETCUSTOM8 d'36' ; Divemode mask |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
759 WIN_FRAME_COLOR .20+.10, .90-.10, .65, .75 ; Inner frames |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
760 GETCUSTOM8 d'36' ; Divemode mask |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
761 WIN_FRAME_COLOR .20+.20, .90-.20, .65, .75 ; |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
762 GETCUSTOM8 d'36' ; Divemode mask |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
763 WIN_FRAME_COLOR .20+.30, .90-.30, .65, .75 ; |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
764 |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
765 GETCUSTOM8 d'47' ; color_warn_celocity_mmin |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
766 movwf xA+0 |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
767 clrf xA+1 |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
768 movlw .5 |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
769 movwf xB+0 ; Threshold for color warning (5 color normal + 2 color warning) |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
770 clrf xB+1 |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
771 call div16x16 ;xA/xB=xC with xA as remainder |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
772 ; xC+0 holds stepsize in m/min (e.g. =3 for 15m/min warning treshold) |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
773 movff hi,xA+0 ; Velocity in m/min |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
774 clrf xA+1 |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
775 movff xC+0,xB+0 ; Step size |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
776 clrf xB+1 |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
777 call div16x16 ;xA/xB=xC with xA as remainder |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
778 ; xC+0 now holds amount of segments to show |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
779 |
497
06db5dd9149f
show numeric _and_ graphic velocity, move desat, nofly and interval into isr
heinrichsweikamp
parents:
492
diff
changeset
|
780 movff hi,divA+0 ; Copy back for numeric output |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
781 movlw d'7' |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
782 cpfslt xC+0 |
681 | 783 bra DISP_graph_vel_7 |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
784 movlw d'6' |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
785 cpfslt xC+0 |
681 | 786 bra DISP_graph_vel_6 |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
787 movlw d'5' |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
788 cpfslt xC+0 |
681 | 789 bra DISP_graph_vel_5 |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
790 movlw d'4' |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
791 cpfslt xC+0 |
681 | 792 bra DISP_graph_vel_4 |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
793 movlw d'3' |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
794 cpfslt xC+0 |
681 | 795 bra DISP_graph_vel_3 |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
796 movlw d'2' |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
797 cpfslt xC+0 |
681 | 798 bra DISP_graph_vel_2 |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
799 movlw d'1' |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
800 cpfslt xC+0 |
681 | 801 bra DISP_graph_vel_1 |
802 bra DISP_graph_vel_0 ; Should not happen... | |
803 | |
804 DISP_graph_vel_7: | |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
805 GETCUSTOM8 d'37' ; Color warning |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
806 WIN_BOX_COLOR .22, .22+.6, .67, .73 ; Fill box |
681 | 807 DISP_graph_vel_6: |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
808 GETCUSTOM8 d'37' ; Color warning |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
809 WIN_BOX_COLOR .32, .32+.6, .67, .73 ; Fill box |
681 | 810 DISP_graph_vel_5: |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
811 WIN_BOX_STD .42, .42+.6, .67, .73 ; Fill box |
681 | 812 DISP_graph_vel_4: |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
813 WIN_BOX_STD .52, .52+.6, .67, .73 ; Fill box |
681 | 814 DISP_graph_vel_3: |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
815 WIN_BOX_STD .62, .62+.6, .67, .73 ; Fill box |
681 | 816 DISP_graph_vel_2: |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
817 WIN_BOX_STD .72, .72+.6, .67, .73 ; Fill box |
681 | 818 DISP_graph_vel_1: |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
819 WIN_BOX_STD .82, .82+.6, .67, .73 ; Fill box |
681 | 820 DISP_graph_vel_0: |
821 | |
822 DISP_display_velocity: | |
0 | 823 ostc_debug 'v' ; Sends debug-information to screen if debugmode active |
824 WIN_TOP .90 | |
825 WIN_LEFT .0 | |
826 WIN_FONT FT_SMALL | |
681 | 827 DISP_color_code warn_velocity ; Color code output |
0 | 828 lfsr FSR2,letter |
829 movlw '-' | |
830 btfsc neg_flag | |
831 movlw '+' | |
832 movwf POSTINC2 | |
833 movff divA+0,lo | |
834 output_99 | |
835 OUTPUTTEXT d'83' ; m/min | |
517 | 836 call word_processor |
681 | 837 call DISP_standard_color |
838 bsf DISP_velocity_display | |
0 | 839 return |
840 | |
681 | 841 DISP_display_velocity_clear: |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
842 GETCUSTOM8 d'60' ; use graphic velocity (=1)? |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
843 movwf lo |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
844 movlw d'1' |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
845 cpfseq lo ; =1? |
681 | 846 bra DISP_display_velocity_clear1 ; No, clear text display |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
847 WIN_BOX_BLACK .20, .90, .65, .75 ; Clear graphic display |
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
479
diff
changeset
|
848 |
681 | 849 DISP_display_velocity_clear1: |
517 | 850 movlw d'8' |
0 | 851 movwf temp1 |
852 WIN_TOP .90 | |
853 WIN_LEFT .0 | |
681 | 854 bcf DISP_velocity_display |
855 bra DISP_display_clear_common_y1 | |
856 | |
857 DISP_display_wait_clear: | |
204 | 858 WIN_BOX_BLACK .0, .25, .0, .159 ;top, bottom, left, right |
859 return | |
0 | 860 |
681 | 861 DISP_display_clear_common_y2: ; Clears with y-scale=2 |
0 | 862 WIN_FONT FT_MEDIUM |
681 | 863 bra DISP_display_clear_common1 |
864 | |
865 DISP_display_clear_common_y1: ; Clears with y-scale=1 | |
0 | 866 WIN_FONT FT_SMALL |
681 | 867 DISP_display_clear_common1: |
0 | 868 lfsr FSR2,letter |
681 | 869 DISP_display_clear_common2: |
123 | 870 PUTC ' ' |
0 | 871 decfsz temp1,F |
681 | 872 bra DISP_display_clear_common2 |
0 | 873 call word_processor |
874 WIN_FONT FT_SMALL | |
875 return | |
876 | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
877 |
681 | 878 DISP_diveclock: |
879 call DISP_divemask_color ; Set Color for Divemode mask | |
778
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
880 DISPLAYTEXT d'255' ; Time: |
681 | 881 call DISP_standard_color |
882 | |
883 DISP_diveclock2: | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
884 WIN_TOP .192 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
885 WIN_LEFT .123 |
63 | 886 WIN_FONT FT_SMALL |
887 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 888 call DISP_standard_color |
63 | 889 lfsr FSR2,letter |
890 movff hours,lo | |
891 output_99x | |
123 | 892 PUTC ':' |
63 | 893 movff mins,lo |
894 output_99x | |
895 call word_processor | |
778
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
896 |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
897 DISP_diveclock3: ; Update end of divetime only |
779 | 898 return |
778
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
899 WIN_TOP .216 |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
900 WIN_LEFT .116 |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
901 WIN_FONT FT_SMALL |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
902 WIN_INVERT .0 |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
903 call DISP_standard_color |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
904 |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
905 btfss dekostop_active ; Already in nodeco mode ? |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
906 bra DISP_diveclock4 ; No, overwrite with some spaces |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
907 |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
908 STRCPY 0x94 ; "End of dive" icon |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
909 movff hours,WREG |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
910 mullw .60 |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
911 movf mins,W |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
912 addwf PRODL |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
913 movlw .0 |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
914 addwfc PRODH |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
915 movff PRODL, lo |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
916 movff PRODH, hi |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
917 |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
918 ; Add TTS |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
919 movff int_O_ascenttime+0,WREG ; TTS |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
920 addwf lo,F |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
921 movff int_O_ascenttime+1,WREG ; TTS is 16bits |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
922 addwfc hi,F |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
923 |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
924 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
925 movf hi,W |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
926 movff lo,hi |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
927 movwf lo ; exchange lo and hi |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
928 output_99x |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
929 PUTC ':' |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
930 movff hi,lo |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
931 output_99x |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
932 STRCAT_PRINT "" |
63 | 933 return |
934 | |
778
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
935 DISP_diveclock4: |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
936 STRCPY_PRINT " " |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
937 return |
43ef5a003df7
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
772
diff
changeset
|
938 |
681 | 939 DISP_clock: |
0 | 940 ostc_debug 'c' |
941 WIN_TOP .50 | |
56 | 942 WIN_LEFT .1 |
0 | 943 WIN_FONT FT_SMALL |
944 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 945 call DISP_standard_color |
0 | 946 lfsr FSR2,letter |
947 movff hours,lo | |
948 output_99x | |
123 | 949 PUTC ':' |
0 | 950 movff mins,lo |
951 output_99x | |
123 | 952 PUTC ':' |
0 | 953 movff secs,lo |
954 output_99x | |
683 | 955 STRCAT_PRINT "" |
0 | 956 return |
957 | |
681 | 958 DISP_interval: |
111 | 959 WIN_TOP .75 |
960 WIN_LEFT .90 | |
961 WIN_FONT FT_SMALL | |
962 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 963 call DISP_standard_color |
111 | 964 lfsr FSR2,letter |
965 | |
966 movff surface_interval+0,lo | |
967 movff surface_interval+1,hi | |
968 call convert_time ; lo=mins, hi=hours | |
969 | |
970 movf hi,W | |
971 movff lo,hi | |
972 movwf lo ; exchange lo and hi | |
973 output_99x | |
123 | 974 PUTC ':' |
111 | 975 movff hi,lo |
976 output_99x | |
123 | 977 STRCAT_PRINT " " |
111 | 978 return |
979 | |
759 | 980 |
981 DISP_show_deco_gas: ; Show the next decogas | |
982 WIN_LEFT .90 | |
983 WIN_FONT FT_SMALL | |
984 WIN_INVERT .0 ; Init new Wordprocessor | |
985 call DISP_divemask_color ; Set Color for Divemode mask | |
986 DISPLAYTEXTH .270 ; Decogas | |
987 | |
988 DISP_show_deco_gas1: | |
989 WIN_LEFT .90 | |
990 WIN_FONT FT_SMALL | |
991 WIN_INVERT .0 ; Init new Wordprocessor | |
992 call DISP_standard_color | |
993 WIN_TOP .192 | |
994 movff char_O_deco_gas+0,lo | |
995 tstfsz lo ; =0? | |
996 bra $+4 ; No | |
997 bra DISP_show_deco_gas2 | |
998 incf lo,F ;+1 | |
999 STRCPY TXT_GAS1 ; "G" | |
1000 bsf leftbind | |
1001 output_8 | |
1002 STRCAT TXT_AT4 ; " at " | |
1003 movlw .27 ; 28=Gas 1 | |
1004 addwf lo,W | |
1005 movwf EEADR | |
1006 clrf EEADRH ; Get Change depth | |
1007 call read_eeprom | |
1008 movff EEDATA,lo | |
1009 tstfsz lo ; =0? | |
1010 bra $+4 ; No | |
1011 bra DISP_show_deco_gas2 | |
1012 output_8 ; Change depth | |
1013 bcf leftbind | |
1014 STRCAT "m " | |
1015 clrf WREG | |
768
b23b43d6d50d
BUGFIX: Italian language fix (Divemode menu)
heinrichsweikamp
parents:
765
diff
changeset
|
1016 movff WREG,letter+.9 ; Limit to 9 chars |
759 | 1017 STRCAT_PRINT "" |
1018 | |
1019 WIN_TOP .216 | |
1020 movff char_O_deco_gas+1,lo | |
1021 tstfsz lo ; =0? | |
1022 bra $+4 ; No | |
1023 bra DISP_show_deco_gas3 | |
1024 incf lo,F ;+1 | |
1025 STRCPY TXT_GAS1 ; "G" | |
1026 bsf leftbind | |
1027 output_8 | |
1028 STRCAT TXT_AT4 ; " at " | |
1029 movlw .27 ; 28=Gas 1 | |
1030 addwf lo,W | |
1031 movwf EEADR | |
1032 clrf EEADRH ; Get Change depth | |
1033 call read_eeprom | |
1034 movff EEDATA,lo | |
1035 tstfsz lo ; =0? | |
1036 bra $+4 ; No | |
1037 bra DISP_show_deco_gas3 | |
1038 output_8 ; Change depth | |
1039 bcf leftbind | |
1040 STRCAT "m " | |
1041 clrf WREG | |
768
b23b43d6d50d
BUGFIX: Italian language fix (Divemode menu)
heinrichsweikamp
parents:
765
diff
changeset
|
1042 movff WREG,letter+.9 ; Limit to 9 chars |
759 | 1043 STRCAT_PRINT "" |
1044 return | |
1045 | |
1046 DISP_show_deco_gas2: | |
1047 WIN_BOX_BLACK .192, .239, .90, .159 ;top, bottom, left, right | |
1048 return | |
1049 | |
1050 DISP_show_deco_gas3: | |
1051 WIN_BOX_BLACK .216, .239, .90, .159 ;top, bottom, left, right | |
1052 return | |
1053 | |
681 | 1054 DISP_show_gf_customview: |
666 | 1055 WIN_LEFT .93 |
1056 WIN_FONT FT_SMALL | |
1057 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1058 call DISP_divemask_color ; Set Color for Divemode mask |
666 | 1059 DISPLAYTEXTH .268 ;"Gradient Factors" |
1060 | |
1061 GETCUSTOM8 d'64' ; Set to grey | |
681 | 1062 call DISP_set_color |
666 | 1063 btfss use_aGF |
681 | 1064 call DISP_standard_color |
666 | 1065 |
1066 WIN_TOP .192 | |
1067 STRCPY TXT_GF3 ; "GF:" | |
1068 GETCUSTOM8 d'32' ; GF_lo | |
1069 movwf lo | |
1070 bsf leftbind | |
1071 output_8 | |
1072 STRCAT "/" | |
1073 GETCUSTOM8 d'33' ; GF_hi | |
1074 movwf lo | |
1075 output_8 | |
1076 STRCAT_PRINT "" | |
1077 | |
1078 GETCUSTOM8 d'64' ; Set to grey | |
681 | 1079 call DISP_set_color |
666 | 1080 btfsc use_aGF |
681 | 1081 call DISP_standard_color |
666 | 1082 |
1083 WIN_TOP .216 | |
1084 STRCPY TXT_aGF4 ; "aGF:" | |
1085 GETCUSTOM8 d'67' ; aGF_lo | |
1086 movwf lo | |
1087 bsf leftbind | |
1088 output_8 | |
1089 STRCAT "/" | |
1090 GETCUSTOM8 d'68' ; aGF_hi | |
1091 movwf lo | |
1092 output_8 | |
1093 STRCAT_PRINT "" | |
1094 bcf leftbind | |
1095 | |
681 | 1096 call DISP_standard_color |
666 | 1097 return |
111 | 1098 |
681 | 1099 DISP_show_cf11_cf12_cf29:; Display saturations/desaturation multiplier and last deco in the customview field |
111 | 1100 WIN_TOP .25 |
1101 WIN_LEFT .90 | |
1102 WIN_FONT FT_SMALL | |
1103 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1104 call DISP_standard_color |
446 | 1105 STRCPY TXT_BSAT5 |
123 | 1106 |
111 | 1107 GETCUSTOM8 d'11' |
1108 movwf lo | |
1109 bsf leftbind | |
1110 output_8 | |
123 | 1111 STRCAT_PRINT "%" |
111 | 1112 |
1113 WIN_TOP .50 | |
446 | 1114 STRCPY TXT_BDES5 |
123 | 1115 |
111 | 1116 GETCUSTOM8 d'12' |
1117 movwf lo | |
1118 bsf leftbind | |
1119 output_8 | |
123 | 1120 STRCAT_PRINT "%" |
111 | 1121 |
681 | 1122 DISP_show_cf11_cf12_cf29_2: |
111 | 1123 WIN_TOP .75 |
446 | 1124 STRCPY TXT_LAST5 |
111 | 1125 GETCUSTOM8 d'29' |
1126 movwf lo | |
1127 bsf leftbind | |
1128 output_8 | |
446 | 1129 STRCAT_PRINT TXT_METER1 |
123 | 1130 |
111 | 1131 bcf leftbind |
1132 return | |
1133 | |
681 | 1134 DISP_show_cf32_cf33_cf62_cf63: ; Display GF_LOW, GF_HIGH, pSCR ratio and drop in the customview field |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1135 WIN_TOP .25 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1136 WIN_LEFT .90 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1137 WIN_FONT FT_SMALL |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1138 WIN_INVERT .0 ; Init new Wordprocessor |
681 | 1139 call DISP_standard_color |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1140 GETCUSTOM8 d'32' ; GF_lo |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1141 movwf lo |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1142 STRCPY TXT_GFLO6 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1143 bsf leftbind |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1144 output_8 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1145 STRCAT_PRINT "%" |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1146 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1147 WIN_TOP .50 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1148 GETCUSTOM8 d'33' ; GF_hi |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1149 movwf lo |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1150 STRCPY TXT_GFHI6 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1151 bsf leftbind |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1152 output_8 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1153 STRCAT_PRINT "%" |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1154 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1155 WIN_TOP .75 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1156 lfsr FSR2,letter |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1157 GETCUSTOM8 d'62' ; O2 Drop in percent |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1158 movwf lo |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1159 bsf leftbind |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1160 output_8 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1161 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1162 STRCAT "% 1/" |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1163 GETCUSTOM8 d'63' ; Counter lung ratio in 1/X |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1164 movwf lo |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1165 output_8 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1166 bcf leftbind |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1167 STRCAT_PRINT "" |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1168 return |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1169 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1170 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
1171 |
681 | 1172 DISP_show_cf32_cf33_cf29:; Display GF_LOW, GF_HIGH and last deco in the customview field |
111 | 1173 WIN_TOP .25 |
1174 WIN_LEFT .90 | |
1175 WIN_FONT FT_SMALL | |
1176 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1177 call DISP_standard_color |
180 | 1178 GETCUSTOM8 d'32' ; GF_lo |
111 | 1179 movwf lo |
123 | 1180 |
446 | 1181 STRCPY TXT_GFLO6 |
111 | 1182 bsf leftbind |
1183 output_8 | |
123 | 1184 STRCAT_PRINT "%" |
111 | 1185 |
1186 WIN_TOP .50 | |
180 | 1187 GETCUSTOM8 d'33' ; GF_hi |
111 | 1188 movwf lo |
446 | 1189 STRCPY TXT_GFHI6 |
111 | 1190 bsf leftbind |
1191 output_8 | |
123 | 1192 STRCAT_PRINT "%" |
111 | 1193 |
681 | 1194 bra DISP_show_cf11_cf12_cf29_2 ; Display CF29 in the third row and RETURN |
1195 | |
1196 | |
1197 DISP_logbook_cursor: | |
1198 | |
1199 DISP_menu_cursor: | |
204 | 1200 WIN_BOX_BLACK .35, .239, .0, .16 ;top, bottom, left, right |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
1201 |
0 | 1202 WIN_LEFT .0 |
1203 WIN_FONT FT_SMALL | |
1204 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1205 call DISP_standard_color |
3 | 1206 |
0 | 1207 movff menupos,temp1 |
1208 dcfsnz temp1,F | |
1209 movlw d'35' | |
1210 dcfsnz temp1,F | |
1211 movlw d'65' | |
1212 dcfsnz temp1,F | |
1213 movlw d'95' | |
1214 dcfsnz temp1,F | |
1215 movlw d'125' | |
1216 dcfsnz temp1,F | |
1217 movlw d'155' | |
1218 dcfsnz temp1,F | |
1219 movlw d'185' | |
1220 | |
1221 movff WREG,win_top | |
123 | 1222 STRCPY_PRINT "\xB7" |
0 | 1223 return |
1224 | |
681 | 1225 DISP_menu_mask: |
717 | 1226 call DISP_divemask_color |
0 | 1227 DISPLAYTEXT .5 ; Menu: |
717 | 1228 call DISP_standard_color |
0 | 1229 DISPLAYTEXT .6 ; Logbook |
1230 DISPLAYTEXT .7 ; Gas Setup | |
1231 DISPLAYTEXT .9 ; Reset all | |
1232 DISPLAYTEXT .10 ; Setup... | |
1233 DISPLAYTEXT .142 ; More... | |
1234 DISPLAYTEXT .11 ; Exit | |
624 | 1235 |
1236 ; Write OSTC serial in Main Menu | |
1237 WIN_TOP .215 | |
1238 WIN_LEFT .47 | |
1239 GETCUSTOM8 d'64' ; Write header in blue when | |
681 | 1240 call DISP_set_color ; compiled in DEBUG mode... |
624 | 1241 lfsr FSR2,letter |
1242 OUTPUTTEXTH d'262' ; "OSTC " | |
1243 clrf EEADRH | |
1244 clrf EEADR ; Get Serial number LOW | |
1245 call read_eeprom ; read byte | |
1246 movff EEDATA,lo | |
1247 incf EEADR,F ; Get Serial number HIGH | |
1248 call read_eeprom ; read byte | |
1249 movff EEDATA,hi | |
1250 bsf leftbind | |
1251 output_16 | |
1252 call word_processor | |
681 | 1253 call DISP_standard_color |
0 | 1254 return |
1255 | |
681 | 1256 DISP_setup_menu_mask: |
717 | 1257 call DISP_divemask_color |
0 | 1258 DISPLAYTEXT .98 ; Setup Menu: |
717 | 1259 call DISP_standard_color |
0 | 1260 DISPLAYTEXT .99 ; Custom FunctionsI |
1261 DISPLAYTEXT .153 ; Custom FunctionsII | |
574 | 1262 DISPLAYTEXTH .295 ; Custom FunctionsIII |
0 | 1263 DISPLAYTEXT .100 ; Decotype: |
1264 DISPLAYTEXT .142 ; More... | |
1265 DISPLAYTEXT .11 ; Exit | |
1266 return | |
1267 | |
681 | 1268 DISP_ccr_setup_menu_mask: |
717 | 1269 call DISP_divemask_color |
639 | 1270 DISPLAYTEXT .111 ; CCR Setup Menu |
717 | 1271 call DISP_standard_color |
639 | 1272 DISPLAYTEXT .229 ; Diluent Setup |
1273 DISPLAYTEXT .230 ; Setpoint Setup | |
1274 DISPLAYTEXT .11 ; Exit | |
1275 return | |
1276 | |
1277 | |
681 | 1278 DISP_more_setup_menu_mask: |
717 | 1279 call DISP_divemask_color |
0 | 1280 DISPLAYTEXTH .258 ; Setup Menu 2: |
717 | 1281 call DISP_standard_color |
0 | 1282 DISPLAYTEXTH .257 ; Date format: |
1283 DISPLAYTEXT .129 ; Debug: | |
12 | 1284 DISPLAYTEXT .187 ; Show License |
574 | 1285 DISPLAYTEXTH .276 ; Salinity: |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
498
diff
changeset
|
1286 DISPLAYTEXTH .280 ; Brightness: |
0 | 1287 DISPLAYTEXT .11 ; Exit |
1288 return | |
1289 | |
681 | 1290 DISP_more_menu_mask: |
717 | 1291 call DISP_divemask_color |
0 | 1292 DISPLAYTEXT .144 ; Menu 2: |
717 | 1293 call DISP_standard_color |
0 | 1294 DISPLAYTEXT .8 ; Set Time |
747 | 1295 DISPLAYTEXT .110 ; CCR Setup Menu |
0 | 1296 DISPLAYTEXT .113 ; Battery Info |
1297 DISPLAYTEXT .247 ; Simulator | |
125 | 1298 DISPLAYTEXTH .287 ; Altimeter |
0 | 1299 DISPLAYTEXT .11 ; Exit |
1300 return | |
1301 | |
681 | 1302 DISP_reset_menu_mask: |
717 | 1303 call DISP_divemask_color |
0 | 1304 DISPLAYTEXT .28 ; Reset Menu |
717 | 1305 call DISP_standard_color |
0 | 1306 DISPLAYTEXT .21 ; Cancel Reset |
1307 DISPLAYTEXT .245 ; Reset CF,Gases & Deco | |
1308 DISPLAYTEXTH .284 ; Reset Logbook | |
1309 DISPLAYTEXTH .285 ; Reboot OSTC | |
1310 DISPLAYTEXTH .286 ; Reset Decodata | |
1311 DISPLAYTEXT .11 ; Exit | |
1312 return | |
1313 | |
681 | 1314 DISP_simulator_mask: |
717 | 1315 call DISP_divemask_color |
0 | 1316 DISPLAYTEXT .248 ; OSTC Simulator |
717 | 1317 call DISP_standard_color |
370 | 1318 DISPLAYTEXTH .307 ; Interval: |
369 | 1319 DISPLAYTEXT .249 ; Start Dive |
1320 DISPLAYTEXTH .277 ; Bottom Time: | |
1321 DISPLAYTEXTH .278 ; Max. Depth: | |
1322 DISPLAYTEXTH .279 ; Calculate Deco | |
1323 DISPLAYTEXT .11 ; Exit | |
0 | 1324 return |
1325 | |
681 | 1326 DISP_temp_surfmode: |
0 | 1327 ostc_debug 'e' |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1328 SAFE_2BYTE_COPY temperature, last_temperature |
0 | 1329 WIN_TOP .100 |
56 | 1330 WIN_LEFT .1 |
0 | 1331 WIN_FONT FT_SMALL |
340
ecbbbd423e86
BUGFIX save negativ temperatures in logbook (bbbug #6)
JeanDo
parents:
339
diff
changeset
|
1332 WIN_INVERT .0 ; Init new Wordprocessor |
681 | 1333 call DISP_standard_color |
3 | 1334 |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1335 movff last_temperature+1,hi |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1336 movff last_temperature+0,lo |
0 | 1337 lfsr FSR2,letter |
681 | 1338 call DISP_convert_signed_temperature ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
0 | 1339 movlw d'3' |
1340 movwf ignore_digits | |
1341 bsf leftbind ; left orientated output | |
1342 output_16dp d'2' | |
1343 bcf leftbind | |
123 | 1344 STRCAT_PRINT "°C " |
0 | 1345 return |
1346 | |
681 | 1347 DISP_temp_divemode: |
0 | 1348 ostc_debug 'u' ; Sends debug-information to screen if debugmode active |
1349 | |
1350 ; temperature | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1351 SAFE_2BYTE_COPY temperature, last_temperature |
0 | 1352 |
1353 WIN_TOP .216 | |
75 | 1354 WIN_LEFT .50 |
0 | 1355 WIN_FONT FT_SMALL |
1356 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1357 call DISP_standard_color |
3 | 1358 |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1359 movff last_temperature+1,hi |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1360 movff last_temperature+0,lo |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1361 |
0 | 1362 lfsr FSR2,letter |
681 | 1363 call DISP_convert_signed_temperature ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
0 | 1364 movlw d'3' |
1365 movwf ignore_digits | |
1366 bsf leftbind ; left orientated output | |
1367 output_16dp d'2' | |
1368 bcf leftbind | |
135
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1369 STRCAT "° " |
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1370 clrf WREG ; Allow up to 5 chars to avoid |
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1371 movff WREG,letter+5 ; collision with sat graphs |
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1372 call word_processor |
0 | 1373 return |
1374 | |
681 | 1375 DISP_show_ppO2: ; Show ppO2 (ppO2 stored in xC) |
0 | 1376 ostc_debug 't' ; Sends debug-information to screen if debugmode active |
462 | 1377 WIN_TOP .117 |
0 | 1378 WIN_LEFT .0 |
1379 WIN_FONT FT_SMALL | |
681 | 1380 DISP_color_code warn_ppo2 ; Color-code output (ppO2 stored in xC) |
446 | 1381 STRCPY TXT_PPO2_5 |
74 | 1382 |
1383 ; Check very high ppO2 manually | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
1384 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? |
681 | 1385 bra DISP_show_ppO2_3 ; Yes, display fixed Value! |
74 | 1386 |
0 | 1387 movff xC+0,lo |
1388 movff xC+1,hi | |
1389 bsf ignore_digit4 | |
1390 output_16dp d'1' | |
1391 bcf ignore_digit4 | |
681 | 1392 DISP_show_ppO2_2: |
123 | 1393 STRCAT_PRINT " " |
681 | 1394 call DISP_standard_color |
0 | 1395 return |
1396 | |
681 | 1397 DISP_show_ppO2_3: |
123 | 1398 STRCAT ">6.6" |
681 | 1399 bra DISP_show_ppO2_2 |
1400 | |
1401 DISP_show_ppO2_clear: ; Clear ppO2 | |
0 | 1402 movlw d'10' |
1403 movwf temp1 | |
462 | 1404 WIN_TOP .117 |
0 | 1405 WIN_LEFT .0 |
681 | 1406 call DISP_display_clear_common_y1 |
0 | 1407 return |
1408 | |
681 | 1409 DISP_active_gas_clear: ; clears active gas! |
0 | 1410 WIN_TOP .192 |
75 | 1411 WIN_LEFT .50 |
0 | 1412 movlw d'5' |
1413 movwf temp1 | |
681 | 1414 bra DISP_display_clear_common_y1; also returns! |
1415 | |
1416 DISP_active_gas_divemode: ; Displays current gas (e.g. 40/20) if a) He>0 or b) O2>Custom9 | |
0 | 1417 btfsc FLAG_apnoe_mode ; Ignore in Apnoe mode |
1418 return | |
1419 | |
25 | 1420 WIN_INVERT .0 ; Init new Wordprocessor |
681 | 1421 call DISP_active_gas_divemode_show ; Show gas (Non-Inverted in all cases) |
25 | 1422 |
1423 btfss better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
1424 return ; Done. | |
1425 | |
1426 ; Check if Gas Output should blink when a better gas is available... | |
1427 GETCUSTOM8 d'42' ; =1 if gas should blink | |
1428 movwf lo | |
1429 movlw d'1' | |
1430 cpfseq lo ; =1? | |
1431 return ; No, Done. | |
1432 | |
1433 btg blinking_better_gas ; Toggle blink bit... | |
1434 btfss blinking_better_gas ; blink now? | |
1435 return ; No, Done. | |
403 | 1436 movlw color_yellow ; Blink in yellow |
681 | 1437 call DISP_set_color |
25 | 1438 WIN_INVERT .1 ; Init new Wordprocessor |
681 | 1439 call DISP_active_gas_divemode_show1 ; Show gas (Non-Inverted in all cases) |
25 | 1440 WIN_INVERT .0 ; Init new Wordprocessor |
681 | 1441 call DISP_standard_color |
25 | 1442 return ; Done. |
1443 | |
681 | 1444 DISP_active_gas_divemode_show: |
1445 call DISP_standard_color | |
1446 DISP_active_gas_divemode_show1: | |
0 | 1447 ostc_debug 's' ; Sends debug-information to screen if debugmode active |
1448 ; gas | |
1449 WIN_TOP .192 | |
75 | 1450 WIN_LEFT .50 |
0 | 1451 WIN_FONT FT_SMALL |
3 | 1452 |
0 | 1453 movlw d'100' ; 100% in the tank |
1454 movff char_I_N2_ratio,lo ; minus N2 | |
1455 bsf STATUS,C ; set borrow bit | |
1456 subfwb lo,W | |
1457 movff char_I_He_ratio,lo ; minus He | |
1458 bsf STATUS,C ; set borrow bit | |
1459 subfwb lo,F ; =% O2 | |
1460 GETCUSTOM8 d'9' ; get oxygen treshold | |
1461 movff char_I_He_ratio,hi ; He ratio | |
1462 cpfsgt lo | |
681 | 1463 bra DISP_active_gas_divemode2 ; Check He |
1464 bra DISP_active_gas_divemode3 ; Skip He check, display gas | |
0 | 1465 |
681 | 1466 DISP_active_gas_divemode2: |
0 | 1467 tstfsz hi ; He = 0 % |
681 | 1468 bra DISP_active_gas_divemode3 ; display gas |
1469 | |
1470 call DISP_warnings_color ; O2 below treshold, He=0 : Bad stuff ! | |
1471 bra DISP_active_gas_divemode4 | |
1472 | |
1473 DISP_active_gas_divemode3: | |
0 | 1474 movlw d'21' |
1475 cpfseq lo ; Air? (O2=21%) | |
681 | 1476 bra DISP_active_gas_divemode4 ; No! |
0 | 1477 tstfsz hi ; Air? (He=0%) |
681 | 1478 bra DISP_active_gas_divemode4 ; No! |
0 | 1479 |
1480 ; Yes, display "Air" instead of 21/0 | |
1481 lfsr FSR2,letter | |
136 | 1482 OUTPUTTEXTH d'264' ;"Air " |
143 | 1483 PUTC ' ' |
1484 clrf WREG ; Allow up to 5 chars to avoid | |
1485 movff WREG,letter+5 ; collision with sat graphs | |
1486 bcf leftbind | |
1487 call word_processor | |
681 | 1488 DISP_active_better_gas: |
152 | 1489 WIN_TOP .192 |
157 | 1490 WIN_LEFT .43 |
152 | 1491 WIN_FONT FT_SMALL |
1492 lfsr FSR2,letter | |
143 | 1493 movlw ' ' |
8 | 1494 btfsc better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1495 movlw '*' | |
1496 movwf POSTINC2 | |
0 | 1497 call word_processor |
25 | 1498 return |
0 | 1499 |
681 | 1500 DISP_active_gas_divemode4: |
0 | 1501 lfsr FSR2,letter |
1502 bsf leftbind ; left orientated output | |
1503 output_8 ; O2 ratio is still in "lo" | |
123 | 1504 PUTC '/' |
0 | 1505 movff char_I_He_ratio,lo ; copy He ratio into lo |
1506 output_8 | |
143 | 1507 PUTC ' ' |
1508 clrf WREG ; Allow up to 5 chars to avoid | |
1509 movff WREG,letter+5 ; collision with sat graphs | |
1510 bcf leftbind | |
1511 call word_processor | |
681 | 1512 rcall DISP_active_better_gas ; show *, if required |
1513 call DISP_standard_color ; Back to normal (if O2<21 and He=0) | |
143 | 1514 return |
1515 | |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1516 ;----------------------------------------------------------------------------- |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1517 ; Set color to grey when gas is inactive |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1518 ; Inputs: WREG : gas# (0..4) |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1519 ; Trashes: lo |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1520 ; New v1.44se |
681 | 1521 DISP_grey_inactive_gas: |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1522 movwf lo ; copy gas number 0-4 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1523 incf lo,F ; 1-5 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1524 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1525 read_int_eeprom d'33' ; Get First gas (1-5) |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1526 movf EEDATA,W |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1527 subwf lo,W ; Compare with current |
681 | 1528 bz DISP_white_gas ; First is always on. |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1529 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1530 movlw .28-1 ; Depth for gas# is at idx+28 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1531 addwf lo,W |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1532 movwf EEADR ; address in EEPROM. |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1533 call read_eeprom ; Read depth |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1534 clrf WREG |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1535 cpfsgt EEDATA ; is depth > 0 ? |
681 | 1536 bra DISP_grey_gas |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1537 |
287 | 1538 clrf EEADRH ; Lower page of EEPROM. |
1539 read_int_eeprom d'27' ; read flag register | |
681 | 1540 DISP_grey_inactive_gas1: |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1541 rrcf EEDATA ; roll flags into carry |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1542 decfsz lo,F ; max. 5 times... |
681 | 1543 bra DISP_grey_inactive_gas1 |
1544 bnc DISP_grey_gas ; test carry | |
1545 | |
1546 DISP_white_gas: | |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1547 GETCUSTOM8 d'35' ;movlw color_white |
681 | 1548 goto DISP_set_color ; grey out inactive gases! |
665
259e4c1bf3c2
grey-out TTS and ceiling after gas change (until new plan is ready)
heinrichsweikamp
parents:
657
diff
changeset
|
1549 ; return |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1550 |
681 | 1551 DISP_grey_gas: |
1552 DISP_grey: | |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
1553 GETCUSTOM8 d'64' ;movlw color_grey |
681 | 1554 goto DISP_set_color ; grey out inactive gases! |
665
259e4c1bf3c2
grey-out TTS and ceiling after gas change (until new plan is ready)
heinrichsweikamp
parents:
657
diff
changeset
|
1555 ; return |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1556 |
758
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1557 DISP_bailoutgas: ; Show the first bailout gas |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1558 WIN_TOP .25 |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1559 WIN_LEFT .90 |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1560 WIN_FONT FT_SMALL |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1561 WIN_INVERT .0 ; Init new Wordprocessor |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1562 call DISP_standard_color |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1563 lfsr FSR2,letter |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1564 OUTPUTTEXT .137 ; Bailout |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1565 call word_processor |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1566 WIN_TOP .50 |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1567 WIN_LEFT .90 |
765
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1568 read_int_eeprom d'33' ; Read start gas (1-5) |
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1569 movff EEDATA,hi ; Store start gas |
758
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1570 bsf leftbind |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1571 lfsr FSR2,letter |
765
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1572 STRCPY TXT_GAS1 |
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1573 movff hi,lo ; copy gas number |
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1574 output_8 ; display gas number |
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1575 STRCAT ": " |
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1576 movlw .4 |
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1577 mulwf hi ; 1-5 |
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1578 movf PRODL,W |
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1579 addlw .2 ; Gas #x: %O2 - Set address in internal EEPROM |
758
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1580 movwf EEADR |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1581 call read_eeprom ; get byte (stored in EEDATA) |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1582 movff EEDATA,lo ; copy to lo |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1583 output_8 ; outputs into Postinc2! |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1584 PUTC '/' |
771 | 1585 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
758
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1586 call read_eeprom ; get byte (stored in EEDATA) |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1587 movff EEDATA,lo ; copy to lo |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1588 output_8 ; outputs into Postinc2! |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1589 bcf leftbind |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1590 call word_processor |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1591 return |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1592 |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1593 DISP_bailoutlist: ; Show the bailout list: |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1594 bra DISP_pre_dive_screen2 |
3096294bb06e
Show the bailout list in surfacemode (CC Modes)
heinrichsweikamp
parents:
756
diff
changeset
|
1595 |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1596 ;----------------------------------------------------------------------------- |
123 | 1597 ; Display Pre-Dive Screen |
1598 | |
681 | 1599 DISP_pre_dive_screen: |
13 | 1600 ; List active gases/Setpoints |
1601 | |
1602 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
681 | 1603 bra DISP_pre_dive_screen3 ; Yes, display SetPoint/Sensor result list |
1604 | |
1605 DISP_pre_dive_screen2: | |
13 | 1606 ostc_debug 'm' ; Sends debug-information to screen if debugmode active |
1607 | |
1608 WIN_LEFT .90 | |
1609 WIN_FONT FT_SMALL | |
1610 bsf leftbind | |
1611 movlw d'2' | |
1612 movwf wait_temp ; here: stores eeprom address for gas list | |
1613 movlw d'0' | |
765
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1614 movwf waitms_temp ; here: stores row for gas list |
13 | 1615 clrf hi ; here: Gas counter |
1616 | |
681 | 1617 DISP_pre_dive_screen2_loop: |
13 | 1618 incf hi,F ; Increase Gas |
1619 movlw d'4' | |
1620 addwf wait_temp,F ; Increase eeprom address for gas list | |
1621 | |
446 | 1622 STRCPY TXT_GAS1 |
13 | 1623 movff hi,lo ; copy gas number |
1624 output_8 ; display gas number | |
123 | 1625 STRCAT ": " |
13 | 1626 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
1627 call read_eeprom ; get byte (stored in EEDATA) | |
1628 movff EEDATA,lo ; copy to lo | |
1629 output_8 ; outputs into Postinc2! | |
123 | 1630 PUTC '/' |
13 | 1631 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
1632 call read_eeprom ; get byte (stored in EEDATA) | |
1633 movff EEDATA,lo ; copy to lo | |
1634 output_8 ; outputs into Postinc2! | |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1635 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1636 decf hi,W ; Gas # in 0..4 |
681 | 1637 call DISP_grey_inactive_gas |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1638 |
765
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1639 read_int_eeprom d'33' ; Read start gas (1-5) |
13 | 1640 movf EEDATA,W |
765
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1641 cpfseq hi ; Current Gas the start gas? |
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1642 bra DISP_pre_dive_screen2a ; Yes |
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1643 bra DISP_pre_dive_screen2b ; No |
681 | 1644 |
1645 DISP_pre_dive_screen2a: | |
13 | 1646 movlw d'25' |
1647 addwf waitms_temp,F ; Increase row | |
1648 WIN_LEFT .90 | |
1649 movff waitms_temp,win_top ; Set Row | |
765
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1650 call word_processor ; Display gas |
13 | 1651 |
681 | 1652 DISP_pre_dive_screen2b: |
765
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1653 movlw d'5' ; list all four (remaining) gases |
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1654 cpfseq hi ; All gases shown? |
681 | 1655 bra DISP_pre_dive_screen2_loop ; No |
13 | 1656 |
765
aac1379d6983
BUGFIX: Show bailout list if first bailout gas <> gas
heinrichsweikamp
parents:
762
diff
changeset
|
1657 return ; No, return (OC mode) |
13 | 1658 |
681 | 1659 DISP_pre_dive_screen3: |
13 | 1660 WIN_LEFT .90 |
1661 WIN_FONT FT_SMALL | |
1662 bsf leftbind | |
681 | 1663 call DISP_standard_color |
13 | 1664 |
1665 ; list three SP in Gaslist | |
1666 movlw d'35' ; 36 = current SP position in EEPROM | |
1667 movwf wait_temp ; here: stores eeprom address for gas list | |
1668 movlw d'0' | |
1669 movwf waitms_temp ; here: stores row for gas list | |
164 | 1670 clrf apnoe_mins ; here: SP counter |
13 | 1671 |
681 | 1672 DISP_pre_dive_screen3_loop: |
13 | 1673 incf wait_temp,F ; EEPROM address |
164 | 1674 incf apnoe_mins,F ; Increase SP |
13 | 1675 |
1676 movlw d'25' | |
1677 addwf waitms_temp,F ; Increase row | |
1678 WIN_LEFT .90 | |
1679 movff waitms_temp,win_top ; Set Row | |
1680 | |
446 | 1681 STRCPY TXT_SP2 |
164 | 1682 movff apnoe_mins,lo ; copy gas number |
1683 output_8 ; display gas number | |
123 | 1684 STRCAT ": " |
164 | 1685 movff wait_temp, EEADR ; SP #hi position |
1686 call read_eeprom ; get byte (stored in EEDATA) | |
1687 movff EEDATA,lo ; copy to lo | |
13 | 1688 clrf hi |
164 | 1689 output_16dp d'3' ; outputs into Postinc2! |
13 | 1690 call word_processor |
1691 | |
164 | 1692 movlw d'3' ; list all three SP |
1693 cpfseq apnoe_mins ; All gases shown? | |
681 | 1694 bra DISP_pre_dive_screen3_loop ;no |
13 | 1695 |
655
8c01edcf57fc
Allow any diluent to be "First gas" in CCR modes
heinrichsweikamp
parents:
654
diff
changeset
|
1696 |
8c01edcf57fc
Allow any diluent to be "First gas" in CCR modes
heinrichsweikamp
parents:
654
diff
changeset
|
1697 call get_first_diluent ; Read first diluent into lo(O2) and hi(He) |
19 | 1698 WIN_LEFT .90 |
1699 WIN_TOP .100 | |
446 | 1700 STRCPY TXT_DIL4 |
19 | 1701 output_8 ; O2 Ratio |
123 | 1702 PUTC '/' |
19 | 1703 movff hi,lo |
1704 output_8 ; He Ratio | |
1705 call word_processor | |
1706 | |
13 | 1707 bcf leftbind |
1708 return ; Return (CC Mode) | |
1709 | |
681 | 1710 DISP_active_gas_surfmode: ; Displays start gas/SP 1 |
0 | 1711 ostc_debug 'q' ; Sends debug-information to screen if debugmode active |
1712 | |
1713 btfsc FLAG_apnoe_mode ; In Apnoe mode? | |
1714 return ; Yes, return | |
1715 | |
1716 btfsc gauge_mode ; In Gauge mode? | |
1717 return ; Yes, return | |
1718 | |
1719 btfss FLAG_const_ppO2_mode ; are we in const. ppO2 mode? | |
681 | 1720 bra DISP_active_gas_surfmode2 ; No, display gases |
0 | 1721 |
1722 ; In CC Mode | |
1723 WIN_TOP .135 | |
1724 WIN_LEFT .90 | |
1725 WIN_FONT FT_SMALL | |
1726 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1727 call DISP_standard_color |
3 | 1728 |
772
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1729 lfsr FSR2,letter |
0 | 1730 read_int_eeprom d'36' |
1731 movff EEDATA,lo ; copy to lo | |
1732 clrf hi | |
1733 output_16dp d'3' ; outputs into Postinc2! | |
772
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1734 STRCAT_PRINT TXT_BAR3 |
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1735 |
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1736 bsf leftbind |
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1737 call get_first_diluent ; Read first diluent into lo(O2) and hi(He) |
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1738 WIN_TOP .160 |
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1739 WIN_LEFT .104 |
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1740 lfsr FSR2,letter |
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1741 output_8 ; O2 Ratio |
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1742 PUTC '/' |
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1743 movff hi,lo |
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1744 output_8 ; He Ratio |
5d6da9ddde27
NEW: Show First Diluent (CCR Mode) permantely in surface mode
heinrichsweikamp
parents:
771
diff
changeset
|
1745 STRCAT_PRINT "" |
0 | 1746 bcf leftbind |
607 | 1747 return ; Done. |
0 | 1748 |
681 | 1749 DISP_active_gas_surfmode2: |
692 | 1750 clrf EEADRH ; Select EEPROM lower page. |
1751 read_int_eeprom d'33' ; Get First gas (1-5) | |
1752 movff EEDATA,hi ; into register hi | |
1753 | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1754 WIN_TOP .175 |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1755 WIN_FONT FT_SMALL |
692 | 1756 WIN_INVERT .0 ; Init new Wordprocessor |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1757 movlw .0 |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1758 call DISP_grey_inactive_gas ; Sets Greyvalue for inactive gases |
690 | 1759 WIN_LEFT .115 |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1760 STRCPY_PRINT "1" |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1761 movlw .1 |
692 | 1762 cpfseq hi ; Is "first gas"? |
1763 bra DISP_active_gas_surfmode3 ; No, skip box | |
1764 WIN_FRAME_STD .174, .196, .114, .122 ;top, bottom, left, right | |
1765 DISP_active_gas_surfmode3: | |
1766 movlw .1 | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1767 call DISP_grey_inactive_gas ; Sets Greyvalue for inactive gases |
690 | 1768 WIN_LEFT .124 |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1769 STRCPY_PRINT "2" |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1770 movlw .2 |
692 | 1771 cpfseq hi ; Is "first gas"? |
1772 bra DISP_active_gas_surfmode4 ; No, skip box | |
1773 WIN_FRAME_STD .174, .196, .123, .131 ;top, bottom, left, right | |
1774 DISP_active_gas_surfmode4: | |
1775 movlw .2 | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1776 call DISP_grey_inactive_gas ; Sets Greyvalue for inactive gases |
690 | 1777 WIN_LEFT .133 |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1778 STRCPY_PRINT "3" |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1779 movlw .3 |
692 | 1780 cpfseq hi ; Is "first gas"? |
1781 bra DISP_active_gas_surfmode5 ; No, skip box | |
1782 WIN_FRAME_STD .174, .196, .132, .140 ;top, bottom, left, right | |
1783 DISP_active_gas_surfmode5: | |
1784 movlw .3 | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1785 call DISP_grey_inactive_gas ; Sets Greyvalue for inactive gases |
690 | 1786 WIN_LEFT .142 |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1787 STRCPY_PRINT "4" |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1788 movlw .4 |
692 | 1789 cpfseq hi ; Is "first gas"? |
1790 bra DISP_active_gas_surfmode6 ; No, skip box | |
1791 WIN_FRAME_STD .174, .196, .141, .149 ;top, bottom, left, right | |
1792 DISP_active_gas_surfmode6: | |
1793 movlw .4 | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1794 call DISP_grey_inactive_gas ; Sets Greyvalue for inactive gases |
690 | 1795 WIN_LEFT .151 |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1796 STRCPY_PRINT "5" |
692 | 1797 movlw .5 |
1798 cpfseq hi ; Is "first gas"? | |
1799 bra DISP_active_gas_surfmode7 ; No, skip box | |
1800 WIN_FRAME_STD .174, .196, .150, .158 ;top, bottom, left, right | |
1801 DISP_active_gas_surfmode7: | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1802 |
0 | 1803 WIN_TOP .130 |
1804 WIN_LEFT .100 | |
1805 WIN_FONT FT_MEDIUM | |
681 | 1806 call DISP_standard_color |
3 | 1807 |
0 | 1808 read_int_eeprom d'33' ; Read byte (stored in EEDATA) |
1809 movff EEDATA,active_gas ; Read start gas (1-5) | |
1810 | |
1811 decf active_gas,W ; Gas 0-4 | |
1812 mullw d'4' | |
1813 movf PRODL,W | |
1814 addlw d'7' ; = address for He ratio | |
1815 movwf EEADR | |
1816 call read_eeprom ; Read He ratio | |
1817 movff EEDATA,char_I_He_ratio ; And copy into hold register | |
1818 | |
1819 decf active_gas,W ; Gas 0-4 | |
1820 mullw d'4' | |
1821 movf PRODL,W | |
1822 addlw d'6' ; = address for O2 ratio | |
1823 movwf EEADR | |
1824 call read_eeprom ; Read O2 ratio | |
1825 movff EEDATA, char_I_O2_ratio ; O2 ratio | |
1826 movff char_I_He_ratio, wait_temp ; copy into bank1 register | |
1827 bsf STATUS,C ; Borrow bit | |
1828 movlw d'100' ; 100% | |
1829 subfwb wait_temp,W ; minus He | |
1830 bsf STATUS,C ; Borrow bit | |
1831 subfwb EEDATA,F ; minus O2 | |
1832 movff EEDATA, char_I_N2_ratio ; = N2! | |
1833 | |
1834 movlw d'100' ; 100% in the tank | |
1835 movff char_I_N2_ratio,lo ; minus N2 | |
1836 bsf STATUS,C ; set borrow bit | |
1837 subfwb lo,W | |
1838 movff char_I_He_ratio,lo ; minus He | |
1839 bsf STATUS,C ; set borrow bit | |
1840 subfwb lo,F ; =% O2 | |
1841 | |
1842 movff char_I_He_ratio,hi ; Copy into Bank1 register | |
1843 | |
1844 movlw d'21' | |
607 | 1845 cpfseq lo ; Air? (O2=21%) |
692 | 1846 bra DISP_active_gas_surfmode8 ; No! |
0 | 1847 tstfsz hi ; Air? (He=0%) |
692 | 1848 bra DISP_active_gas_surfmode8 ; No! |
0 | 1849 |
1850 ; Yes, display "Air" instead of 21/0 | |
1851 DISPLAYTEXTH d'265' ;"Air ", y-scale=2 | |
607 | 1852 return ; Done. |
0 | 1853 |
692 | 1854 DISP_active_gas_surfmode8: |
0 | 1855 lfsr FSR2,letter |
1856 bsf leftbind ; left orientated output | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
77
diff
changeset
|
1857 output_99 ; O2 ratio is still in "lo" |
607 | 1858 movff char_I_He_ratio,lo ; copy He ratio into lo |
1859 tstfsz lo ; He>0? | |
692 | 1860 bra DISP_active_gas_surfmode9 ; Yes. |
1861 bra DISP_active_gas_surfmode10 ; No, skip He | |
1862 DISP_active_gas_surfmode9: | |
123 | 1863 PUTC '/' |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
77
diff
changeset
|
1864 output_99 |
692 | 1865 DISP_active_gas_surfmode10: |
0 | 1866 bcf leftbind |
1867 call word_processor | |
607 | 1868 |
681 | 1869 rcall DISP_mainscreen_show_nx |
607 | 1870 tstfsz lo ; He>0? |
681 | 1871 rcall DISP_mainscreen_show_tx ; Yes |
607 | 1872 return ; Done. |
1873 | |
681 | 1874 DISP_mainscreen_show_tx: |
607 | 1875 WIN_LEFT .85 |
1876 WIN_FONT FT_SMALL | |
1877 WIN_INVERT .0 ; Init new Wordprocessor | |
1878 WIN_TOP .127 | |
1879 | |
1880 STRCPY_PRINT TXT_TX1 | |
1881 WIN_TOP .148 | |
1882 STRCPY_PRINT TXT_TX2 | |
0 | 1883 return |
681 | 1884 DISP_mainscreen_show_nx: |
607 | 1885 WIN_LEFT .85 |
1886 WIN_TOP .127 | |
1887 WIN_FONT FT_SMALL | |
1888 WIN_INVERT .0 ; Init new Wordprocessor | |
1889 | |
1890 STRCPY_PRINT TXT_NX1 | |
1891 WIN_TOP .148 | |
1892 STRCPY_PRINT TXT_NX2 | |
1893 return | |
1894 | |
0 | 1895 |
681 | 1896 DISP_confirmbox: |
204 | 1897 WIN_BOX_BLACK .68, .146, .34, .101 ;top, bottom, left, right |
123 | 1898 WIN_FRAME_STD .70, .144, .35, .100 |
1899 | |
717 | 1900 call DISP_divemask_color |
0 | 1901 DISPLAYTEXT .143 ; Confirm: |
717 | 1902 call DISP_standard_color |
0 | 1903 DISPLAYTEXT .145 ; Cancel |
1904 DISPLAYTEXT .146 ; OK! | |
1905 | |
1906 movlw d'1' | |
1907 movwf menupos | |
1908 | |
681 | 1909 DISP_confirmbox2: |
204 | 1910 WIN_BOX_BLACK .96, .143, .39, .51 ;top, bottom, left, right |
0 | 1911 |
1912 movff menupos,temp1 | |
1913 movlw d'96' | |
1914 dcfsnz temp1,F | |
1915 movlw d'96' | |
1916 dcfsnz temp1,F | |
1917 movlw d'120' | |
1918 movff WREG,win_top | |
1919 WIN_LEFT .39 | |
1920 WIN_FONT FT_SMALL | |
1921 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1922 call DISP_standard_color |
3 | 1923 |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
1924 STRCPY_PRINT "\xB7" ; Cursor |
0 | 1925 |
1926 bcf sleepmode ; clear some flags | |
1927 bcf menubit2 | |
1928 bcf menubit3 | |
1929 bcf switch_right | |
1930 bcf switch_left | |
1931 clrf timeout_counter2 | |
1932 WAITMS d'100' | |
1933 | |
681 | 1934 DISP_confirmbox_loop: |
0 | 1935 call check_switches_logbook |
1936 | |
1937 btfsc menubit3 ; SET/MENU? | |
681 | 1938 bra DISP_confirmbox_move_cursor; Move Cursor |
0 | 1939 btfsc menubit2 ; ENTER? |
681 | 1940 bra DISP_confirmbox_menu_do ; Do task |
0 | 1941 |
1942 btfsc onesecupdate | |
1943 call timeout_surfmode ; timeout | |
1944 | |
1945 btfsc onesecupdate | |
1946 call set_dive_modes ; check, if divemode must be entered | |
1947 bcf onesecupdate ; one second update | |
1948 | |
1949 btfsc sleepmode ; Timeout? | |
681 | 1950 bra DISP_confirmbox_cancel ; back with cancel |
0 | 1951 btfsc divemode |
681 | 1952 bra DISP_confirmbox_cancel ; back with cancel |
1953 | |
1954 bra DISP_confirmbox_loop ; wait for something to do | |
1955 | |
1956 DISP_confirmbox_cancel: | |
0 | 1957 retlw .0 |
681 | 1958 DISP_confirmbox_ok: |
0 | 1959 retlw .1 |
1960 | |
681 | 1961 DISP_confirmbox_menu_do: |
0 | 1962 dcfsnz menupos,F |
681 | 1963 bra DISP_confirmbox_cancel |
0 | 1964 dcfsnz menupos,F |
681 | 1965 bra DISP_confirmbox_ok |
1966 bra DISP_confirmbox_cancel | |
1967 | |
1968 DISP_confirmbox_move_cursor: | |
0 | 1969 incf menupos,F |
1970 movlw d'3' ; number of menu options+1 | |
1971 cpfseq menupos ; =limit? | |
681 | 1972 bra DISP_confirmbox_move_cursor2 ; No! |
0 | 1973 movlw d'1' ; Yes, reset to position 1! |
1974 movwf menupos | |
681 | 1975 DISP_confirmbox_move_cursor2: |
1976 bra DISP_confirmbox2 ; Return to Profile Menu, also updates cursor | |
1977 | |
1978 | |
1979 DISP_depth: | |
529 | 1980 ; ostc_debug 'r' ; Sends debug-information to screen if debugmode active |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1981 SAFE_2BYTE_COPY rel_pressure, lo |
517 | 1982 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
0 | 1983 |
1984 movlw .039 | |
1985 cpfslt hi | |
517 | 1986 bra depth_greater_99_84mtr |
1987 | |
1988 btfsc depth_greater_100m ; Was depth>100m during last call | |
681 | 1989 call DISP_clear_depth ; Yes, clear depth area |
517 | 1990 bcf depth_greater_100m ; Do this once only... |
0 | 1991 |
1992 lfsr FSR2,letter | |
1993 | |
1994 movlw HIGH d'1000' | |
1995 movwf sub_a+1 | |
1996 movlw LOW d'1000' | |
1997 movwf sub_a+0 | |
1998 movff hi,sub_b+1 | |
1999 movff lo,sub_b+0 | |
2000 incf sub_b+0,F | |
2001 movlw d'0' | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
2002 addwfc sub_b+1,F ; Add 1mbar offset |
0 | 2003 call sub16 ; sub_c = sub_a - sub_b |
517 | 2004 btfss neg_flag ; Depth lower then 10m? |
2005 rcall depth_less_10mtr ; Yes, add extra space | |
0 | 2006 |
2007 WIN_TOP .24 | |
2008 WIN_LEFT .0 | |
2009 WIN_FONT FT_LARGE | |
2010 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 2011 DISP_color_code warn_depth ; Color-code the output |
0 | 2012 |
2013 movlw HIGH d'99' | |
2014 movwf sub_a+1 | |
2015 movlw LOW d'99' | |
2016 movwf sub_a+0 | |
2017 movff hi,sub_b+1 | |
2018 movff lo,sub_b+0 | |
2019 call sub16 ; sub_c = sub_a - sub_b | |
517 | 2020 btfss neg_flag ; Depth lower then 1m? |
681 | 2021 bra DISP_depth2 ; Yes, display manual Zero |
0 | 2022 |
2023 bsf leftbind | |
2024 bsf ignore_digit4 | |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2025 output_16 ; Full meters in Big font |
0 | 2026 bcf leftbind |
681 | 2027 bra DISP_depth3 |
2028 | |
2029 DISP_depth2: | |
123 | 2030 PUTC '0' |
2031 | |
681 | 2032 DISP_depth3: |
0 | 2033 call word_processor |
2034 bcf ignore_digit4 | |
2035 | |
2036 WIN_FONT FT_MEDIUM | |
2037 WIN_TOP .50 | |
2038 WIN_LEFT .40 | |
681 | 2039 DISP_color_code warn_depth ; Color-code the output |
0 | 2040 |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
2041 SAFE_2BYTE_COPY rel_pressure, lo |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
2042 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
123 | 2043 |
2044 STRCPY "." | |
0 | 2045 |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2046 movlw HIGH d'20' ; Display 0.0m if lower then 20cm |
0 | 2047 movwf sub_a+1 |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2048 movlw LOW d'20' |
0 | 2049 movwf sub_a+0 |
2050 movff hi,sub_b+1 | |
2051 movff lo,sub_b+0 | |
2052 call sub16 ; sub_c = sub_a - sub_b | |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2053 btfss neg_flag ; Depth lower then 0.3m? |
681 | 2054 bra DISP_depth4 ; Yes, display manual Zero |
0 | 2055 |
2056 movlw d'4' | |
2057 movwf ignore_digits | |
2058 bsf ignore_digit5 | |
2059 output_16dp d'0' | |
681 | 2060 bra DISP_depth5 |
2061 | |
2062 DISP_depth4: | |
123 | 2063 PUTC '0' |
0 | 2064 |
681 | 2065 DISP_depth5: |
0 | 2066 call word_processor ; decimeters in medium font |
2067 bcf ignore_digit5 | |
2068 WIN_FONT FT_SMALL | |
2069 return | |
2070 | |
517 | 2071 depth_greater_99_84mtr: ; Display only in full meters |
2072 btfss depth_greater_100m ; Is depth>100m already? | |
681 | 2073 call DISP_clear_depth ; No, clear depth area and set flag |
0 | 2074 ; Depth is already in hi:lo |
517 | 2075 ; Show depth in Full meters |
0 | 2076 ; That means ignore figure 4 and 5 |
2077 lfsr FSR2,letter | |
2078 WIN_TOP .24 | |
2079 WIN_LEFT .0 | |
2080 WIN_FONT FT_LARGE | |
2081 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 2082 DISP_color_code warn_depth ; Color-code the output |
3 | 2083 |
0 | 2084 bsf ignore_digit4 |
2085 bsf leftbind | |
2086 output_16 | |
2087 bcf leftbind | |
2088 call word_processor | |
2089 bcf ignore_digit4 | |
2090 WIN_FONT FT_SMALL | |
2091 return | |
2092 | |
517 | 2093 depth_less_10mtr: |
123 | 2094 PUTC ' ' |
0 | 2095 return |
2096 | |
681 | 2097 DISP_clear_depth ; No, clear depth area and set flag |
204 | 2098 WIN_BOX_BLACK .24, .90, .0, .90 ;top, bottom, left, right |
517 | 2099 bsf depth_greater_100m ; Set Flag |
0 | 2100 return |
2101 | |
681 | 2102 DISP_desaturation_time: |
140 | 2103 movff int_O_desaturation_time+0,lo |
2104 movff int_O_desaturation_time+1,hi ; Copy | |
2105 tstfsz lo ; =0? | |
681 | 2106 bra DISP_desaturation_time2 ; No! |
140 | 2107 tstfsz hi ; =0? |
681 | 2108 bra DISP_desaturation_time2 ; No! |
140 | 2109 return ; Do not display Desat |
2110 | |
681 | 2111 DISP_desaturation_time2: |
0 | 2112 ostc_debug 'h' |
2113 WIN_TOP .150 | |
56 | 2114 WIN_LEFT .1 |
0 | 2115 WIN_FONT FT_SMALL |
2116 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 2117 call DISP_standard_color |
3 | 2118 |
0 | 2119 lfsr FSR2,letter |
2120 OUTPUTTEXT d'14' ; Desat | |
123 | 2121 PUTC ' ' |
255
1efd59d689f8
small change in the set time menu, default setpoints set to 0.8, 1.0 and 1.2Bar
heinrichsweikamp
parents:
254
diff
changeset
|
2122 movff desaturation_time_buffer+0,lo ; divide by 60... |
1efd59d689f8
small change in the set time menu, default setpoints set to 0.8, 1.0 and 1.2Bar
heinrichsweikamp
parents:
254
diff
changeset
|
2123 movff desaturation_time_buffer+1,hi |
254 | 2124 |
0 | 2125 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) |
2126 bsf leftbind | |
2127 movf lo,W | |
2128 movff hi,lo | |
2129 movwf hi ; exchange lo and hi... | |
2130 output_8 ; Hours | |
123 | 2131 PUTC ':' |
402 | 2132 movff hi,lo ; Minutes |
0 | 2133 output_99x |
2134 bcf leftbind | |
402 | 2135 PUTC ' ' |
2136 ; clrf WREG ; Allow up to 5 chars to avoid | |
2137 ; movff WREG,letter+6 ; collision with decotype letters | |
0 | 2138 call word_processor |
2139 return | |
2140 | |
681 | 2141 DISP_nofly_time: |
249 | 2142 movf nofly_time+0,W ; Is nofly null ? |
2143 iorwf nofly_time+1,W | |
681 | 2144 bnz DISP_nofly_time2 ; No... |
140 | 2145 return |
249 | 2146 |
681 | 2147 DISP_nofly_time2: |
0 | 2148 ostc_debug 'g' |
2149 WIN_TOP .125 | |
56 | 2150 WIN_LEFT .1 |
0 | 2151 WIN_FONT FT_SMALL |
2152 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 2153 call DISP_standard_color |
3 | 2154 |
0 | 2155 lfsr FSR2,letter |
2156 OUTPUTTEXT d'35' ; NoFly | |
123 | 2157 PUTC ' ' |
0 | 2158 movff nofly_time+0,lo ; divide by 60... |
2159 movff nofly_time+1,hi | |
249 | 2160 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) |
0 | 2161 bsf leftbind |
2162 movf lo,W | |
2163 movff hi,lo | |
519 | 2164 movwf hi ; exchange lo and hi... |
2165 output_8 ; Hours | |
123 | 2166 PUTC ':' |
0 | 2167 movff hi,lo ; Minutes |
2168 output_99x | |
2169 bcf leftbind | |
402 | 2170 PUTC ' ' |
2171 ; clrf WREG ; Allow up to 5 chars to avoid | |
2172 ; movff WREG,letter+6 ; collision with decotype letters | |
0 | 2173 call word_processor |
2174 return | |
2175 | |
2176 | |
2177 update_surf_press: | |
2178 btfsc premenu ; Do not update when "Menu?" is displayed! | |
2179 return | |
2180 | |
2181 ostc_debug 'b' ; Sends debug-information to screen if debugmode active | |
2182 WIN_TOP .25 | |
56 | 2183 WIN_LEFT .1 |
0 | 2184 WIN_FONT FT_SMALL |
2185 WIN_INVERT .0 ; Init new Wordprocessor | |
239 | 2186 |
410
c6f9eb123b85
remove of red ambient pressure (High altitude mode)
heinrichsweikamp
parents:
408
diff
changeset
|
2187 ; btfss high_altitude_mode ; In high altitude mode? |
681 | 2188 call DISP_standard_color ; No |
410
c6f9eb123b85
remove of red ambient pressure (High altitude mode)
heinrichsweikamp
parents:
408
diff
changeset
|
2189 ; btfsc high_altitude_mode ; In high altitude mode? |
681 | 2190 ; call DISP_warnings_color ; Yes, display ambient pressure in red |
239 | 2191 |
401
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2192 SAFE_2BYTE_COPY amb_pressure, lo |
0 | 2193 lfsr FSR2,letter |
401
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2194 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2195 movff lo,sub_a+0 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2196 movff hi,sub_a+1 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2197 movff last_surfpressure_30min+0,sub_b+0 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2198 movff last_surfpressure_30min+1,sub_b+1 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2199 call sub16 ; sub_c = sub_a - sub_b |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2200 btfsc neg_flag ; Pressure lower? |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2201 rcall update_surf_press2 ; Yes, test threshold |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2202 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2203 tstfsz sub_c+1 ; >255mbar difference? |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2204 bra update_surf_press_common; Yes, display! |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2205 movlw d'5' |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2206 subwf sub_c+0,W |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2207 btfsc STATUS,C |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2208 bra update_surf_press_common; Yes, display! |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2209 ; PUTC '+' ; For debug only |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2210 SAFE_2BYTE_COPY last_surfpressure_30min, lo ; Overwrite with stable value... |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2211 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2212 update_surf_press_common: |
0 | 2213 bsf leftbind |
2214 output_16 | |
2215 bcf leftbind | |
446 | 2216 STRCAT_PRINT TXT_MBAR5 |
681 | 2217 call DISP_standard_color ; Reset color |
0 | 2218 return |
2219 | |
401
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2220 update_surf_press2: |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2221 movff lo,sub_b+0 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2222 movff hi,sub_b+1 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2223 movff last_surfpressure_30min+0,sub_a+0 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2224 movff last_surfpressure_30min+1,sub_a+1 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2225 call sub16 ; sub_c = sub_a - sub_b |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2226 ; PUTC '-' ; For debug only |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2227 return |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2228 |
0 | 2229 update_batt_voltage_divemode: |
681 | 2230 call DISP_warnings_color |
141 | 2231 DISPLAYTEXT d'246' ; LowBatt! |
681 | 2232 call DISP_standard_color |
141 | 2233 return |
0 | 2234 |
791
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2235 update_batt_voltage_clear: ; Clear every two seconds if on_time_seconds:3 > CF74*60 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2236 movff on_time_seconds+0,xC+0 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2237 movff on_time_seconds+1,xC+1 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2238 movff on_time_seconds+2,xC+2 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2239 clrf xC+4 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2240 movlw .60 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2241 movwf xB+0 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2242 clrf xB+1 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2243 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2244 movff xC+0,sub_b+0 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2245 movff xC+1,sub_b+1 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2246 GETCUSTOM15 d'74' |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2247 movff lo,sub_a+0 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2248 movff hi,sub_a+1 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2249 call sub16 ; sub_c = sub_a - sub_b |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2250 btfss neg_flag |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2251 bra update_batt_voltage0 ; Normal display |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2252 WIN_BOX_BLACK .174, .194, .1, .34 ;top, bottom, left, right |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2253 return |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2254 |
0 | 2255 update_batt_voltage: |
2256 ostc_debug 'f' | |
791
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2257 btfss secs,0 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2258 bra update_batt_voltage_clear ; Clear every two seconds if on_time_seconds:3 > CF74*60 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2259 |
a652b0ff4dcf
NEW: CF74: Battery Timeout [min] - Battery symbol will blink if the OSTC was
heinrichsweikamp
parents:
785
diff
changeset
|
2260 update_batt_voltage0: |
0 | 2261 GETCUSTOM8 d'31' ; =1 if battery voltage should be visible |
2262 movwf lo | |
2263 movlw d'1' | |
2264 cpfseq lo ; =1? | |
2265 bra update_batt_voltage2 ; No, show symbol | |
2266 | |
2267 WIN_TOP .175 | |
56 | 2268 WIN_LEFT .1 |
0 | 2269 WIN_FONT FT_SMALL |
2270 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 2271 call DISP_standard_color |
3 | 2272 |
0 | 2273 lfsr FSR2,letter |
2274 movff batt_voltage+0,lo | |
2275 movff batt_voltage+1,hi | |
2276 movlw d'1' | |
2277 movwf ignore_digits | |
2278 bsf ignore_digit5 ; do not display mV | |
2279 bsf leftbind | |
2280 output_16dp d'2' ; e.g. 3.45V | |
2281 bcf leftbind | |
446 | 2282 STRCAT_PRINT TXT_VOLT2 |
0 | 2283 return |
2284 | |
2285 update_batt_voltage2: | |
123 | 2286 WIN_FRAME_STD .174, .194, .1, .32 |
0 | 2287 |
25 | 2288 ; 4100-Vbatt |
2289 movlw LOW d'4100' | |
0 | 2290 movwf sub_a+0 |
25 | 2291 movlw HIGH d'4100' |
0 | 2292 movwf sub_a+1 |
2293 movff batt_voltage+0,sub_b+0 | |
2294 movff batt_voltage+1,sub_b+1 | |
2295 call sub16 ; sub_c = sub_a - sub_b | |
25 | 2296 ; Battery full (>4100mV? |
0 | 2297 btfsc neg_flag |
2298 bra update_batt_voltage2_full | |
2299 | |
25 | 2300 ; Vbatt-3500 |
2301 movlw LOW d'3500' | |
0 | 2302 movwf sub_b+0 |
25 | 2303 movlw HIGH d'3500' |
0 | 2304 movwf sub_b+1 |
2305 movff batt_voltage+0,sub_a+0 | |
2306 movff batt_voltage+1,sub_a+1 | |
2307 call sub16 ; sub_c = sub_a - sub_b | |
25 | 2308 ; Battery lower then 3500mV? |
0 | 2309 btfsc neg_flag |
2310 bra update_batt_voltage2_empty | |
2311 | |
25 | 2312 ; Battery is between 3500 and 4100mV |
0 | 2313 ; sub_c:2 is between 0 and 600 |
2314 movff sub_c+0,xA+0 | |
2315 movff sub_c+1,xA+1 | |
2316 movlw d'20' | |
2317 movwf xB+0 | |
2318 clrf xB+1 | |
2319 call div16x16 ;xA/xB=xC with xA as remainder | |
2320 ; xC is between 0 and 30 | |
2321 movff xC+0,wait_temp ;save value | |
56 | 2322 incf wait_temp,F ; +1 |
2323 | |
2324 movlw d'3' | |
0 | 2325 cpfsgt wait_temp |
56 | 2326 movwf wait_temp ; Minimum = 3 |
0 | 2327 |
2328 update_batt_voltage2a: | |
519 | 2329 WIN_BOX_STD .181, .187, .32, .34 ; Battery nose |
25 | 2330 |
0 | 2331 update_batt_voltage3: |
25 | 2332 GETCUSTOM8 d'34' ; Color battery |
283
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
281
diff
changeset
|
2333 btfsc cc_active |
719 | 2334 ; movlw color_yellow ; CC active |
2335 movlw color_orange ; CC active | |
285 | 2336 btfsc charge_done |
2337 movlw color_green ; Charge done. | |
681 | 2338 call DISP_set_color |
123 | 2339 |
519 | 2340 movlw .175 |
2341 movff WREG,win_top ; row top (0-239) | |
2342 movlw .19 | |
2343 movff WREG,win_height | |
2344 movlw .2 | |
2345 movff WREG,win_leftx2 ; column left (0-159) | |
123 | 2346 movff wait_temp,win_width ; column right (0-159) |
681 | 2347 call DISP_box |
2348 call DISP_standard_color | |
0 | 2349 return |
519 | 2350 |
0 | 2351 update_batt_voltage2_empty: |
2352 movlw d'1' | |
2353 movwf wait_temp | |
2354 bra update_batt_voltage2a | |
2355 | |
2356 update_batt_voltage2_full: | |
2357 movlw d'30' | |
2358 movwf wait_temp | |
25 | 2359 bra update_batt_voltage2a |
0 | 2360 |
681 | 2361 DISP_convert_signed_temperature: |
382
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2362 btfss hi,7 ; Negative temperature ? |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2363 return ; No, return |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2364 ; Yes, negative temperature! |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2365 PUTC '-' ; Display "-" |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2366 comf hi ; Then, 16bit sign changes. |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2367 negf lo |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2368 btfsc STATUS,C |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2369 incf hi |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2370 return ; and return |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2371 |
681 | 2372 DISP_convert_date: ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 |
0 | 2373 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) |
2374 tstfsz EEDATA | |
681 | 2375 bra DISP_convert_date1 |
0 | 2376 |
2377 ; Use MMDDYY | |
2378 movff convert_value_temp+0,lo ;month | |
2379 bsf leftbind | |
2380 output_99x | |
2381 bcf leftbind | |
140 | 2382 PUTC '.' |
0 | 2383 movff convert_value_temp+1,lo ;day |
681 | 2384 bra DISP_convert_date1_common ;year |
2385 | |
2386 DISP_convert_date1: | |
0 | 2387 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) |
2388 decfsz EEDATA,F | |
681 | 2389 bra DISP_convert_date2 |
0 | 2390 |
2391 ; Use DDMMYY | |
2392 movff convert_value_temp+1,lo ;day | |
2393 bsf leftbind | |
2394 output_99x | |
2395 bcf leftbind | |
140 | 2396 PUTC '.' |
0 | 2397 movff convert_value_temp+0,lo ;month |
2398 | |
681 | 2399 DISP_convert_date1_common: |
0 | 2400 bsf leftbind |
2401 output_99x | |
2402 bcf leftbind | |
140 | 2403 PUTC '.' |
0 | 2404 movff convert_value_temp+2,lo ;year |
2405 bsf leftbind | |
2406 output_99x | |
2407 return | |
2408 | |
681 | 2409 DISP_convert_date2: |
0 | 2410 ; Use YYMMDD |
2411 movff convert_value_temp+2,lo ;year | |
2412 bsf leftbind | |
2413 output_99x | |
2414 bcf leftbind | |
140 | 2415 PUTC '.' |
0 | 2416 movff convert_value_temp+0,lo ;month |
2417 bsf leftbind | |
2418 output_99x | |
2419 bcf leftbind | |
140 | 2420 PUTC '.' |
0 | 2421 movff convert_value_temp+1,lo ;day |
2422 bsf leftbind | |
2423 output_99x | |
2424 return | |
2425 | |
681 | 2426 DISP_convert_date_short: ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2 |
0 | 2427 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) |
2428 tstfsz EEDATA | |
681 | 2429 bra DISP_convert_date_short1 |
0 | 2430 |
2431 ; Use MMDDYY | |
681 | 2432 DISP_convert_date_short_common: |
0 | 2433 movff convert_value_temp+0,lo ;month |
2434 bsf leftbind | |
2435 output_99x | |
2436 bcf leftbind | |
140 | 2437 PUTC '.' |
0 | 2438 movff convert_value_temp+1,lo ;day |
2439 bsf leftbind | |
2440 output_99x | |
2441 bcf leftbind | |
2442 return | |
2443 | |
681 | 2444 DISP_convert_date_short1: |
0 | 2445 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) |
2446 decfsz EEDATA,F | |
681 | 2447 bra DISP_convert_date_short_common ; Use YYMMDD |
0 | 2448 |
2449 ; Use DDMMYY | |
2450 movff convert_value_temp+1,lo ;day | |
2451 bsf leftbind | |
2452 output_99x | |
2453 bcf leftbind | |
140 | 2454 PUTC '.' |
0 | 2455 movff convert_value_temp+0,lo ;month |
2456 bsf leftbind | |
2457 output_99x | |
2458 bcf leftbind | |
2459 return | |
2460 | |
2461 update_date: | |
2462 ostc_debug 'd' | |
2463 WIN_TOP .75 | |
56 | 2464 WIN_LEFT .1 |
0 | 2465 WIN_FONT FT_SMALL |
2466 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 2467 call DISP_standard_color |
3 | 2468 |
0 | 2469 lfsr FSR2,letter |
2470 | |
2471 movff month,convert_value_temp+0 | |
2472 movff day,convert_value_temp+1 | |
2473 movff year,convert_value_temp+2 | |
681 | 2474 call DISP_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 |
0 | 2475 call word_processor |
2476 return | |
2477 | |
681 | 2478 DISP_menu_clear: |
637 | 2479 WIN_BOX_BLACK .0, .26, .50, .100 ;top, bottom, left, right |
0 | 2480 return |
2481 | |
681 | 2482 DISP_max_pressure: |
0 | 2483 ostc_debug 'p' ; Sends debug-information to screen if debugmode active |
75 | 2484 movff max_pressure+0,lo |
2485 movff max_pressure+1,hi | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
2486 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
75 | 2487 |
2488 movlw .039 | |
2489 cpfslt hi | |
517 | 2490 bra maxdepth_greater_99_84mtr |
75 | 2491 |
2492 ; Display normal "xx.y" | |
2493 lfsr FSR2,letter | |
681 | 2494 call DISP_standard_color |
654 | 2495 WIN_TOP .207 |
0 | 2496 WIN_LEFT .0 |
2497 WIN_FONT FT_MEDIUM | |
2498 WIN_INVERT .0 ; Init new Wordprocessor | |
2499 bsf leftbind | |
2500 bsf ignore_digit5 ; do not display 1cm depth | |
2501 output_16dp d'3' | |
2502 bcf leftbind | |
2503 bcf show_last3 | |
2504 call word_processor | |
2505 WIN_FONT FT_SMALL | |
2506 return | |
2507 | |
517 | 2508 maxdepth_greater_99_84mtr: ; Display only in full meters |
2509 btfss maxdepth_greater_100m ; Is max.depth>100m already? | |
681 | 2510 call DISP_clear_maxdepth ; No, clear maxdepth area and set flag |
75 | 2511 ; max Depth is already in hi:lo |
517 | 2512 ; Show max depth in Full meters |
75 | 2513 ; That means ignore figure 4 and 5 |
2514 lfsr FSR2,letter | |
681 | 2515 call DISP_standard_color |
654 | 2516 WIN_TOP .207 |
75 | 2517 WIN_LEFT .0 |
2518 WIN_FONT FT_MEDIUM | |
2519 WIN_INVERT .0 ; Init new Wordprocessor | |
2520 | |
2521 bsf ignore_digit4 | |
2522 bsf leftbind | |
2523 output_16 | |
2524 bcf leftbind | |
2525 call word_processor | |
2526 bcf ignore_digit4 | |
2527 WIN_FONT FT_SMALL | |
2528 return | |
2529 | |
681 | 2530 DISP_clear_maxdepth: |
654 | 2531 WIN_BOX_BLACK .207, .239, .0, .41 ;top, bottom, left, right |
517 | 2532 bsf maxdepth_greater_100m ; Set Flag |
75 | 2533 return |
2534 | |
681 | 2535 DISP_divemins: |
0 | 2536 btfsc menubit ; Divemode menu active? |
2537 return ; Yes, do not update divetime | |
2538 | |
2539 ostc_debug 'A' ; Sends debug-information to screen if debugmode active | |
2540 | |
2541 btfsc gauge_mode ; different display in gauge mode | |
681 | 2542 bra DISP_divemins_gauge |
0 | 2543 |
2544 btfsc FLAG_apnoe_mode ; different display in apnoe mode | |
681 | 2545 bra DISP_divemins_apnoe |
0 | 2546 |
2547 GETCUSTOM8 d'38' ; Show seconds (=1?) | |
2548 movwf lo | |
2549 movlw d'1' | |
2550 cpfseq lo ; =1? | |
681 | 2551 bra DISP_divemins2 ; No, minutes only |
2552 bra DISP_divemins_gauge ; Yes, use Gauge routine | |
0 | 2553 |
681 | 2554 DISP_divemins2: |
0 | 2555 movff divemins+0,lo |
2556 movff divemins+1,hi | |
2557 bcf leftbind | |
2558 lfsr FSR2,letter | |
2559 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
2560 WIN_TOP .20 | |
2561 WIN_LEFT .120 | |
2562 WIN_FONT FT_MEDIUM | |
681 | 2563 call DISP_standard_color |
0 | 2564 call word_processor |
2565 WIN_FONT FT_SMALL | |
2566 return | |
2567 | |
681 | 2568 DISP_display_apnoe_surface: |
0 | 2569 btfsc menubit ; Divemode menu active? |
2570 return ; Yes, do not display surface mode timeout | |
2571 | |
681 | 2572 call DISP_divemask_color ; Set Color for Divemode mask |
0 | 2573 DISPLAYTEXT d'140' ; "SURFACE" |
681 | 2574 call DISP_standard_color |
3 | 2575 |
0 | 2576 WIN_TOP .85 |
2577 WIN_LEFT .90 | |
2578 WIN_FONT FT_MEDIUM | |
681 | 2579 call DISP_standard_color |
3 | 2580 |
0 | 2581 |
2582 movff apnoe_surface_mins,lo | |
2583 bcf leftbind | |
2584 lfsr FSR2,letter | |
2585 output_8 | |
123 | 2586 PUTC ':' |
0 | 2587 movff apnoe_surface_secs,lo |
2588 output_99x | |
2589 call word_processor | |
2590 WIN_FONT FT_SMALL | |
2591 return | |
2592 | |
681 | 2593 DISP_apnoe_clear_surface: |
0 | 2594 ; Clear Surface timer.... |
204 | 2595 WIN_BOX_BLACK .60, .119, .90, .159 ;top, bottom, left, right |
0 | 2596 return |
2597 | |
2598 | |
681 | 2599 DISP_display_apnoe_descent: |
400 | 2600 btfsc menubit ; Divemode menu active? |
2601 return ; Yes, do not display/update descent time | |
2602 | |
681 | 2603 call DISP_divemask_color ; Set Color for Divemode mask |
0 | 2604 DISPLAYTEXT d'139' ; "Descent" |
681 | 2605 call DISP_standard_color |
3 | 2606 |
0 | 2607 |
2608 WIN_TOP .145 | |
2609 WIN_LEFT .90 | |
2610 WIN_FONT FT_MEDIUM | |
681 | 2611 call DISP_standard_color |
3 | 2612 |
0 | 2613 |
2614 movff apnoe_mins,lo | |
2615 lfsr FSR2,letter | |
2616 output_8 | |
123 | 2617 PUTC ':' |
0 | 2618 movff apnoe_secs,lo |
2619 output_99x | |
2620 call word_processor | |
2621 WIN_FONT FT_SMALL | |
2622 return | |
2623 | |
681 | 2624 DISP_divemins_apnoe: |
2625 | |
2626 DISP_divemins_gauge: | |
0 | 2627 movff divemins+0,lo |
2628 movff divemins+1,hi | |
2629 bcf leftbind | |
2630 bsf show_last3 | |
2631 lfsr FSR2,letter | |
2632 output_16_3 ;Displays only 0...999 | |
123 | 2633 PUTC ':' |
0 | 2634 movff divesecs,lo |
2635 output_99x | |
2636 WIN_TOP .20 | |
2637 WIN_LEFT .90 | |
2638 WIN_FONT FT_MEDIUM | |
681 | 2639 call DISP_standard_color |
3 | 2640 |
0 | 2641 call word_processor |
2642 bcf show_last3 | |
2643 WIN_FONT FT_SMALL | |
2644 return | |
2645 | |
681 | 2646 DISP_stopwatch_show: |
0 | 2647 ; Stopwatch |
681 | 2648 call DISP_divemask_color ; Set Color for Divemode mask |
87 | 2649 DISPLAYTEXTH d'283' ; Stopwatch |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2650 |
681 | 2651 DISP_stopwatch_show2: |
2652 call DISP_standard_color | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2653 ostc_debug 'V' ; Sends debug-information to screen if debugmode active |
87 | 2654 WIN_TOP .192 |
0 | 2655 WIN_LEFT .110 |
2656 WIN_FONT FT_SMALL | |
681 | 2657 call DISP_standard_color |
3 | 2658 |
0 | 2659 lfsr FSR2,letter |
2660 movff average_divesecs+0,lo ; Stopwatch | |
2661 movff average_divesecs+1,hi ; Stopwatch | |
2662 movlw d'2' | |
2663 subwf lo,F | |
2664 movlw d'0' | |
2665 subwfb hi,F ; Subtract 2 seconds | |
2666 | |
2667 call convert_time ; converts hi:lo in seconds to mins (hi) and secs (lo) | |
2668 | |
2669 movff lo,wait_temp | |
2670 movff hi,lo | |
2671 clrf hi | |
2672 | |
2673 movlw d'0' | |
2674 bcf leftbind | |
2675 bsf show_last3 | |
2676 output_16_3 ;Displays only 0...999 | |
123 | 2677 PUTC ':' |
0 | 2678 movff wait_temp,lo |
2679 output_99x | |
2680 call word_processor | |
2681 | |
2682 ostc_debug 'U' ; Sends debug-information to screen if debugmode active | |
2683 | |
87 | 2684 WIN_TOP .216 |
517 | 2685 WIN_LEFT .110 |
0 | 2686 WIN_FONT FT_SMALL |
681 | 2687 call DISP_standard_color |
3 | 2688 |
0 | 2689 lfsr FSR2,letter |
2690 movff avr_rel_pressure+0,lo | |
2691 movff avr_rel_pressure+1,hi | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
2692 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
0 | 2693 bsf ignore_digit5 ; do not display 1cm depth |
2694 output_16dp d'3' | |
2695 bcf leftbind | |
446 | 2696 STRCAT_PRINT TXT_METER1 |
0 | 2697 return |
2698 | |
681 | 2699 DISP_stopwatch_show_gauge: |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2700 btfsc menubit ; Divemode menu active? |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2701 return ; Yes, return |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2702 ; BIG Stopwatch |
681 | 2703 call DISP_divemask_color ; Set Color for Divemode mask |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2704 DISPLAYTEXTH d'310' ; Stopwatch |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2705 DISPLAYTEXTH d'309' ; Average |
681 | 2706 call DISP_standard_color |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2707 ostc_debug 'V' ; Sends debug-information to screen if debugmode active |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2708 WIN_TOP .80 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2709 WIN_LEFT .90 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2710 WIN_FONT FT_MEDIUM |
681 | 2711 call DISP_standard_color |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2712 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2713 lfsr FSR2,letter |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2714 movff average_divesecs+0,lo ; Stopwatch |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2715 movff average_divesecs+1,hi ; Stopwatch |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2716 movlw d'2' |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2717 subwf lo,F |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2718 movlw d'0' |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2719 subwfb hi,F ; Subtract 2 seconds |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2720 call convert_time ; converts hi:lo in seconds to mins (hi) and secs (lo) |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2721 movff lo,wait_temp |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2722 movff hi,lo |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2723 clrf hi |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2724 movlw d'0' |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2725 bcf leftbind |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2726 bsf show_last3 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2727 output_16_3 ;Displays only 0...999 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2728 PUTC ':' |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2729 movff wait_temp,lo |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2730 output_99x |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2731 call word_processor |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2732 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2733 ostc_debug 'U' ; Sends debug-information to screen if debugmode active |
517 | 2734 WIN_TOP .136 |
2735 WIN_LEFT .90 | |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2736 WIN_FONT FT_MEDIUM |
681 | 2737 call DISP_standard_color |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2738 lfsr FSR2,letter |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2739 movff avr_rel_pressure+0,lo |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2740 movff avr_rel_pressure+1,hi |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
2741 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2742 bsf ignore_digit5 ; do not display 1cm depth |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2743 output_16dp d'3' |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2744 bcf leftbind |
446 | 2745 STRCAT_PRINT TXT_METER1 |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2746 WIN_FONT FT_SMALL ; Reset... |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2747 return |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2748 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2749 |
681 | 2750 DISP_total_average_show: |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2751 ; Non-Resettable Average |
681 | 2752 call DISP_divemask_color ; Set Color for Divemode mask |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2753 DISPLAYTEXTH d'281' ; Avr.Depth |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2754 |
681 | 2755 DISP_total_average_show2: |
517 | 2756 WIN_TOP .192 |
2757 WIN_LEFT .110 | |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2758 WIN_FONT FT_SMALL |
681 | 2759 call DISP_standard_color |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2760 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2761 lfsr FSR2,letter |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2762 movff avr_rel_pressure_total+0,lo |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2763 movff avr_rel_pressure_total+1,hi |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
2764 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2765 bsf ignore_digit5 ; do not display 1cm depth |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2766 bcf leftbind |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2767 output_16dp d'3' |
446 | 2768 STRCAT_PRINT TXT_METER1 |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2769 return |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2770 |
235 | 2771 ;============================================================================= |
2772 ; Writes OSTC #Serial and Firmware version in surfacemode | |
2773 ; | |
681 | 2774 DISP_serial: |
0 | 2775 ostc_debug 'a' ; Sends debug-information to screen if debugmode active |
2776 WIN_TOP .0 | |
56 | 2777 WIN_LEFT .1 |
0 | 2778 WIN_FONT FT_SMALL |
235 | 2779 WIN_INVERT .0 ; Init new Wordprocessor |
2780 | |
2781 ifdef __DEBUG | |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
2782 GETCUSTOM8 d'64' ; Write header in blue when |
681 | 2783 call DISP_set_color ; compiled in DEBUG mode... |
235 | 2784 else |
681 | 2785 call DISP_standard_color |
235 | 2786 endif |
3 | 2787 |
0 | 2788 lfsr FSR2,letter |
607 | 2789 read_int_eeprom d'34' ; Read deco data |
2790 tstfsz EEDATA | |
2791 bra show_decotype_mainscreen2 | |
2792 OUTPUTTEXT .101 ; ZH-L16 OC =0 | |
2793 bra show_decotype_mainscreen8 ; Done. | |
2794 show_decotype_mainscreen2: | |
2795 decfsz EEDATA,F | |
2796 bra show_decotype_mainscreen3 | |
2797 OUTPUTTEXT .102 ; Gauge =1 | |
2798 bra show_decotype_mainscreen8 ; Done. | |
2799 show_decotype_mainscreen3: | |
2800 decfsz EEDATA,F | |
2801 bra show_decotype_mainscreen4 | |
2802 OUTPUTTEXT .104 ; ZH-L16 CC =2 | |
2803 bra show_decotype_mainscreen8 ; Done. | |
2804 show_decotype_mainscreen4: | |
2805 decfsz EEDATA,F | |
2806 bra show_decotype_mainscreen5 | |
2807 OUTPUTTEXT .138 ; Apnoe =3 | |
2808 bra show_decotype_mainscreen8 ; Done. | |
2809 show_decotype_mainscreen5: | |
2810 decfsz EEDATA,F | |
2811 bra show_decotype_mainscreen6 | |
2812 OUTPUTTEXT .152 ; L16-GF OC =4 | |
2813 bra show_decotype_mainscreen8 ; Done. | |
2814 show_decotype_mainscreen6: | |
2815 decfsz EEDATA,F | |
2816 bra show_decotype_mainscreen7 | |
2817 OUTPUTTEXT .236 ; L16-GF CC =5 | |
2818 bra show_decotype_mainscreen8 ; Done. | |
2819 show_decotype_mainscreen7: | |
2820 decfsz EEDATA,F | |
2821 bra show_decotype_mainscreen8 ; Done. | |
2822 OUTPUTTEXT .226 ; pSCR-GF =6 | |
2823 show_decotype_mainscreen8: | |
235 | 2824 STRCAT " \x90\x91 V" ; Scribble logo... |
0 | 2825 movlw softwareversion_x |
2826 movwf lo | |
2827 bsf leftbind | |
2828 output_8 | |
123 | 2829 PUTC '.' |
0 | 2830 movlw softwareversion_y |
2831 movwf lo | |
2832 bsf leftbind | |
2833 output_99x | |
2834 bcf leftbind | |
235 | 2835 |
2836 ifdef __DEBUG | |
2837 STRCAT_PRINT "-Dbg" | |
2838 else | |
0 | 2839 call word_processor |
140 | 2840 |
235 | 2841 movlw softwareversion_beta ; =1: Beta, =0: Release |
140 | 2842 decfsz WREG,F |
235 | 2843 return ; Release version -> Return |
140 | 2844 |
681 | 2845 call DISP_warnings_color |
235 | 2846 DISPLAYTEXT d'243' ; beta |
681 | 2847 call DISP_standard_color |
235 | 2848 endif |
2849 | |
0 | 2850 return |
2851 | |
235 | 2852 ;============================================================================= |
2853 | |
681 | 2854 DISP_divemode_menu_mask_first: ; Write Divemode menu1 mask |
0 | 2855 ostc_debug 'o' ; Sends debug-information to screen if debugmode active |
681 | 2856 call DISP_menu_clear ; clear "Menu?" |
2857 call DISP_standard_color | |
0 | 2858 |
2859 btfsc FLAG_const_ppO2_mode ; are we in ppO2 mode? | |
681 | 2860 bra DISP_divemode_menu_mask_first2 |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2861 |
0 | 2862 ; in OC Mode |
2863 DISPLAYTEXT .32 ;"Gaslist" | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2864 DISPLAYTEXT .31 ;"Decoplan" |
681 | 2865 bra DISP_divemode_menu_mask_first3 |
2866 | |
2867 DISP_divemode_menu_mask_first2: | |
0 | 2868 ; in CC Mode |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2869 DISPLAYTEXT .238 ;"SetPoint" |
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2870 DISPLAYTEXT .31 ;"Decoplan" |
0 | 2871 |
681 | 2872 DISP_divemode_menu_mask_first3: |
0 | 2873 ; In all modes |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2874 call customview_menu_entry3 ; Show customview-dependent menu entry |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2875 DISPLAYTEXT .241 ;"Display" |
0 | 2876 DISPLAYTEXT .34 ;"Exit" |
2877 return | |
2878 | |
681 | 2879 DISP_divemode_set_xgas: ; Displayes the "Set Gas" menu |
0 | 2880 WIN_LEFT .100 |
2881 WIN_TOP .0 | |
2882 WIN_FONT FT_SMALL | |
681 | 2883 call DISP_standard_color |
3 | 2884 |
446 | 2885 STRCPY TXT_G6_3 |
0 | 2886 read_int_eeprom d'24' ; Get Gas6 %O2 |
2887 movff EEDATA,lo | |
2888 bcf leftbind | |
2889 output_99 ; outputs into Postinc2! | |
123 | 2890 PUTC '/' |
0 | 2891 read_int_eeprom d'25' ; Get Gas6 %He |
2892 movff EEDATA,lo | |
2893 output_99 ; outputs into Postinc2! | |
2894 call word_processor | |
2895 DISPLAYTEXT .123 ; O2 + | |
2896 DISPLAYTEXT .124 ; O2 - | |
2897 DISPLAYTEXT .125 ; He + | |
2898 DISPLAYTEXT .126 ; He - | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2899 DISPLAYTEXTH d'300' ; Active? (Enable/Disable Gas underwater) |
0 | 2900 return |
2901 | |
681 | 2902 DISP_divemode_simulator_mask: |
2903 call DISP_standard_color | |
124 | 2904 DISPLAYTEXT .254 ; Close |
2905 DISPLAYTEXT .250 ; + 1m | |
2906 DISPLAYTEXT .251 ; - 1m | |
2907 DISPLAYTEXT .252 ; +10m | |
2908 DISPLAYTEXT .253 ; -10m | |
352
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
342
diff
changeset
|
2909 DISPLAYTEXTH .306 ; Quit Sim |
124 | 2910 return |
0 | 2911 |
123 | 2912 ;----------------------------------------------------------------------------- |
124 | 2913 ; Draw a stop of the deco plan (simulator or dive). |
2914 ; Inputs: lo = depth. Range 3m...93m | |
279
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2915 ; + 80 if this is a switch-gas stop. |
124 | 2916 ; hi = minutes. range 1'..240'. |
2917 ; win_top = line to draw on screen. | |
2918 ; Trashed: hi, lo, win_height, win_leftx2, win_width, win_color*, | |
2919 ; WREG, PROD, TBLPTR TABLAT. | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2920 ; |
681 | 2921 DISP_decoplan_show_stop: |
124 | 2922 ;---- Print depth ---------------------------------------------------- |
2923 WIN_LEFT .100 | |
517 | 2924 |
279
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2925 btfss lo,7 ; Bit set ? |
681 | 2926 bra DISP_decoplan_std_stop ; No : Just an usual stop |
559
c84ea647ff58
do not show gas switch stops in yellow when CF55=0
heinrichsweikamp
parents:
556
diff
changeset
|
2927 |
c84ea647ff58
do not show gas switch stops in yellow when CF55=0
heinrichsweikamp
parents:
556
diff
changeset
|
2928 bcf lo,7 ; cleanup depth |
c84ea647ff58
do not show gas switch stops in yellow when CF55=0
heinrichsweikamp
parents:
556
diff
changeset
|
2929 |
c84ea647ff58
do not show gas switch stops in yellow when CF55=0
heinrichsweikamp
parents:
556
diff
changeset
|
2930 GETCUSTOM8 d'55' ; Load gas switch [min] in wreg |
c84ea647ff58
do not show gas switch stops in yellow when CF55=0
heinrichsweikamp
parents:
556
diff
changeset
|
2931 tstfsz WREG ; =0? |
681 | 2932 bra DISP_decoplan_show_stop1; No: Show gas switch stop |
2933 bra DISP_decoplan_std_stop ; Yes: Just an usual stop | |
559
c84ea647ff58
do not show gas switch stops in yellow when CF55=0
heinrichsweikamp
parents:
556
diff
changeset
|
2934 |
681 | 2935 DISP_decoplan_show_stop1: |
559
c84ea647ff58
do not show gas switch stops in yellow when CF55=0
heinrichsweikamp
parents:
556
diff
changeset
|
2936 movlw color_yellow |
681 | 2937 call DISP_set_color ; Show in yellow for gas switch |
2938 bra DISP_decoplan_nstd_stop | |
2939 | |
2940 DISP_decoplan_std_stop: | |
2941 call DISP_standard_color | |
2942 | |
2943 DISP_decoplan_nstd_stop: | |
124 | 2944 lfsr FSR2,letter |
2945 bsf leftbind | |
2946 output_8 ; outputs into Postinc2! | |
446 | 2947 STRCAT_PRINT TXT_METER2 |
124 | 2948 |
2949 ;---- Print duration ------------------------------------------------- | |
719 | 2950 WIN_LEFT .139 |
124 | 2951 lfsr FSR2,letter |
2952 | |
2953 movf lo,W ; Swap hi & lo | |
2954 movff hi,lo | |
2955 movwf hi | |
2956 | |
719 | 2957 bsf leftbind |
2958 output_99 ; Allow up to 99' | |
2959 STRCAT_PRINT "'" ; 1 to 3 chars for depth. | |
124 | 2960 |
2961 movf lo,W ; Swap back hi & lo | |
2962 movff hi,lo | |
2963 movwf hi | |
2964 | |
2965 ;--------------------------------------------------------------------- | |
2966 ; Draw the bar graph used for deco stops (decoplan in simulator or dive). | |
2967 movff win_top,WREG ; Increment win_top (BANK SAFE) | |
2968 incf WREG | |
2969 movff WREG,win_top | |
2970 movlw d'18'+1 ; 19 --> height (bank safe !) | |
2971 movff WREG,win_height | |
2972 movlw .122 | |
2973 movff WREG,win_leftx2 ; column left (0-159) | |
150 | 2974 movlw .16 |
2975 movff WREG,win_width ; column max width. | |
2976 | |
2977 ; Draw used area (hi = minutes): | |
124 | 2978 movlw d'16' ; Limit length (16min) |
2979 cpfslt hi | |
2980 movwf hi | |
719 | 2981 movff hi,win_bargraph ; Active width, the rest is cleared. |
2982 | |
2983 call DISP_standard_color | |
681 | 2984 call DISP_box |
124 | 2985 |
2986 ; Restore win_top | |
681 | 2987 call DISP_standard_color |
124 | 2988 movff win_top,WREG ; decf win_top (BANK SAFE) |
2989 decf WREG | |
2990 movff WREG,win_top | |
2991 return | |
123 | 2992 |
2993 ;----------------------------------------------------------------------------- | |
719 | 2994 ; Clear unused area below last stop |
124 | 2995 ; Inputs: win_top : last used area... |
681 | 2996 DISP_decoplan_clear_bottom: |
124 | 2997 movff win_top,WREG ; Get back from bank0 |
2998 btfsc divemode ; In dive mode ? | |
150 | 2999 sublw .168 ; Yes: bottom row in divemode |
124 | 3000 btfss divemode ; In dive mode ? |
3001 sublw .240 ; No: bottom row in planning | |
3002 movff WREG,win_height | |
3003 | |
292 | 3004 WIN_LEFT .85 ; Full divemenu width |
683 | 3005 movlw .159-.85 |
124 | 3006 movff WREG,win_width |
3007 | |
3008 clrf WREG ; Fill with black | |
3009 movff WREG,win_color1 | |
3010 movff WREG,win_color2 | |
683 | 3011 movff WREG,win_color3 |
706 | 3012 movff WREG,win_color4 |
3013 movff WREG,win_color5 | |
3014 movff WREG,win_color6 | |
681 | 3015 goto DISP_box |
123 | 3016 |
3017 ;----------------------------------------------------------------------------- | |
124 | 3018 ; Display the decoplan (simulator or divemode) for GF model |
3019 ; Inputs: char_O_deco_table (array of stop times, in minutes) | |
3020 ; decoplan_page = page number. Displays 5 stop by page. | |
3021 ; | |
164 | 3022 #define decoplan_index apnoe_mins ; within each page |
3023 #define decoplan_gindex apnoe_secs ; global index | |
3024 #define decoplan_last apnoe_max_pressure ; Depth of last stop (CF#29) | |
3025 #define decoplan_max apnoe_max_pressure+1; Number of lines per page. 7 in planning, 5 in diving. | |
124 | 3026 |
681 | 3027 DISP_decoplan: |
124 | 3028 ostc_debug 'n' ; Sends debug-information to screen if debugmode active |
3029 | |
3030 WIN_INVERT 0 | |
3031 | |
3032 ;---- Is there deco stops ? ------------------------------------------ | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3033 movff char_O_first_deco_depth,WREG |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3034 iorwf WREG |
681 | 3035 bnz DISP_decoplan_1 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3036 |
124 | 3037 ;---- No Deco -------------------------------------------------------- |
681 | 3038 call DISP_standard_color |
124 | 3039 DISPLAYTEXT d'239' ;"No Deco" |
3040 bsf last_ceiling_gf_shown | |
3041 return | |
3042 | |
681 | 3043 DISP_decoplan_1: |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3044 lfsr FSR0,char_O_deco_depth ; Initialize indexed addressing. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3045 lfsr FSR1,char_O_deco_time |
124 | 3046 |
3047 movlw .8 ; 8 lines/page in decoplan | |
3048 btfsc divemode | |
3049 movlw .6 ; 6 lines/page in divemode. | |
3050 movwf decoplan_max | |
3051 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3052 clrf decoplan_index ; Start with index = 0 |
124 | 3053 clrf WREG |
3054 movff WREG,win_top ; and row = 0 | |
3055 | |
3056 ; Read stop parameters, indexed by decoplan_index and decoplan_page | |
3057 movf decoplan_page,W ; decoplan_gindex = 6*decoplan_page + decoplan_index | |
3058 mulwf decoplan_max | |
3059 movf decoplan_index,W | |
3060 addwf PRODL,W | |
3061 movwf decoplan_gindex ; --> decoplan_gindex | |
3062 | |
3063 bcf last_ceiling_gf_shown ; Not finished yet... | |
3064 | |
681 | 3065 DISP_decoplan_2: |
124 | 3066 btfsc decoplan_gindex,5 ; Reached table length (32) ? |
681 | 3067 bra DISP_decoplan_99 ; YES: finished... |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3068 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3069 ; Read stop parameters, indexed by decoplan_index |
124 | 3070 movf decoplan_gindex,W ; index |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3071 movff PLUSW1,hi ; char_O_deco_time [gindex] --> hi |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3072 movff PLUSW0,lo ; char_O_deco_depth[gindex] |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3073 movf lo,W |
681 | 3074 bz DISP_decoplan_99 ; depth == 0 : finished. |
124 | 3075 |
3076 ; Display the stop line | |
681 | 3077 call DISP_decoplan_show_stop |
124 | 3078 |
3079 ; Next | |
3080 movff win_top,WREG ; row: += 24 | |
3081 addlw .24 | |
3082 movff WREG,win_top | |
3083 incf decoplan_index,F ; local index += 1 | |
3084 incf decoplan_gindex,F ; global index += 1 | |
3085 | |
3086 ; Max number of lines/page reached ? | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3087 movf decoplan_max,W ; index+1 == max ? |
124 | 3088 cpfseq decoplan_index |
681 | 3089 bra DISP_decoplan_2 ; NO: loop |
124 | 3090 |
3091 ; Check if next stop if end-of-list ? | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3092 movf decoplan_gindex,W |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3093 movff PLUSW0,WREG ; char_O_deco_depth[gindex] |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
3094 iorwf WREG |
681 | 3095 bz DISP_decoplan_99 ; End of list... |
124 | 3096 |
3097 ; Display the message "more..." | |
223 | 3098 bcf last_ceiling_gf_shown ; More page to display... |
3099 | |
681 | 3100 rcall DISP_decoplan_clear_bottom ; Clear from next line |
124 | 3101 |
3102 WIN_LEFT .130 - 7*3 | |
681 | 3103 call DISP_standard_color |
223 | 3104 lfsr FSR2,letter |
3105 OUTPUTTEXT .142 ; More... | |
3106 goto word_processor | |
124 | 3107 |
681 | 3108 DISP_decoplan_99: |
124 | 3109 bsf last_ceiling_gf_shown ; Nothing more in table to display. |
681 | 3110 rcall DISP_decoplan_clear_bottom ; Clear from next line |
124 | 3111 return |
3112 ;----------------------------------------------------------------------------- | |
289 | 3113 ; Toggle gas activity flag during dive. |
3114 ; | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
289
diff
changeset
|
3115 ; Input: gaslist_active |
289 | 3116 ; Gaslist from eeprom[2...] |
3117 ; | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
289
diff
changeset
|
3118 ; Output: gaslist_active |
289 | 3119 ; |
3120 ; Note: Gas with a zero depth cannot be used in deco simulation, hence | |
3121 ; should not be displayed as selected here... | |
3122 ; | |
681 | 3123 DISP_de_activelist: ; show (de)active gaslist |
3124 call DISP_standard_color | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3125 DISPLAYTEXT .254 ; Close |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3126 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3127 WIN_LEFT .100 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3128 WIN_FONT FT_SMALL |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3129 bsf leftbind |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3130 |
281 | 3131 movlw d'2' |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3132 movwf wait_temp ; here: stores eeprom address for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3133 movlw d'0' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3134 movwf waitms_temp ; here: stores row for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3135 clrf hi ; here: Gas counter |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3136 |
681 | 3137 DISP_de_activelist_loop: |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3138 incf hi,F ; Increase Gas |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3139 movlw d'4' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3140 addwf wait_temp,F ; Increase eeprom address for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3141 movlw d'25' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3142 addwf waitms_temp,F ; Increase row |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3143 WIN_LEFT .100 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3144 movff waitms_temp,win_top ; Set Row |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3145 |
221 | 3146 lfsr FSR2,letter |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3147 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3148 call read_eeprom ; get byte (stored in EEDATA) |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3149 movff EEDATA,lo ; copy to lo |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3150 output_8 ; outputs into Postinc2! |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3151 PUTC '/' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3152 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3153 call read_eeprom ; get byte (stored in EEDATA) |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3154 movff EEDATA,lo ; copy to lo |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3155 output_8 ; outputs into Postinc2! |
221 | 3156 PUTC '@' |
3157 | |
281 | 3158 movlw d'27' |
221 | 3159 addwf hi,W |
3160 movwf EEADR ; Point to Change depth | |
3161 | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3162 call read_eeprom ; get byte (stored in EEDATA) |
221 | 3163 movff EEDATA,lo ; copy to lo |
3164 output_8 ; outputs into Postinc2! | |
3165 | |
289 | 3166 movf lo,w ; Gas with a zero depth |
681 | 3167 bz DISP_de_activelist_grey ; should be displayed inactive. |
289 | 3168 |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3169 ; Check if gas needs to be greyed-out (inactive) |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
289
diff
changeset
|
3170 movff gaslist_active,EEDATA ; Get flag register |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3171 movff hi,lo ; copy gas number |
681 | 3172 DISP_de_activelist_loop1: |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3173 rrcf EEDATA ; roll flags into carry |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3174 decfsz lo,F ; max. 5 times... |
681 | 3175 bra DISP_de_activelist_loop1 |
3176 bc DISP_de_activelist_white | |
3177 | |
3178 DISP_de_activelist_grey: ; grey out inactive gases! | |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
3179 GETCUSTOM8 d'64' ;movlw color_grey |
681 | 3180 call DISP_set_color |
3181 | |
3182 DISP_de_activelist_white: | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3183 call word_processor |
681 | 3184 call DISP_standard_color |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3185 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3186 movlw d'5' ; list all five gases |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3187 cpfseq hi ; All gases shown? |
681 | 3188 bra DISP_de_activelist_loop ; No |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3189 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3190 return ; return |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3191 |
681 | 3192 DISP_show_change_depth: ; Yes, show change depth for gas #menupos |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3193 btfsc display_set_setpoint ; In Setpoint list? |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3194 return ; Yes, return. |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3195 movlw color_yellow ; Blink in yellow |
681 | 3196 call DISP_set_color |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3197 WIN_LEFT .95 |
532 | 3198 WIN_TOP .148 |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3199 WIN_FONT FT_SMALL |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3200 |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3201 movlw .6 |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3202 cpfslt menupos ; <6? |
681 | 3203 bra DISP_show_change_depth_clear ; Yes! |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3204 |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3205 bsf leftbind |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3206 STRCPY TXT_GAS1 |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3207 movff menupos,lo |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3208 output_8 ; Show gas number |
532 | 3209 STRCAT TXT_AT4 ; " at " |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3210 decf menupos,W |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3211 addlw d'28' ; offset in memory |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3212 movwf EEADR |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3213 call read_eeprom ; Low-value |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3214 movff EEDATA,lo |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3215 output_8 ; Show gas number |
768
b23b43d6d50d
BUGFIX: Italian language fix (Divemode menu)
heinrichsweikamp
parents:
765
diff
changeset
|
3216 STRCAT "m " |
b23b43d6d50d
BUGFIX: Italian language fix (Divemode menu)
heinrichsweikamp
parents:
765
diff
changeset
|
3217 clrf WREG |
b23b43d6d50d
BUGFIX: Italian language fix (Divemode menu)
heinrichsweikamp
parents:
765
diff
changeset
|
3218 movff WREG,letter+.9 ; Limit to 9 chars |
b23b43d6d50d
BUGFIX: Italian language fix (Divemode menu)
heinrichsweikamp
parents:
765
diff
changeset
|
3219 STRCAT_PRINT "" |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3220 bcf leftbind |
681 | 3221 call DISP_standard_color |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3222 return |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3223 |
681 | 3224 DISP_show_change_depth_clear: |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3225 STRCPY_PRINT " " |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3226 return |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
3227 |
681 | 3228 DISP_diluent_list: |
647 | 3229 ostc_debug 'm' ; Sends debug-information to screen if debugmode active |
3230 WIN_LEFT .100 | |
3231 WIN_FONT FT_SMALL | |
3232 bsf leftbind | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
3233 movlw d'93' |
647 | 3234 movwf wait_temp ; here: stores eeprom address for diluent list (96-2) |
3235 movlw d'231' | |
3236 movwf waitms_temp ; here: stores row for gas list | |
3237 clrf hi ; here: Diluent counter | |
3238 | |
681 | 3239 DISP_diluent_list_loop: |
647 | 3240 incf hi,F ; Increase Diluent |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
3241 movlw d'4' |
647 | 3242 addwf wait_temp,F ; Increase eeprom address for gas list |
3243 movlw d'25' | |
3244 addwf waitms_temp,F ; Increase row | |
3245 WIN_LEFT .100 | |
3246 movff waitms_temp,win_top ; Set Row | |
3247 STRCPY TXT_DIL_C | |
3248 movff hi,lo ; copy dil number | |
3249 output_8 ; display dil number | |
3250 PUTC ':' | |
3251 movff wait_temp, EEADR; Dil #hi: %O2 - Set address in internal EEPROM | |
3252 call read_eeprom ; get byte (stored in EEDATA) | |
3253 movff EEDATA,lo ; copy to lo | |
3254 output_8 ; outputs into Postinc2! | |
3255 PUTC '/' | |
3256 incf EEADR,F ; Dil #hi: %He - Set address in internal EEPROM | |
3257 call read_eeprom ; get byte (stored in EEDATA) | |
3258 movff EEDATA,lo ; copy to lo | |
3259 output_8 ; outputs into Postinc2! | |
3260 | |
3261 decf EEADR,F ; Dil #hi: %O2 - Set address in internal EEPROM | |
3262 call read_eeprom ; get byte (stored in EEDATA) | |
681 | 3263 DISP_color_code warn_gas_in_gaslist ; Color-code output (%O2 in "EEDATA") |
647 | 3264 |
3265 call word_processor | |
681 | 3266 call DISP_standard_color |
647 | 3267 |
3268 movlw d'5' ; list all five Diluents | |
3269 cpfseq hi ; All diluents shown? | |
681 | 3270 bra DISP_diluent_list_loop ; No |
647 | 3271 return ; return |
3272 | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3273 |
681 | 3274 DISP_gas_list: |
0 | 3275 ostc_debug 'm' ; Sends debug-information to screen if debugmode active |
3276 | |
3277 WIN_LEFT .100 | |
3278 WIN_FONT FT_SMALL | |
3279 bsf leftbind | |
3280 | |
3281 movlw d'2' | |
3282 movwf wait_temp ; here: stores eeprom address for gas list | |
3283 movlw d'231' | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
3284 movwf waitms_temp ; here: stores row for gas list |
0 | 3285 clrf hi ; here: Gas counter |
3286 | |
681 | 3287 DISP_gas_list_loop: |
0 | 3288 incf hi,F ; Increase Gas |
3289 movlw d'4' | |
3290 addwf wait_temp,F ; Increase eeprom address for gas list | |
3291 movlw d'25' | |
3292 addwf waitms_temp,F ; Increase row | |
3293 WIN_LEFT .100 | |
3294 movff waitms_temp,win_top ; Set Row | |
446 | 3295 STRCPY TXT_GAS1 |
0 | 3296 movff hi,lo ; copy gas number |
3297 output_8 ; display gas number | |
123 | 3298 PUTC ':' |
0 | 3299 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
3300 call read_eeprom ; get byte (stored in EEDATA) | |
3301 movff EEDATA,lo ; copy to lo | |
3302 output_8 ; outputs into Postinc2! | |
123 | 3303 PUTC '/' |
0 | 3304 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
3305 call read_eeprom ; get byte (stored in EEDATA) | |
3306 movff EEDATA,lo ; copy to lo | |
3307 output_8 ; outputs into Postinc2! | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
3308 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
3309 decf EEADR,F ; Gas #hi: %O2 - Set address in internal EEPROM |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
3310 call read_eeprom ; get byte (stored in EEDATA) |
681 | 3311 DISP_color_code warn_gas_in_gaslist ; Color-code output (%O2 in "EEDATA") |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3312 |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3313 ; Check if the "better gas" should be highlighted |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3314 |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3315 WIN_INVERT .0 ; Init new Wordprocessor |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3316 movf better_gas_number,W ; better gas 1-5? |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3317 cpfseq hi ; compare with gas# |
681 | 3318 bra DISP_gas_list_loop2 ; No equal, skip |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3319 |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3320 movlw color_yellow ; Blink in yellow |
681 | 3321 call DISP_set_color |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3322 WIN_INVERT .1 ; Init new Wordprocessor |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3323 |
681 | 3324 DISP_gas_list_loop2: |
281 | 3325 ; Check if gas needs to be greyed-out (inactive) |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
289
diff
changeset
|
3326 movff gaslist_active, EEDATA ; Work with sorted list |
0 | 3327 movff hi,lo ; copy gas number |
681 | 3328 DISP_gas_list_loop1: |
0 | 3329 rrcf EEDATA ; roll flags into carry |
3330 decfsz lo,F ; max. 5 times... | |
681 | 3331 bra DISP_gas_list_loop1 |
19 | 3332 |
0 | 3333 btfss STATUS,C ; test carry |
681 | 3334 rcall DISP_gas_list_grey |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
3335 |
0 | 3336 call word_processor |
681 | 3337 call DISP_standard_color |
0 | 3338 |
3339 movlw d'5' ; list all five gases | |
3340 cpfseq hi ; All gases shown? | |
681 | 3341 bra DISP_gas_list_loop ; No |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3342 |
734 | 3343 WIN_INVERT .0 |
352
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
342
diff
changeset
|
3344 DISPLAYTEXT d'122' ; More |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3345 return ; return (OC mode) |
0 | 3346 |
681 | 3347 DISP_gas_list_grey: |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
3348 GETCUSTOM8 d'64' ;movlw color_grey |
681 | 3349 call DISP_set_color ; grey out inactive gases! |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
3350 return |
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
3351 |
681 | 3352 DISP_splist_start: |
0 | 3353 WIN_LEFT .100 |
3354 WIN_FONT FT_SMALL | |
3355 bsf leftbind | |
681 | 3356 call DISP_standard_color |
0 | 3357 |
3358 ; list three SP in Gaslist | |
3359 movlw d'35' ; 36 = current SP position in EEPROM | |
3360 movwf wait_temp ; here: stores eeprom address for gas list | |
525 | 3361 movlw d'0' |
0 | 3362 movwf waitms_temp ; here: stores row for gas list |
124 | 3363 clrf decoplan_index ; here: SP counter |
0 | 3364 |
681 | 3365 DISP_splist_loop: |
0 | 3366 incf wait_temp,F ; EEPROM address |
124 | 3367 incf decoplan_index,F ; Increase SP |
0 | 3368 |
3369 movlw d'25' | |
3370 addwf waitms_temp,F ; Increase row | |
3371 movff waitms_temp,win_top ; Set Row | |
3372 WIN_LEFT .100 | |
3373 | |
446 | 3374 STRCPY TXT_SP2 |
124 | 3375 movff decoplan_index,lo ; copy gas number |
0 | 3376 output_8 ; display gas number |
123 | 3377 PUTC ':' |
0 | 3378 movff wait_temp, EEADR; SP #hi position |
3379 call read_eeprom ; get byte (stored in EEDATA) | |
3380 movff EEDATA,lo ; copy to lo | |
3381 clrf hi | |
3382 output_16dp d'3' ; outputs into Postinc2! | |
3383 call word_processor | |
3384 | |
3385 movlw d'3' ; list all three SP | |
124 | 3386 cpfseq decoplan_index ; All gases shown? |
681 | 3387 bra DISP_splist_loop ; No |
0 | 3388 |
3389 bcf leftbind | |
3390 return ; no, return | |
3391 | |
681 | 3392 DISP_clear_divemode_menu: |
682 | 3393 WIN_BOX_BLACK .0, .168, .85, .159 ;top, bottom, left, right |
0 | 3394 return |
3395 | |
681 | 3396 DISP_divemenu_cursor: |
0 | 3397 ostc_debug 'l' ; Sends debug-information to screen if debugmode active |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3398 |
204 | 3399 WIN_BOX_BLACK .0, .150, .85, .95 ;top, bottom, left, right |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3400 |
0 | 3401 WIN_TOP .0 |
3402 WIN_LEFT .85 | |
3403 WIN_FONT FT_SMALL | |
3404 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 3405 call DISP_standard_color |
84 | 3406 |
0 | 3407 movff menupos,temp1 |
3408 movlw d'0' | |
3409 dcfsnz temp1,F | |
3410 movlw d'0' | |
3411 dcfsnz temp1,F | |
3412 movlw d'25' | |
3413 dcfsnz temp1,F | |
3414 movlw d'50' | |
3415 dcfsnz temp1,F | |
3416 movlw d'75' | |
3417 dcfsnz temp1,F | |
3418 movlw d'100' | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3419 dcfsnz temp1,F |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3420 movlw d'125' |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3421 |
0 | 3422 movff WREG,win_top |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
3423 STRCPY_PRINT "\xB7" ; Cursor |
0 | 3424 return |
3425 | |
128 | 3426 |
3427 ;============================================================================= | |
3428 ; Draw saturation graph, is surface mode or in dive mode. | |
3429 ; | |
681 | 3430 DISP_tissue_saturation_graph: |
0 | 3431 ostc_debug 'i' ; Sends debug-information to screen if debugmode active |
13 | 3432 |
128 | 3433 ;---- Draw Frame --------------------------------------------------------- |
3434 btfsc divemode | |
681 | 3435 bra DISP_tsg_1 |
128 | 3436 |
3437 WIN_FRAME_STD .25, .120, .82, .159 ; Surfmode | |
681 | 3438 bra DISP_tsg_2 |
3439 DISP_tsg_1: | |
128 | 3440 WIN_FRAME_STD .169, .239, .90, .159 ; Divemode |
681 | 3441 DISP_tsg_2: |
128 | 3442 |
3443 ;---- Draw grid ---------------------------------------------------------- | |
133 | 3444 btfss divemode |
681 | 3445 bra DISP_no_graph_grid |
133 | 3446 |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
3447 GETCUSTOM8 d'64' ;movlw color_grey |
681 | 3448 call DISP_set_color |
128 | 3449 |
3450 movlw .169+.1 ; divemode | |
3451 movff WREG,win_top | |
3452 movlw .239-.169-.1 ; divemode | |
3453 movff WREG,win_height | |
3454 | |
3455 movlw 1 | |
3456 movff WREG,win_width | |
3457 | |
3458 movlw .122 | |
3459 movff WREG,win_leftx2 | |
681 | 3460 call DISP_box |
128 | 3461 movlw .131 |
3462 movff WREG,win_leftx2 | |
681 | 3463 call DISP_box |
128 | 3464 movlw .140 |
3465 movff WREG,win_leftx2 | |
681 | 3466 call DISP_box |
128 | 3467 movlw .149 |
3468 movff WREG,win_leftx2 | |
681 | 3469 call DISP_box |
3470 DISP_no_graph_grid: | |
128 | 3471 |
3472 ;---- Draw N2 Tissues ---------------------------------------------------- | |
339 | 3473 lfsr FSR2, char_O_tissue_N2_saturation |
0 | 3474 movlw d'16' |
128 | 3475 movwf wait_temp ; 16 tissues |
3476 clrf waitms_temp ; Row offset | |
3477 | |
123 | 3478 movlw .1 |
3479 movff WREG,win_height ; row bottom (0-239) | |
128 | 3480 movlw .82+.18 ; surfmode |
3481 btfsc divemode | |
133 | 3482 movlw .90+.18 ; divemode |
123 | 3483 movff WREG,win_leftx2 ; column left (0-159) |
150 | 3484 movlw .57 ; surfmode: max width 57pix |
3485 btfsc divemode | |
3486 movlw .57-8 ; divemode: 8pix less... | |
3487 movff WREG,win_width | |
123 | 3488 |
681 | 3489 DISP_tissue_saturation_graph3: |
3490 call DISP_standard_color ; Reset color foreach iteration | |
150 | 3491 |
128 | 3492 movlw .25+3 ; surfmode: 3pix below top border |
3493 btfsc divemode | |
3494 movlw .169+3 ; divemode | |
0 | 3495 addwf waitms_temp,W |
123 | 3496 movff WREG,win_top ; row top (0-239) |
0 | 3497 |
3498 incf waitms_temp,F | |
3499 incf waitms_temp,F | |
3500 | |
123 | 3501 movf POSTINC2,W |
3502 bcf STATUS,C ; Clear carry | |
3503 rrcf WREG ; And divide by 4 | |
0 | 3504 bcf STATUS,C |
123 | 3505 rrcf WREG |
133 | 3506 movwf temp1 |
3507 | |
150 | 3508 movff win_width,WREG ; Max width. |
133 | 3509 cpfslt temp1 ; skip if 57 (WREG) < win_width |
3510 movwf temp1 | |
150 | 3511 movff temp1,win_bargraph |
0 | 3512 |
681 | 3513 call DISP_box |
0 | 3514 |
3515 decfsz wait_temp,F | |
681 | 3516 bra DISP_tissue_saturation_graph3 |
0 | 3517 |
128 | 3518 ;---- Draw He Tissues ---------------------------------------------------- |
339 | 3519 lfsr FSR2, char_O_tissue_He_saturation |
0 | 3520 movlw d'16' |
128 | 3521 movwf wait_temp ; 16 tissues |
3522 clrf waitms_temp ; Row offset | |
123 | 3523 |
681 | 3524 DISP_tissue_saturation_graph2: |
3525 call DISP_standard_color ; Reset color foreach iteration | |
123 | 3526 |
128 | 3527 movlw .120-.33 ; surfmode : 33pix above bottom border |
3528 btfsc divemode | |
3529 movlw .239-.33 ; divemode | |
0 | 3530 addwf waitms_temp,W |
123 | 3531 movff WREG,win_top ; row top (0-239) |
0 | 3532 |
3533 incf waitms_temp,F | |
3534 incf waitms_temp,F | |
3535 | |
123 | 3536 movf POSTINC2,W |
3537 bcf STATUS,C ; Clear carry | |
3538 rrcf WREG ; And divide by 4 | |
0 | 3539 bcf STATUS,C |
123 | 3540 rrcf WREG |
133 | 3541 movwf temp1 |
150 | 3542 |
3543 movff win_width,WREG ; Max width. | |
133 | 3544 cpfslt temp1 ; skip if 57 (WREG) < win_width |
3545 movwf temp1 | |
150 | 3546 movff temp1,win_bargraph |
0 | 3547 |
681 | 3548 call DISP_box |
0 | 3549 |
3550 decfsz wait_temp,F | |
681 | 3551 bra DISP_tissue_saturation_graph2 |
0 | 3552 |
128 | 3553 ;---- Draw N2/He Text ---------------------------------------------------- |
681 | 3554 call DISP_standard_color ; Reset color after last iterarion. |
150 | 3555 |
128 | 3556 movlw .82+2 ; surfmode: 2pix right of left border |
3557 btfsc divemode | |
3558 movlw .90+2 ; divemode | |
3559 movff WREG,win_leftx2 | |
3560 | |
3561 movlw .25+7 ; surfmode: 7pix below top border | |
3562 btfsc divemode | |
3563 movlw .169+7 ; divemode | |
3564 movff WREG,win_top | |
446 | 3565 STRCPY_PRINT TXT_N2_2 |
123 | 3566 |
128 | 3567 movlw .120-.30 ; surfmode: 30pix above bottom border |
3568 btfsc divemode | |
3569 movlw .239-.30 ; divemode | |
3570 movff WREG,win_top | |
446 | 3571 STRCPY_PRINT TXT_HE2 |
128 | 3572 |
3573 ;---- Draw scale and O2[16]% --------------------------------------------- | |
3574 btfsc divemode | |
3575 return | |
19 | 3576 |
3577 movff char_O_gtissue_no,wait_temp ; used as temp | |
3578 | |
339 | 3579 lfsr FSR1,char_O_tissue_N2_saturation |
3580 movf wait_temp,W ; W <- 0-15 | |
3581 movff PLUSW1,lo ; lo <- FSR1[W] | |
123 | 3582 |
19 | 3583 WIN_TOP .62 |
3584 WIN_FONT FT_SMALL | |
128 | 3585 lfsr FSR2,letter |
3586 bsf leftbind | |
3587 output_8 | |
19 | 3588 bcf leftbind |
3589 | |
128 | 3590 STRCAT_PRINT "% " |
3591 | |
3592 ;---- Draw Scale --------------------------------------------------------- | |
123 | 3593 WIN_BOX_STD .73, .74, .121, .157 |
3594 WIN_BOX_STD .61, .84, .121, .122 | |
3595 WIN_BOX_STD .65, .80, .130, .131 | |
3596 WIN_BOX_STD .65, .80, .139, .140 | |
3597 WIN_BOX_STD .65, .80, .148, .149 | |
3598 WIN_BOX_STD .61, .84, .157, .158 | |
0 | 3599 return |
3600 | |
128 | 3601 ;============================================================================= |
3602 | |
681 | 3603 DISP_startupscreen1: |
717 | 3604 call DISP_divemask_color |
0 | 3605 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" |
717 | 3606 call DISP_standard_color |
0 | 3607 DISPLAYTEXT .68 ; Licence 1/2 |
3608 DISPLAYTEXT .69 | |
3609 DISPLAYTEXT .70 | |
3610 DISPLAYTEXT .71 | |
3611 DISPLAYTEXT .72 | |
3612 DISPLAYTEXT .73 | |
3613 DISPLAYTEXT .74 | |
3614 return | |
3615 | |
681 | 3616 DISP_startupscreen2: |
717 | 3617 call DISP_divemask_color |
0 | 3618 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" |
717 | 3619 call DISP_standard_color |
0 | 3620 DISPLAYTEXT .75 ; Licence 2/2 |
3621 DISPLAYTEXT .76 | |
3622 DISPLAYTEXT .77 | |
3623 DISPLAYTEXT .78 | |
3624 DISPLAYTEXT .79 | |
3625 DISPLAYTEXT .80 | |
3626 DISPLAYTEXT .81 | |
3627 return | |
3628 | |
681 | 3629 DISP_new_cf_warning: |
717 | 3630 call DISP_divemask_color |
0 | 3631 DISPLAYTEXTH .271 ; New CF added! |
717 | 3632 call DISP_standard_color |
0 | 3633 DISPLAYTEXTH .272 ; New CustomFunctions |
3634 DISPLAYTEXTH .273 ; were added! Check | |
3635 DISPLAYTEXTH .274 ; CF I and CF II Menu | |
3636 DISPLAYTEXTH .275 ; for Details! | |
3637 return | |
3638 | |
681 | 3639 DISP_const_ppO2_value: |
0 | 3640 ostc_debug 'j' ; Sends debug-information to screen if debugmode active |
3641 | |
3642 WIN_TOP .168 | |
75 | 3643 WIN_LEFT .50 |
0 | 3644 WIN_FONT FT_SMALL |
3645 WIN_INVERT .0 ; Init new Wordprocessor | |
4 | 3646 |
0 | 3647 lfsr FSR2,letter |
3648 movff char_I_const_ppO2,lo | |
3649 | |
3650 tstfsz lo ; In Bailout mode (char_I_const_ppO2=0)? | |
681 | 3651 bra DISP_const_ppO2_value2 ; No, display Setpoint |
0 | 3652 |
3653 ; Yes, Display "Bail" | |
681 | 3654 call DISP_standard_color |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3655 OUTPUTTEXTH d'263' ;"Bail " |
0 | 3656 call word_processor |
3657 return | |
3658 | |
681 | 3659 DISP_const_ppO2_value2: ; Display SetPoint |
0 | 3660 ;Show fixed SP value |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
3661 SAFE_2BYTE_COPY amb_pressure, xA |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
3662 |
4 | 3663 movlw d'10' |
3664 movwf xB+0 | |
3665 clrf xB+1 | |
3666 ;xA/xB=xC with xA as remainder | |
3667 call div16x16 ; xC+0=p_amb/10 | |
26 | 3668 |
412 | 3669 ; char_I_const_ppO2 > p_amb/10 -> Not physically possible! -> Display actual value! |
3670 tstfsz xC+1 ; xC>255 | |
3671 setf xC+0 ; Yes, set xC+0 to 2,55bar ppO2 | |
26 | 3672 |
4 | 3673 movff ppO2_setpoint_store,WREG |
3674 cpfslt xC+0 ; Setpoint value possible? | |
681 | 3675 bra DISP_const_ppO2_value1 ; Yes |
4 | 3676 |
406
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3677 clrf hi ; Reset hi |
4 | 3678 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value |
681 | 3679 bra DISP_const_ppO2_value1a |
3680 | |
3681 DISP_const_ppO2_value1: | |
26 | 3682 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
3683 SAFE_2BYTE_COPY amb_pressure, xA |
26 | 3684 movlw d'10' |
3685 movwf xB+0 | |
3686 clrf xB+1 | |
3687 call div16x16 ; xC=p_amb/10 | |
3688 movff xC+0,xA+0 | |
3689 movff xC+1,xA+1 | |
3690 movff char_I_O2_ratio,xB+0 | |
3691 clrf xB+1 | |
3692 call mult16x16 ; xC:2=char_I_O2_ratio * p_amb/10 | |
3693 | |
3694 movff xC+0,sub_b+0 | |
3695 movff xC+1,sub_b+1 | |
3696 movff ppO2_setpoint_store,WREG; Setpoint | |
3697 mullw d'100' ; Setpoint*100 | |
3698 movff PRODL,sub_a+0 | |
3699 movff PRODH,sub_a+1 | |
3700 call sub16 ; sub_c = sub_a - sub_b | |
3701 | |
3702 btfss neg_flag | |
681 | 3703 bra DISP_const_ppO2_value11 ; Value in range (lower then fix Setpoint) |
26 | 3704 |
3705 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! | |
3706 | |
406
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3707 movff xC+0,xA+0 ; xC=p_amb/10 |
26 | 3708 movff xC+1,xA+1 |
3709 movlw d'100' | |
3710 movwf xB+0 | |
3711 clrf xB+1 | |
406
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3712 call div16x16 ;xA/xB=xC with xA as remainder |
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3713 |
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3714 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value |
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3715 movff xC+1,hi ; For test if ppO2>2,55bar |
138 | 3716 |
406
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3717 GETCUSTOM8 d'39' ; Adjust fixed SP? |
138 | 3718 dcfsnz WREG,F |
681 | 3719 bra DISP_const_ppO2_value1a ; Yes! |
138 | 3720 ; Do not adjust -> restore original SetPoint |
26 | 3721 |
681 | 3722 DISP_const_ppO2_value11: |
26 | 3723 ; Setpoint in possible limits |
4 | 3724 movff ppO2_setpoint_store,char_I_const_ppO2 ; Restore Setpoint |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3725 clrf hi |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3726 |
681 | 3727 DISP_const_ppO2_value1a: |
4 | 3728 movff char_I_const_ppO2,lo |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3729 |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3730 movff lo,WREG ; copy to WREG |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3731 mullw .100 |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3732 movff PRODH,xC+1 |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3733 movff PRODL,xC+0 ; For color code |
681 | 3734 DISP_color_code warn_ppo2 ; Color-code output (ppO2 stored in xC) |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3735 |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3736 tstfsz hi ; >2,55bar? |
681 | 3737 rcall DISP_const_ppO2_too_hi ; Yes |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3738 |
0 | 3739 bsf leftbind |
3740 output_16dp d'3' | |
3741 bcf leftbind | |
406
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3742 STRCAT_PRINT " " ; Display Setpoint with trailing zero |
681 | 3743 call DISP_standard_color ; Reset color |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3744 return |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3745 |
681 | 3746 DISP_const_ppO2_too_hi: |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
3747 PUTC '>' |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3748 setf lo ; show ">2.55" |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3749 clrf hi ; clear hi |
681 | 3750 call DISP_warnings_color ; Set Warning color |
0 | 3751 return |
3752 | |
785
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3753 |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3754 DISP_show_ceiling: |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3755 call DISP_divemask_color ; Set Color for Divemode mask |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3756 WIN_FONT FT_SMALL |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3757 DISPLAYTEXT d'233' ; Ceiling |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3758 DISP_show_ceiling_1: |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3759 call DISP_standard_color |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3760 WIN_FONT FT_MEDIUM |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3761 WIN_LEFT .100 |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3762 WIN_TOP .195 |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3763 lfsr FSR2,letter |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3764 movff int_O_ceiling+0,lo |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3765 movff int_O_ceiling+1,hi |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3766 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3767 bsf ignore_digit5 ; no cm |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3768 output_16dp .3 ; yxz.a |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3769 bcf ignore_digit5 |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3770 STRCAT_PRINT "" |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3771 return |
b0c96aaa86e4
add ceiling display, no turkish language support anymore
heinrichsweikamp
parents:
781
diff
changeset
|
3772 |
307 | 3773 ;============================================================================= |
3774 ; Display EAD/END computed in calc_hauptroutine_update_tissues() every 2sec. | |
3775 ; | |
681 | 3776 DISP_show_end_ead_divemode: |
3777 call DISP_divemask_color ; Set Color for Divemode mask | |
307 | 3778 |
3779 WIN_FONT FT_SMALL | |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3780 WIN_LEFT .95 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3781 WIN_TOP .192 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3782 lfsr FSR2,letter |
307 | 3783 OUTPUTTEXTH .299 ; EAD: |
326 | 3784 call word_processor |
307 | 3785 |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3786 WIN_TOP .216 |
326 | 3787 lfsr FSR2,letter |
307 | 3788 OUTPUTTEXTH .298 ; END: |
326 | 3789 call word_processor |
3790 | |
681 | 3791 call DISP_standard_color ; Back to white. |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3792 WIN_LEFT .125 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3793 WIN_TOP .192 |
326 | 3794 lfsr FSR2,letter |
3795 movff char_O_EAD,lo | |
3796 bsf leftbind | |
307 | 3797 output_8 ; Print EAD w/o leading space. |
446 | 3798 STRCAT_PRINT TXT_METER2 |
307 | 3799 |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3800 WIN_TOP .216 |
326 | 3801 lfsr FSR2,letter |
3802 movff char_O_END,lo | |
307 | 3803 output_8 ; Print END w/o leading space. |
326 | 3804 bcf leftbind |
446 | 3805 STRCAT_PRINT TXT_METER2 |
326 | 3806 |
3807 ; Show ppO2[Flush] iff in CCR mode & not in Bailout: | |
3808 btfsc is_bailout ; In bailout mode? | |
307 | 3809 return ; Yes: done. |
3810 | |
326 | 3811 btfss FLAG_const_ppO2_mode ; In (true) CCR mode ? |
307 | 3812 return ; No: done. |
3813 | |
301 | 3814 WIN_LEFT .95 |
3815 WIN_TOP .168 | |
681 | 3816 call DISP_divemask_color ; Set Color for Divemode mask |
446 | 3817 STRCPY_PRINT TXT_PPO2_5 ; ppO2 of diluent |
326 | 3818 |
3819 movff char_O_flush_ppO2,WREG ; copy to WREG | |
3820 mullw .100 | |
3821 movff PRODH,xC+1 | |
3822 movff PRODL,xC+0 ; For color code | |
681 | 3823 DISP_color_code warn_ppo2 ; Color-code output (ppO2 stored in xC) |
301 | 3824 |
3825 WIN_LEFT .130 | |
3826 WIN_TOP .168 | |
322 | 3827 |
3828 movff char_O_flush_ppO2, lo | |
3829 incf lo,W ; ppO2 == 2.55 ? | |
681 | 3830 bnz DISP_show_end_ead_divemode_1 |
326 | 3831 |
322 | 3832 STRCPY_PRINT "----" ; YES: mark overflow. |
681 | 3833 goto DISP_standard_color ; Back to white. |
3834 | |
3835 DISP_show_end_ead_divemode_1: | |
301 | 3836 lfsr FSR2,letter |
307 | 3837 clrf hi |
301 | 3838 bsf leftbind |
307 | 3839 output_16dp d'3' ; Show ppO2 w/o leading zero |
301 | 3840 bcf leftbind |
731
87c74962b7e1
show ppO2 of diluent gas in bailout case correctly
heinrichsweikamp
parents:
728
diff
changeset
|
3841 PUTC " " |
87c74962b7e1
show ppO2 of diluent gas in bailout case correctly
heinrichsweikamp
parents:
728
diff
changeset
|
3842 clrf WREG |
87c74962b7e1
show ppO2 of diluent gas in bailout case correctly
heinrichsweikamp
parents:
728
diff
changeset
|
3843 movff WREG,letter+4 ; limit to five chars |
87c74962b7e1
show ppO2 of diluent gas in bailout case correctly
heinrichsweikamp
parents:
728
diff
changeset
|
3844 STRCAT_PRINT "" ; Display ppO2[Diluent] |
681 | 3845 goto DISP_standard_color ; Back to white. |
277
46d1012d096a
Quick-access to menupos3 in divemode - ToDo: EAD and END in CCR mode
heinrichsweikamp
parents:
274
diff
changeset
|
3846 |
307 | 3847 ;============================================================================= |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3848 ; Display TTS after extra time at the same depth. |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3849 ; |
681 | 3850 DISP_show_@5: |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3851 WIN_FONT FT_SMALL |
701 | 3852 WIN_LEFT .159-.69 ; 10 chars aligned right. |
313 | 3853 WIN_TOP .170 |
681 | 3854 call DISP_divemask_color ; Set Color for Divemode mask |
314 | 3855 lfsr FSR2,letter |
323 | 3856 |
3857 OUTPUTTEXTH .305 ; "Future TTS" | |
314 | 3858 call word_processor |
3859 | |
3860 WIN_LEFT .97 | |
313 | 3861 WIN_TOP .194 |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3862 STRCPY "@" |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3863 GETCUSTOM8 d'58' |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3864 movwf lo |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3865 bsf leftbind |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3866 output_8 |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3867 bcf leftbind |
323 | 3868 STRCAT_PRINT "': " |
313 | 3869 |
323 | 3870 WIN_LEFT .97+7*5 ; "@10':" is 5 chars long |
681 | 3871 call DISP_standard_color |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3872 lfsr FSR2,letter |
323 | 3873 |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3874 movff int_O_extra_ascenttime+0,lo |
313 | 3875 movff int_O_extra_ascenttime+1,hi |
3876 movf lo,W | |
323 | 3877 iorwf hi,W ; extra_ascenttime == 0 ? |
681 | 3878 bz DISP_show_@5_nodeco |
323 | 3879 movf lo,W ; extra_ascenttime == 0xFFFF ? |
3880 andwf hi,W | |
3881 incf WREG,w | |
681 | 3882 bz DISP_show_@5_wait |
323 | 3883 |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3884 bsf leftbind |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3885 output_16 |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3886 bcf leftbind |
756 | 3887 STRCAT "' " ; From "none" to "1'" we need 2 trailing spaces |
3888 movff WREG,letter+3 ; limit to four chars | |
3889 STRCAT_PRINT "" | |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3890 return |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3891 |
681 | 3892 DISP_show_@5_nodeco: |
3893 DISP_show_@5_wait: | |
323 | 3894 STRCPY_PRINT "--- " |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3895 return |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3896 |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
310
diff
changeset
|
3897 ;============================================================================= |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
3898 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
3899 compute_pscr_ppo2: |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
3900 ; (Pressure[mbar]*char_I_O2_ratio)-(100-char_I_O2_ratio)*CF61*CF62*10 |
552 | 3901 movff char_I_O2_ratio,WREG |
3902 sublw .100 ; 100-char_I_O2_ratio -> WREG | |
3903 mullw .10 ; (100-char_I_O2_ratio)*10 -> PROD:2 | |
3904 movff PRODL,xA+0 | |
3905 movff PRODH,xA+1 | |
3906 GETCUSTOM8 d'62' ; O2 Drop | |
3907 movff WREG,xB+0 | |
3908 clrf xB+1 | |
3909 call mult16x16 ;xA*xB=xC -> (100-char_I_O2_ratio)*10*CF61 | |
3910 movff xC+0,xA+0 | |
3911 movff xC+1,xA+1 | |
3912 GETCUSTOM8 d'63' ; Lung ratio | |
3913 movff WREG,xB+0 | |
3914 clrf xB+1 | |
3915 call mult16x16 ;xA*xB=xC -> (100-char_I_O2_ratio)*10*CF61*CF62 | |
3916 | |
3917 movlw .10 | |
3918 movwf xB+0 | |
3919 clrf xB+1 | |
3920 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3921 ; store xC:2 in lo:hi | |
3922 movff xC+0,lo | |
3923 movff xC+1,hi | |
3924 | |
3925 SAFE_2BYTE_COPY amb_pressure, xA | |
3926 movff char_I_O2_ratio,xB+0 | |
3927 clrf xB+1 | |
3928 call mult16x16 ;xA*xB=xC -> xC:4 = Pressure[mbar]*char_I_O2_ratio | |
3929 | |
3930 movlw .10 | |
3931 movwf xB+0 | |
3932 clrf xB+1 | |
3933 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3934 | |
3935 ; store xC:2 in sub_a | |
3936 movff xC+0,sub_a+0 | |
3937 movff xC+1,sub_a+1 | |
3938 ; reload result from lo:hi | |
3939 movff lo,sub_b+0 | |
3940 movff hi,sub_b+1 | |
3941 | |
3942 call subU16 ;sub_c = sub_a - sub_b (with UNSIGNED values) | |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
3943 return |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
3944 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
3945 ; Display pSCR ppO2 |
681 | 3946 DISP_show_pSCR_ppO2: |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
3947 WIN_FONT FT_SMALL |
682 | 3948 WIN_LEFT .159-.63 ; 9 chars aligned right. |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
3949 WIN_TOP .170 |
681 | 3950 call DISP_divemask_color ; Set Color for Divemode mask |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
3951 lfsr FSR2,letter |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
3952 OUTPUTTEXTH .266 ; "pSCR Info" |
762 | 3953 call word_processor |
552 | 3954 |
3955 WIN_FONT FT_SMALL | |
3956 WIN_LEFT .95 | |
3957 WIN_TOP .192 | |
3958 lfsr FSR2,letter | |
3959 STRCPY_PRINT TXT_PPO2_5 ; ppO2: | |
762 | 3960 rcall compute_pscr_ppo2 ; pSCR ppO2 into sub_c:2 |
552 | 3961 movff sub_c+0,xC+0 |
3962 movff sub_c+1,xC+1 | |
3963 clrf xC+2 | |
3964 clrf xC+3 ; For color coding | |
681 | 3965 DISP_color_code warn_ppo2 ; Color-code output (ppO2 stored in xC) |
552 | 3966 WIN_LEFT .130 |
3967 WIN_TOP .192 | |
762 | 3968 lfsr FSR2,letter |
3969 movff xC+0,lo | |
3970 movff xC+1,hi | |
552 | 3971 bsf ignore_digit4 |
3972 output_16dp d'1' | |
3973 bcf ignore_digit4 | |
762 | 3974 PUTC " " |
3975 movlw .0 | |
3976 movff WREG,letter+.4 ; Limit to 4chars | |
3977 STRCAT_PRINT "" | |
681 | 3978 call DISP_standard_color ; Back to white. |
552 | 3979 ; Show O2 drop and counter lung ration in second row |
3980 WIN_LEFT .98 | |
3981 WIN_TOP .216 | |
3982 lfsr FSR2,letter | |
3983 GETCUSTOM8 d'62' ; O2 Drop in percent | |
3984 movwf lo | |
3985 bsf leftbind | |
3986 output_8 | |
3987 STRCAT "% 1/" | |
3988 GETCUSTOM8 d'63' ; Counter lung ratio in 1/X | |
3989 movwf lo | |
3990 output_8 | |
3991 bcf leftbind | |
762 | 3992 PUTC " " |
3993 movlw .0 | |
3994 movff WREG,letter+.9 ; Limit to 9chars | |
3995 STRCAT_PRINT "" | |
552 | 3996 return |
3997 | |
3998 ;============================================================================= | |
476 | 3999 ; Display cave consomation prediction (and warning). |
4000 ; | |
681 | 4001 DISP_show_cave_bailout: |
476 | 4002 WIN_FONT FT_SMALL |
728 | 4003 WIN_LEFT .159-.69 ; 10 chars aligned right. |
476 | 4004 WIN_TOP .170 |
681 | 4005 call DISP_divemask_color ; Set Color for Divemode mask |
476 | 4006 lfsr FSR2,letter |
4007 | |
4008 OUTPUTTEXTH .311 ; "Cave Bail." | |
4009 call word_processor | |
4010 | |
4011 ; WIN_TOP .240 - 24 ; DO NOT display liter units, as this | |
4012 ; WIN_LEFT .160 - 7 ; can be Bars also... | |
4013 ; STRCPY_PRINT "l" | |
4014 | |
4015 WIN_FONT FT_MEDIUM | |
4016 WIN_LEFT .90 | |
4017 WIN_TOP .201 ; 170 + 24 + 14/2 + 32 + 14/2 = 240. | |
681 | 4018 call DISP_standard_color |
476 | 4019 lfsr FSR2,letter |
4020 | |
479
9fc8feff27a5
Enable reset in cave bailout prediction, by using chrono average depth.
JeanDo
parents:
478
diff
changeset
|
4021 ;---- Retrieve divetime in seconds (since last reset) |
9fc8feff27a5
Enable reset in cave bailout prediction, by using chrono average depth.
JeanDo
parents:
478
diff
changeset
|
4022 movff average_divesecs+0,xA+0 |
9fc8feff27a5
Enable reset in cave bailout prediction, by using chrono average depth.
JeanDo
parents:
478
diff
changeset
|
4023 movff average_divesecs+1,xA+1 |
476 | 4024 |
478
fd8266b511cc
New SAC (CF56/CF57) in 5..50 l/min range (no more decimal).
JeanDo
parents:
476
diff
changeset
|
4025 ;---- Multiply by SAC, and divide by 60 (SAC inliters per minutes) |
476 | 4026 GETCUSTOM8 d'56' ; Get bottom SAC |
4027 movwf xB+0 | |
4028 clrf xB+1 | |
4029 call mult16x16 ; xC:4=xA:2*xB:2 | |
4030 | |
478
fd8266b511cc
New SAC (CF56/CF57) in 5..50 l/min range (no more decimal).
JeanDo
parents:
476
diff
changeset
|
4031 movlw LOW(.60) |
476 | 4032 movwf xB+0 |
478
fd8266b511cc
New SAC (CF56/CF57) in 5..50 l/min range (no more decimal).
JeanDo
parents:
476
diff
changeset
|
4033 movlw HIGH(.60) |
476 | 4034 movwf xB+1 |
4035 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
4036 | |
4037 ;---- Multiply by average pressure [absolute, in bar] | |
4038 movff xC+0,xA+0 ; Get result (in xC+0, noy xC+2 !) into xA | |
4039 movff xC+1,xA+1 | |
4040 | |
479
9fc8feff27a5
Enable reset in cave bailout prediction, by using chrono average depth.
JeanDo
parents:
478
diff
changeset
|
4041 movf avr_rel_pressure+0,W ; Add surface pressure to get absolute pressure |
476 | 4042 addwf last_surfpressure_30min+0,W |
4043 movwf xB+0 | |
479
9fc8feff27a5
Enable reset in cave bailout prediction, by using chrono average depth.
JeanDo
parents:
478
diff
changeset
|
4044 movf avr_rel_pressure+1,W |
476 | 4045 addwfc last_surfpressure_30min+1,W |
4046 movwf xB+1 ; --> Into xB | |
4047 | |
4048 call mult16x16 ; xC:4=xA:2*xB:2 | |
4049 | |
4050 movlw LOW(.1000) ; Pressure was in milibar, so divide by 1000. | |
4051 movwf xB+0 | |
4052 movlw HIGH(.1000) | |
4053 movwf xB+1 | |
4054 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
4055 | |
4056 ;---- Go RED when limit is exceeded | |
4057 movff xC+0,sub_a+0 | |
4058 movff xC+1,sub_a+1 | |
4059 GETCUSTOM15 d'59' ; Get Cave bailout alarm threshold | |
4060 movff lo, sub_b+0 | |
4061 movff hi, sub_b+1 | |
4062 call sub16 ; Computes prediction - limit | |
4063 btfss neg_flag ; Negativ ? | |
681 | 4064 call DISP_warnings_color ; NO: go RED. |
476 | 4065 |
4066 ;---- Then display... | |
4067 movff xC+0,lo | |
4068 movff xC+1,hi | |
4069 | |
4070 bcf leftbind | |
4071 output_16 | |
4072 call word_processor | |
4073 WIN_FONT FT_SMALL | |
4074 return | |
4075 | |
4076 ;============================================================================= | |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
4077 |
681 | 4078 DISP_show_leading_tissue: |
4079 call DISP_divemask_color ; Set Color for Divemode mask | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
4080 DISPLAYTEXTH .282 ; L. Tissue: |
681 | 4081 DISP_show_leading_tissue_2: |
116 | 4082 call deco_calc_desaturation_time ; calculate desaturation time |
0 | 4083 movlb b'00000001' ; select ram bank 1 |
4084 | |
123 | 4085 STRCPY "#" |
0 | 4086 movff char_O_gtissue_no,lo |
4087 movff char_O_gtissue_no,wait_temp ; used as temp | |
4088 bsf leftbind | |
4089 output_8 | |
123 | 4090 STRCAT " (" |
0 | 4091 |
4092 movlw d'16' | |
4093 cpfslt wait_temp | |
681 | 4094 bra DISP_show_leading_tissue_he |
446 | 4095 STRCAT TXT_N2_2 |
681 | 4096 bra DISP_show_leading_tissue2 |
4097 | |
4098 DISP_show_leading_tissue_he: | |
446 | 4099 STRCAT TXT_HE2 |
123 | 4100 |
681 | 4101 DISP_show_leading_tissue2: |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
4102 WIN_LEFT .95 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
4103 WIN_TOP .192 |
0 | 4104 WIN_FONT FT_SMALL |
681 | 4105 call DISP_standard_color |
123 | 4106 |
4107 STRCAT_PRINT ") " | |
4108 | |
339 | 4109 lfsr FSR1,char_O_tissue_N2_saturation |
4110 movf wait_temp,W ; W <- 0-15 | |
4111 movff PLUSW1,lo ; lo <- FSR1[W] | |
123 | 4112 |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
4113 WIN_LEFT .95 |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
4114 WIN_TOP .216 |
0 | 4115 WIN_FONT FT_SMALL |
123 | 4116 |
4117 lfsr FSR2,letter | |
4118 output_8 | |
4119 STRCAT_PRINT "% " | |
0 | 4120 bcf leftbind |
4121 return | |
4122 | |
681 | 4123 DISP_marker_set: |
674 | 4124 WIN_LEFT .105 |
4125 WIN_TOP .170 | |
4126 WIN_FONT FT_SMALL | |
4127 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 4128 call DISP_divemask_color ; Set Color for Divemode mask |
674 | 4129 SAFE_2BYTE_COPY marker_depth, lo |
4130 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
4131 lfsr FSR2,letter | |
4132 bsf leftbind | |
4133 bsf ignore_digit5 ; do not display 1cm depth | |
4134 output_16dp d'3' | |
4135 PUTC TXT_METER_C | |
4136 bcf show_last3 | |
4137 call word_processor | |
4138 | |
4139 WIN_LEFT .105 | |
4140 WIN_TOP .192 | |
4141 WIN_INVERT .0 ; Init new Wordprocessor | |
4142 movff marker_time+0,lo | |
4143 movff marker_time+1,hi | |
4144 bsf leftbind | |
4145 lfsr FSR2,letter | |
4146 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
4147 PUTC ':' | |
4148 movff marker_time+2,lo | |
4149 output_99x | |
4150 call word_processor | |
4151 bcf leftbind | |
681 | 4152 call DISP_standard_color |
674 | 4153 return |
4154 | |
681 | 4155 DISP_topline_box_clear: ; Writes an empty box |
0 | 4156 movlw .0 |
681 | 4157 bra DISP_topline_box2 |
4158 DISP_topline_box: ; Writes a filled box... | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
4159 GETCUSTOM8 d'35' ; ... with the standard color |
681 | 4160 DISP_topline_box2: |
123 | 4161 WIN_BOX_COLOR .0, .26, .0, .159 |
681 | 4162 call DISP_standard_color ; Reset to standard color in case of unreadable color |
0 | 4163 return |
4164 | |
681 | 4165 DISP_display_cns: |
0 | 4166 btfsc gauge_mode ; Do not display in gauge mode |
4167 return | |
4168 | |
4169 btfsc FLAG_apnoe_mode ; Do not display in apnoe mode | |
4170 return | |
4171 | |
681 | 4172 btfsc DISP_velocity_display ; Is velocity displayed?` |
4173 return ; Yes, do not overwrite until DISP_velocity_clear was called | |
0 | 4174 |
4175 ostc_debug 'k' ; Sends debug-information to screen if debugmode active | |
4176 | |
4177 WIN_TOP .090 | |
4178 WIN_LEFT .0 | |
4179 WIN_FONT FT_SMALL | |
681 | 4180 DISP_color_code warn_cns ; Color-code CNS output |
0 | 4181 |
446 | 4182 STRCPY TXT_CNS4 |
0 | 4183 movff char_O_CNS_fraction,lo |
4184 bsf leftbind | |
4185 output_8 | |
4186 bcf leftbind | |
123 | 4187 STRCAT_PRINT "%" |
0 | 4188 return |
4189 | |
519 | 4190 ;----------------------------------------------------------------------------- |
4191 ; | |
681 | 4192 DISP_display_cns_surface: |
43 | 4193 ; Check if CNS should be displayed |
4194 movff char_O_CNS_fraction,lo ; copy into bank1 | |
4195 GETCUSTOM8 d'15' ; cns_display_high_surfacemode | |
4196 subwf lo,W | |
4197 btfss STATUS,C | |
4198 return ; Do not show... | |
4199 ; Show CNS | |
4200 | |
4201 ostc_debug 'W' ; Sends debug-information to screen if debugmode active | |
4202 | |
4203 WIN_TOP .175 | |
4204 WIN_LEFT .45 | |
4205 WIN_FONT FT_SMALL | |
4206 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 4207 DISP_color_code warn_cns ; Color-code CNS output |
43 | 4208 |
446 | 4209 STRCPY TXT_CNS4 |
43 | 4210 movff char_O_CNS_fraction,lo |
4211 bsf leftbind | |
4212 output_8 | |
4213 bcf leftbind | |
519 | 4214 STRCAT_PRINT "% " |
43 | 4215 return |
4216 | |
519 | 4217 ;----------------------------------------------------------------------------- |
4218 ; Display GF at furface, if > CF8. | |
4219 ; | |
681 | 4220 DISP_display_gf_surface: |
519 | 4221 movff char_O_gradient_factor,lo ; gradient factor |
4222 GETCUSTOM8 d'8' ; threshold for display | |
4223 cpfslt lo ; show value? | |
681 | 4224 bra DISP_display_gf_surf_1 ; YES: do it. |
519 | 4225 return |
4226 | |
681 | 4227 DISP_display_gf_surf_1: |
519 | 4228 WIN_TOP .175 |
4229 WIN_LEFT .45 | |
4230 WIN_FONT FT_SMALL | |
681 | 4231 DISP_color_code warn_gf ; Color-code Output |
519 | 4232 |
4233 STRCPY TXT_GF3 | |
4234 movff char_O_gradient_factor,lo ; gradient factor | |
4235 output_8 | |
4236 STRCAT_PRINT "% " | |
681 | 4237 goto DISP_standard_color |
519 | 4238 |
4239 ;----------------------------------------------------------------------------- | |
43 | 4240 |
681 | 4241 DISP_custom_text: |
0 | 4242 read_int_eeprom d'64' |
4243 movlw d'1' | |
4244 cpfseq EEDATA ; Custom text active? | |
681 | 4245 bra DISP_custom_text_serial ; No, show serial instead |
0 | 4246 WIN_TOP .200 |
62 | 4247 WIN_LEFT .0 |
0 | 4248 WIN_FONT FT_SMALL |
4249 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 4250 call DISP_divemask_color ; Set Color for Divemode mask |
0 | 4251 |
4252 lfsr FSR2,letter | |
4253 movlw d'64' | |
4254 movwf lo | |
4255 movlw d'24' | |
4256 movwf hi ; counter | |
4257 | |
681 | 4258 DISP_custom_text1: |
0 | 4259 incf lo,F |
681 | 4260 call DISP_get_custom_letter ; Get one letter for the custom text |
0 | 4261 movlw '}' ; End marker found? |
4262 cpfseq EEDATA | |
681 | 4263 bra DISP_custom_text2 ; No |
4264 bra DISP_custom_text3 | |
4265 DISP_custom_text2: | |
0 | 4266 movff EEDATA,POSTINC2 ; Copy into Postinc |
4267 | |
4268 decfsz hi,F ; Max. numbers? | |
681 | 4269 bra DISP_custom_text1 ; No, get next letters |
4270 | |
4271 DISP_custom_text3: | |
0 | 4272 call word_processor |
681 | 4273 call DISP_standard_color |
0 | 4274 return |
4275 | |
681 | 4276 DISP_get_custom_letter: |
0 | 4277 movff lo,EEADR ; Address for next custom text letter |
4278 call read_eeprom ; Read letter | |
4279 return | |
4280 | |
681 | 4281 DISP_custom_text_serial: |
0 | 4282 WIN_TOP .200 |
607 | 4283 WIN_LEFT .50 |
4284 WIN_FONT FT_SMALL | |
4285 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 4286 call DISP_divemask_color ; Set Color for Divemode mask |
607 | 4287 |
4288 lfsr FSR2,letter | |
4289 OUTPUTTEXTH d'262' ; "OSTC " | |
4290 clrf EEADRH | |
4291 clrf EEADR ; Get Serial number LOW | |
4292 call read_eeprom ; read byte | |
4293 movff EEDATA,lo | |
4294 incf EEADR,F ; Get Serial number HIGH | |
4295 call read_eeprom ; read byte | |
4296 movff EEDATA,hi | |
4297 bsf leftbind | |
4298 output_16 | |
4299 call word_processor | |
681 | 4300 call DISP_standard_color |
0 | 4301 return |
4302 | |
681 | 4303 DISP_simdata_screen: ;Display Pre-Dive Screen |
33 | 4304 ; List active gases/Setpoints |
4305 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
681 | 4306 bra DISP_simdata_screen3 ; Yes, display SetPoint/Sensor result list |
4307 | |
4308 DISP_simdata_screen2: | |
33 | 4309 ostc_debug 'm' ; Sends debug-information to screen if debugmode active |
4310 | |
4311 WIN_LEFT .0 | |
4312 WIN_FONT FT_SMALL | |
4313 bsf leftbind | |
4314 | |
4315 movlw d'2' | |
4316 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 4317 movlw d'10' |
33 | 4318 movwf waitms_temp ; here: stores row for gas list |
4319 clrf hi ; here: Gas counter | |
4320 | |
681 | 4321 DISP_simdata_screen2_loop: |
33 | 4322 incf hi,F ; Increase Gas |
4323 movlw d'4' | |
4324 addwf wait_temp,F ; Increase eeprom address for gas list | |
4325 | |
446 | 4326 STRCPY TXT_GAS1 |
33 | 4327 movff hi,lo ; copy gas number |
4328 output_8 ; display gas number | |
123 | 4329 PUTC ':' |
519 | 4330 movff wait_temp, EEADR ; Gas #hi: %O2 - Set address in internal EEPROM |
33 | 4331 call read_eeprom ; get byte (stored in EEDATA) |
4332 movff EEDATA,lo ; copy to lo | |
4333 output_8 ; outputs into Postinc2! | |
123 | 4334 PUTC '/' |
33 | 4335 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
4336 call read_eeprom ; get byte (stored in EEDATA) | |
4337 movff EEDATA,lo ; copy to lo | |
4338 output_8 ; outputs into Postinc2! | |
123 | 4339 PUTC ' ' |
34 | 4340 movf hi,W ; Gas number |
4341 addlw d'27' ; -> Adress of change depth register | |
4342 call read_int_eeprom_1 | |
4343 movff EEDATA,lo ; Change depth in m | |
223 | 4344 movff lo,divemins ; Store for grey-out |
34 | 4345 output_99 ; outputs into Postinc2! |
446 | 4346 PUTC TXT_METER_C |
223 | 4347 |
4348 ; Check if gas is first gas ? | |
4349 read_int_eeprom d'33' ; First gas (1-5)? | |
4350 movf hi,W ; Current gas in WREG | |
4351 cpfseq EEDATA ; Is equal first gas? | |
681 | 4352 bra DISP_simdata_screen2_loop2 ; No : more tests... |
4353 | |
4354 bra DISP_simdata_white ; Yes | |
4355 | |
4356 DISP_simdata_screen2_loop2: | |
223 | 4357 ; Check if gas is inactive ? |
4358 read_int_eeprom d'27' ; read flag register | |
4359 movff hi,lo ; copy gas number | |
681 | 4360 DISP_simdata_screen2_loop1: |
223 | 4361 rrcf EEDATA ; roll flags into carry |
4362 decfsz lo,F ; max. 5 times... | |
681 | 4363 bra DISP_simdata_screen2_loop1 |
181 | 4364 |
223 | 4365 btfss STATUS,C ; test inactive flag |
681 | 4366 bra DISP_simdata_grey ; Is inactive! |
223 | 4367 |
4368 tstfsz divemins ; Test change depth=0? | |
681 | 4369 bra DISP_simdata_white ; Is not zero |
4370 | |
4371 DISP_simdata_grey: | |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
4372 GETCUSTOM8 d'64' ;movlw color_grey |
681 | 4373 call DISP_set_color ; grey out inactive gases! |
4374 bra DISP_simdata_color_done | |
4375 | |
4376 DISP_simdata_white: | |
4377 call DISP_standard_color | |
4378 | |
4379 DISP_simdata_color_done: | |
33 | 4380 movlw d'25' |
4381 addwf waitms_temp,F ; Increase row | |
4382 WIN_LEFT .0 | |
4383 movff waitms_temp,win_top ; Set Row | |
34 | 4384 call word_processor ; display gas |
33 | 4385 |
681 | 4386 DISP_simdata_screen2b: |
4387 call DISP_standard_color | |
33 | 4388 |
34 | 4389 movlw d'5' ; list all five gases |
33 | 4390 cpfseq hi ; All gases shown? |
681 | 4391 bra DISP_simdata_screen2_loop ; No |
33 | 4392 |
4393 return ; No, return (OC mode) | |
4394 | |
681 | 4395 DISP_simdata_screen3: |
33 | 4396 WIN_LEFT .0 |
4397 WIN_FONT FT_SMALL | |
4398 bsf leftbind | |
4399 | |
4400 ; list three SP in Gaslist | |
4401 movlw d'35' ; 36 = current SP position in EEPROM | |
4402 movwf wait_temp ; here: stores eeprom address for gas list | |
34 | 4403 movlw d'10' |
33 | 4404 movwf waitms_temp ; here: stores row for gas list |
124 | 4405 clrf decoplan_index ; here: SP counter |
33 | 4406 |
681 | 4407 DISP_simdata_screen3_loop: |
33 | 4408 incf wait_temp,F ; EEPROM address |
124 | 4409 incf decoplan_index,F ; Increase SP |
33 | 4410 |
4411 movlw d'25' | |
4412 addwf waitms_temp,F ; Increase row | |
4413 WIN_LEFT .0 | |
4414 movff waitms_temp,win_top ; Set Row | |
4415 | |
446 | 4416 STRCPY TXT_SP2 |
124 | 4417 movff decoplan_index,lo ; copy gas number |
33 | 4418 output_8 ; display gas number |
123 | 4419 STRCAT ": " |
33 | 4420 movff wait_temp, EEADR; SP #hi position |
4421 call read_eeprom ; get byte (stored in EEDATA) | |
4422 movff EEDATA,lo ; copy to lo | |
4423 clrf hi | |
4424 output_16dp d'3' ; outputs into Postinc2! | |
4425 call word_processor | |
4426 | |
4427 movlw d'3' ; list all three SP | |
124 | 4428 cpfseq decoplan_index ; All gases shown? |
681 | 4429 bra DISP_simdata_screen3_loop ;no |
33 | 4430 |
657
8dd730d3a5d7
show first diluent in simulator result screen (Instead of first gas)
heinrichsweikamp
parents:
655
diff
changeset
|
4431 ; Show Diluent |
8dd730d3a5d7
show first diluent in simulator result screen (Instead of first gas)
heinrichsweikamp
parents:
655
diff
changeset
|
4432 call get_first_diluent ; Read first diluent into lo(O2) and hi(He) |
33 | 4433 WIN_LEFT .0 |
34 | 4434 WIN_TOP .110 |
446 | 4435 STRCPY TXT_DIL4 |
33 | 4436 output_8 ; O2 Ratio |
123 | 4437 STRCAT "/" |
33 | 4438 movff hi,lo |
4439 output_8 ; He Ratio | |
4440 call word_processor | |
4441 | |
4442 bcf leftbind | |
4443 return ; Return (CC Mode) | |
4444 | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
4445 adjust_depth_with_salinity: ; computes salinity setting into lo:hi [mbar] |
0 | 4446 |
4447 btfsc simulatormode_active ; Do apply salinity in Simulatormode | |
4448 return | |
4449 | |
4450 read_int_eeprom d'26' ; Read Salinity from EEPROM | |
4451 movff EEDATA, wait_temp ; salinity | |
4452 | |
4453 movlw d'105' ; 105% ? | |
4454 cpfslt wait_temp ; Salinity higher limit | |
4455 return ; Out of limit, do not adjust lo:hi | |
4456 | |
4457 movlw d'99' ; 99% ? | |
4458 cpfsgt wait_temp ; Salinity lower limit | |
4459 return ; Out of limit, do not adjust lo:hi | |
4460 | |
4461 movff lo,xA+0 | |
4462 movff hi,xA+1 | |
4463 | |
419
e671d2018e0f
0.98bar equal 10m depths with salinity set to 1.00kg/l
heinrichsweikamp
parents:
417
diff
changeset
|
4464 movlw d'102' ; 0,98bar/10m |
0 | 4465 movwf xB+0 |
4466 clrf xB+1 | |
4467 | |
4468 call mult16x16 ;xA*xB=xC (lo:hi * 100) | |
4469 | |
4470 movff wait_temp,xB+0 ; Salinity | |
4471 clrf xB+1 | |
4472 | |
4473 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
4474 | |
4475 movff xC+0,lo | |
4476 movff xC+1,hi ; restore lo and hi with updated value | |
4477 | |
517 | 4478 return |