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