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