Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/outputs.asm @ 715:de413161f00c
256ms switch debounce timer
author | heinrichsweikamp |
---|---|
date | Tue, 21 May 2013 12:17:49 +0200 |
parents | d68c6a6b1f38 |
children | 91ae251d379f |
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 | |
681 | 300 call DISPLAY_boot ; DISP boot |
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 |
3e0192f6c241
NEW: End-of-Dive countdown displayed after surfacing
heinrichsweikamp
parents:
406
diff
changeset
|
693 WIN_LEFT .112 |
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: |
1065 call DISP_topline_box | |
0 | 1066 WIN_INVERT .1 ; Init new Wordprocessor |
1067 DISPLAYTEXT .5 ; Menu: | |
1068 WIN_INVERT .0 ; Init new Wordprocessor | |
1069 DISPLAYTEXT .6 ; Logbook | |
1070 DISPLAYTEXT .7 ; Gas Setup | |
1071 DISPLAYTEXT .9 ; Reset all | |
1072 DISPLAYTEXT .10 ; Setup... | |
1073 DISPLAYTEXT .142 ; More... | |
1074 DISPLAYTEXT .11 ; Exit | |
624 | 1075 |
1076 ; Write OSTC serial in Main Menu | |
1077 WIN_TOP .215 | |
1078 WIN_LEFT .47 | |
1079 GETCUSTOM8 d'64' ; Write header in blue when | |
681 | 1080 call DISP_set_color ; compiled in DEBUG mode... |
624 | 1081 lfsr FSR2,letter |
1082 OUTPUTTEXTH d'262' ; "OSTC " | |
1083 clrf EEADRH | |
1084 clrf EEADR ; Get Serial number LOW | |
1085 call read_eeprom ; read byte | |
1086 movff EEDATA,lo | |
1087 incf EEADR,F ; Get Serial number HIGH | |
1088 call read_eeprom ; read byte | |
1089 movff EEDATA,hi | |
1090 bsf leftbind | |
1091 output_16 | |
1092 call word_processor | |
681 | 1093 call DISP_standard_color |
0 | 1094 return |
1095 | |
681 | 1096 DISP_setup_menu_mask: |
1097 call DISP_topline_box | |
639 | 1098 WIN_INVERT .1 ; Init new Wordprocessor |
0 | 1099 DISPLAYTEXT .98 ; Setup Menu: |
639 | 1100 WIN_INVERT .0 ; Init new Wordprocessor |
0 | 1101 DISPLAYTEXT .99 ; Custom FunctionsI |
1102 DISPLAYTEXT .153 ; Custom FunctionsII | |
574 | 1103 DISPLAYTEXTH .295 ; Custom FunctionsIII |
0 | 1104 DISPLAYTEXT .100 ; Decotype: |
1105 DISPLAYTEXT .142 ; More... | |
1106 DISPLAYTEXT .11 ; Exit | |
1107 return | |
1108 | |
681 | 1109 DISP_ccr_setup_menu_mask: |
1110 call DISP_topline_box | |
639 | 1111 WIN_INVERT .1 ; Init new Wordprocessor |
1112 DISPLAYTEXT .111 ; CCR Setup Menu | |
1113 WIN_INVERT .0 ; Init new Wordprocessor | |
1114 DISPLAYTEXT .229 ; Diluent Setup | |
1115 DISPLAYTEXT .230 ; Setpoint Setup | |
1116 DISPLAYTEXT .11 ; Exit | |
1117 return | |
1118 | |
1119 | |
681 | 1120 DISP_more_setup_menu_mask: |
1121 call DISP_topline_box | |
0 | 1122 WIN_INVERT .1 ; Init new Wordprocessor |
1123 DISPLAYTEXTH .258 ; Setup Menu 2: | |
1124 WIN_INVERT .0 ; Init new Wordprocessor | |
1125 DISPLAYTEXTH .257 ; Date format: | |
1126 DISPLAYTEXT .129 ; Debug: | |
12 | 1127 DISPLAYTEXT .187 ; Show License |
574 | 1128 DISPLAYTEXTH .276 ; Salinity: |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
498
diff
changeset
|
1129 DISPLAYTEXTH .280 ; Brightness: |
0 | 1130 DISPLAYTEXT .11 ; Exit |
1131 return | |
1132 | |
681 | 1133 DISP_more_menu_mask: |
1134 call DISP_topline_box | |
0 | 1135 WIN_INVERT .1 ; Init new Wordprocessor |
1136 DISPLAYTEXT .144 ; Menu 2: | |
1137 WIN_INVERT .0 ; Init new Wordprocessor | |
1138 DISPLAYTEXT .8 ; Set Time | |
1139 DISPLAYTEXT .110 ; Const. ppO2 Setup | |
1140 DISPLAYTEXT .113 ; Battery Info | |
1141 DISPLAYTEXT .247 ; Simulator | |
125 | 1142 DISPLAYTEXTH .287 ; Altimeter |
0 | 1143 DISPLAYTEXT .11 ; Exit |
1144 return | |
1145 | |
681 | 1146 DISP_reset_menu_mask: |
1147 call DISP_topline_box | |
0 | 1148 WIN_INVERT .1 ; Init new Wordprocessor |
1149 DISPLAYTEXT .28 ; Reset Menu | |
1150 WIN_INVERT .0 ; Init new Wordprocessor | |
1151 DISPLAYTEXT .21 ; Cancel Reset | |
1152 DISPLAYTEXT .245 ; Reset CF,Gases & Deco | |
1153 DISPLAYTEXTH .284 ; Reset Logbook | |
1154 DISPLAYTEXTH .285 ; Reboot OSTC | |
1155 DISPLAYTEXTH .286 ; Reset Decodata | |
1156 DISPLAYTEXT .11 ; Exit | |
1157 return | |
1158 | |
681 | 1159 DISP_simulator_mask: |
1160 call DISP_topline_box | |
0 | 1161 WIN_INVERT .1 ; Init new Wordprocessor |
1162 DISPLAYTEXT .248 ; OSTC Simulator | |
369 | 1163 WIN_INVERT .0 ; Init new Wordprocessor |
370 | 1164 DISPLAYTEXTH .307 ; Interval: |
369 | 1165 DISPLAYTEXT .249 ; Start Dive |
1166 DISPLAYTEXTH .277 ; Bottom Time: | |
1167 DISPLAYTEXTH .278 ; Max. Depth: | |
1168 DISPLAYTEXTH .279 ; Calculate Deco | |
1169 DISPLAYTEXT .11 ; Exit | |
0 | 1170 return |
1171 | |
681 | 1172 DISP_temp_surfmode: |
0 | 1173 ostc_debug 'e' |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1174 SAFE_2BYTE_COPY temperature, last_temperature |
0 | 1175 WIN_TOP .100 |
56 | 1176 WIN_LEFT .1 |
0 | 1177 WIN_FONT FT_SMALL |
340
ecbbbd423e86
BUGFIX save negativ temperatures in logbook (bbbug #6)
JeanDo
parents:
339
diff
changeset
|
1178 WIN_INVERT .0 ; Init new Wordprocessor |
681 | 1179 call DISP_standard_color |
3 | 1180 |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1181 movff last_temperature+1,hi |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1182 movff last_temperature+0,lo |
0 | 1183 lfsr FSR2,letter |
681 | 1184 call DISP_convert_signed_temperature ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
0 | 1185 movlw d'3' |
1186 movwf ignore_digits | |
1187 bsf leftbind ; left orientated output | |
1188 output_16dp d'2' | |
1189 bcf leftbind | |
123 | 1190 STRCAT_PRINT "°C " |
0 | 1191 return |
1192 | |
681 | 1193 DISP_temp_divemode: |
0 | 1194 ostc_debug 'u' ; Sends debug-information to screen if debugmode active |
1195 | |
1196 ; temperature | |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1197 SAFE_2BYTE_COPY temperature, last_temperature |
0 | 1198 |
1199 WIN_TOP .216 | |
75 | 1200 WIN_LEFT .50 |
0 | 1201 WIN_FONT FT_SMALL |
1202 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1203 call DISP_standard_color |
3 | 1204 |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1205 movff last_temperature+1,hi |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1206 movff last_temperature+0,lo |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1207 |
0 | 1208 lfsr FSR2,letter |
681 | 1209 call DISP_convert_signed_temperature ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
0 | 1210 movlw d'3' |
1211 movwf ignore_digits | |
1212 bsf leftbind ; left orientated output | |
1213 output_16dp d'2' | |
1214 bcf leftbind | |
135
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1215 STRCAT "° " |
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1216 clrf WREG ; Allow up to 5 chars to avoid |
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1217 movff WREG,letter+5 ; collision with sat graphs |
5c8569f95d7e
temperature collision with the tissue graph
heinrichsweikamp
parents:
133
diff
changeset
|
1218 call word_processor |
0 | 1219 return |
1220 | |
681 | 1221 DISP_show_ppO2: ; Show ppO2 (ppO2 stored in xC) |
0 | 1222 ostc_debug 't' ; Sends debug-information to screen if debugmode active |
462 | 1223 WIN_TOP .117 |
0 | 1224 WIN_LEFT .0 |
1225 WIN_FONT FT_SMALL | |
681 | 1226 DISP_color_code warn_ppo2 ; Color-code output (ppO2 stored in xC) |
446 | 1227 STRCPY TXT_PPO2_5 |
74 | 1228 |
1229 ; Check very high ppO2 manually | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
1230 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? |
681 | 1231 bra DISP_show_ppO2_3 ; Yes, display fixed Value! |
74 | 1232 |
0 | 1233 movff xC+0,lo |
1234 movff xC+1,hi | |
1235 bsf ignore_digit4 | |
1236 output_16dp d'1' | |
1237 bcf ignore_digit4 | |
681 | 1238 DISP_show_ppO2_2: |
123 | 1239 STRCAT_PRINT " " |
681 | 1240 call DISP_standard_color |
0 | 1241 return |
1242 | |
681 | 1243 DISP_show_ppO2_3: |
123 | 1244 STRCAT ">6.6" |
681 | 1245 bra DISP_show_ppO2_2 |
1246 | |
1247 DISP_show_ppO2_clear: ; Clear ppO2 | |
0 | 1248 movlw d'10' |
1249 movwf temp1 | |
462 | 1250 WIN_TOP .117 |
0 | 1251 WIN_LEFT .0 |
681 | 1252 call DISP_display_clear_common_y1 |
0 | 1253 return |
1254 | |
681 | 1255 DISP_active_gas_clear: ; clears active gas! |
0 | 1256 WIN_TOP .192 |
75 | 1257 WIN_LEFT .50 |
0 | 1258 movlw d'5' |
1259 movwf temp1 | |
681 | 1260 bra DISP_display_clear_common_y1; also returns! |
1261 | |
1262 DISP_active_gas_divemode: ; Displays current gas (e.g. 40/20) if a) He>0 or b) O2>Custom9 | |
0 | 1263 btfsc FLAG_apnoe_mode ; Ignore in Apnoe mode |
1264 return | |
1265 | |
25 | 1266 WIN_INVERT .0 ; Init new Wordprocessor |
681 | 1267 call DISP_active_gas_divemode_show ; Show gas (Non-Inverted in all cases) |
25 | 1268 |
1269 btfss better_gas_available ;=1: A better gas is available and a gas change is advised in divemode | |
1270 return ; Done. | |
1271 | |
1272 ; Check if Gas Output should blink when a better gas is available... | |
1273 GETCUSTOM8 d'42' ; =1 if gas should blink | |
1274 movwf lo | |
1275 movlw d'1' | |
1276 cpfseq lo ; =1? | |
1277 return ; No, Done. | |
1278 | |
1279 btg blinking_better_gas ; Toggle blink bit... | |
1280 btfss blinking_better_gas ; blink now? | |
1281 return ; No, Done. | |
403 | 1282 movlw color_yellow ; Blink in yellow |
681 | 1283 call DISP_set_color |
25 | 1284 WIN_INVERT .1 ; Init new Wordprocessor |
681 | 1285 call DISP_active_gas_divemode_show1 ; Show gas (Non-Inverted in all cases) |
25 | 1286 WIN_INVERT .0 ; Init new Wordprocessor |
681 | 1287 call DISP_standard_color |
25 | 1288 return ; Done. |
1289 | |
681 | 1290 DISP_active_gas_divemode_show: |
1291 call DISP_standard_color | |
1292 DISP_active_gas_divemode_show1: | |
0 | 1293 ostc_debug 's' ; Sends debug-information to screen if debugmode active |
1294 ; gas | |
1295 WIN_TOP .192 | |
75 | 1296 WIN_LEFT .50 |
0 | 1297 WIN_FONT FT_SMALL |
3 | 1298 |
0 | 1299 movlw d'100' ; 100% in the tank |
1300 movff char_I_N2_ratio,lo ; minus N2 | |
1301 bsf STATUS,C ; set borrow bit | |
1302 subfwb lo,W | |
1303 movff char_I_He_ratio,lo ; minus He | |
1304 bsf STATUS,C ; set borrow bit | |
1305 subfwb lo,F ; =% O2 | |
1306 GETCUSTOM8 d'9' ; get oxygen treshold | |
1307 movff char_I_He_ratio,hi ; He ratio | |
1308 cpfsgt lo | |
681 | 1309 bra DISP_active_gas_divemode2 ; Check He |
1310 bra DISP_active_gas_divemode3 ; Skip He check, display gas | |
0 | 1311 |
681 | 1312 DISP_active_gas_divemode2: |
0 | 1313 tstfsz hi ; He = 0 % |
681 | 1314 bra DISP_active_gas_divemode3 ; display gas |
1315 | |
1316 call DISP_warnings_color ; O2 below treshold, He=0 : Bad stuff ! | |
1317 bra DISP_active_gas_divemode4 | |
1318 | |
1319 DISP_active_gas_divemode3: | |
0 | 1320 movlw d'21' |
1321 cpfseq lo ; Air? (O2=21%) | |
681 | 1322 bra DISP_active_gas_divemode4 ; No! |
0 | 1323 tstfsz hi ; Air? (He=0%) |
681 | 1324 bra DISP_active_gas_divemode4 ; No! |
0 | 1325 |
1326 ; Yes, display "Air" instead of 21/0 | |
1327 lfsr FSR2,letter | |
136 | 1328 OUTPUTTEXTH d'264' ;"Air " |
143 | 1329 PUTC ' ' |
1330 clrf WREG ; Allow up to 5 chars to avoid | |
1331 movff WREG,letter+5 ; collision with sat graphs | |
1332 bcf leftbind | |
1333 call word_processor | |
681 | 1334 DISP_active_better_gas: |
152 | 1335 WIN_TOP .192 |
157 | 1336 WIN_LEFT .43 |
152 | 1337 WIN_FONT FT_SMALL |
1338 lfsr FSR2,letter | |
143 | 1339 movlw ' ' |
8 | 1340 btfsc better_gas_available ;=1: A better gas is available and a gas change is advised in divemode |
1341 movlw '*' | |
1342 movwf POSTINC2 | |
0 | 1343 call word_processor |
25 | 1344 return |
0 | 1345 |
681 | 1346 DISP_active_gas_divemode4: |
0 | 1347 lfsr FSR2,letter |
1348 bsf leftbind ; left orientated output | |
1349 output_8 ; O2 ratio is still in "lo" | |
123 | 1350 PUTC '/' |
0 | 1351 movff char_I_He_ratio,lo ; copy He ratio into lo |
1352 output_8 | |
143 | 1353 PUTC ' ' |
1354 clrf WREG ; Allow up to 5 chars to avoid | |
1355 movff WREG,letter+5 ; collision with sat graphs | |
1356 bcf leftbind | |
1357 call word_processor | |
681 | 1358 rcall DISP_active_better_gas ; show *, if required |
1359 call DISP_standard_color ; Back to normal (if O2<21 and He=0) | |
143 | 1360 return |
1361 | |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1362 ;----------------------------------------------------------------------------- |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1363 ; 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
|
1364 ; 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
|
1365 ; Trashes: lo |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1366 ; New v1.44se |
681 | 1367 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
|
1368 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
|
1369 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
|
1370 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1371 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
|
1372 movf EEDATA,W |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1373 subwf lo,W ; Compare with current |
681 | 1374 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
|
1375 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1376 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
|
1377 addwf lo,W |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1378 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
|
1379 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
|
1380 clrf WREG |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1381 cpfsgt EEDATA ; is depth > 0 ? |
681 | 1382 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
|
1383 |
287 | 1384 clrf EEADRH ; Lower page of EEPROM. |
1385 read_int_eeprom d'27' ; read flag register | |
681 | 1386 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
|
1387 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
|
1388 decfsz lo,F ; max. 5 times... |
681 | 1389 bra DISP_grey_inactive_gas1 |
1390 bnc DISP_grey_gas ; test carry | |
1391 | |
1392 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
|
1393 GETCUSTOM8 d'35' ;movlw color_white |
681 | 1394 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
|
1395 ; return |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1396 |
681 | 1397 DISP_grey_gas: |
1398 DISP_grey: | |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
1399 GETCUSTOM8 d'64' ;movlw color_grey |
681 | 1400 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
|
1401 ; return |
121
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1402 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1403 ;----------------------------------------------------------------------------- |
123 | 1404 ; Display Pre-Dive Screen |
1405 | |
681 | 1406 DISP_pre_dive_screen: |
13 | 1407 ; List active gases/Setpoints |
1408 | |
1409 btfsc FLAG_const_ppO2_mode ; in ppO2 mode? | |
681 | 1410 bra DISP_pre_dive_screen3 ; Yes, display SetPoint/Sensor result list |
1411 | |
1412 DISP_pre_dive_screen2: | |
13 | 1413 ostc_debug 'm' ; Sends debug-information to screen if debugmode active |
1414 | |
1415 WIN_LEFT .90 | |
1416 WIN_FONT FT_SMALL | |
1417 bsf leftbind | |
1418 | |
1419 movlw d'2' | |
1420 movwf wait_temp ; here: stores eeprom address for gas list | |
1421 movlw d'0' | |
1422 movwf waitms_temp ; here: stores row for gas list | |
1423 clrf hi ; here: Gas counter | |
1424 | |
681 | 1425 DISP_pre_dive_screen2_loop: |
13 | 1426 incf hi,F ; Increase Gas |
1427 movlw d'4' | |
1428 addwf wait_temp,F ; Increase eeprom address for gas list | |
1429 | |
446 | 1430 STRCPY TXT_GAS1 |
13 | 1431 movff hi,lo ; copy gas number |
1432 output_8 ; display gas number | |
123 | 1433 STRCAT ": " |
13 | 1434 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
1435 call read_eeprom ; get byte (stored in EEDATA) | |
1436 movff EEDATA,lo ; copy to lo | |
1437 output_8 ; outputs into Postinc2! | |
123 | 1438 PUTC '/' |
13 | 1439 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
1440 call read_eeprom ; get byte (stored in EEDATA) | |
1441 movff EEDATA,lo ; copy to lo | |
1442 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
|
1443 |
e0f29e20bd24
Mix-type icons: check apnoe/gauge/CF#41, depth=0, and first gas. Changed colors.
JeanDo
parents:
119
diff
changeset
|
1444 decf hi,W ; Gas # in 0..4 |
681 | 1445 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
|
1446 |
13 | 1447 read_int_eeprom d'33' ; Read start gas (1-5) |
1448 movf EEDATA,W | |
1449 cpfseq hi ; Current Gas the active gas? | |
681 | 1450 bra DISP_pre_dive_screen2a |
1451 bra DISP_pre_dive_screen2b | |
1452 | |
1453 DISP_pre_dive_screen2a: | |
13 | 1454 movlw d'25' |
1455 addwf waitms_temp,F ; Increase row | |
1456 WIN_LEFT .90 | |
1457 movff waitms_temp,win_top ; Set Row | |
1458 call word_processor ; No, display gas | |
1459 | |
681 | 1460 DISP_pre_dive_screen2b: |
13 | 1461 movlw d'5' ; list all four (remaining) gases |
1462 cpfseq hi ; All gases shown? | |
681 | 1463 bra DISP_pre_dive_screen2_loop ; No |
13 | 1464 |
1465 return ; No, return (OC mode) | |
1466 | |
681 | 1467 DISP_pre_dive_screen3: |
13 | 1468 WIN_LEFT .90 |
1469 WIN_FONT FT_SMALL | |
1470 bsf leftbind | |
681 | 1471 call DISP_standard_color |
13 | 1472 |
1473 ; list three SP in Gaslist | |
1474 movlw d'35' ; 36 = current SP position in EEPROM | |
1475 movwf wait_temp ; here: stores eeprom address for gas list | |
1476 movlw d'0' | |
1477 movwf waitms_temp ; here: stores row for gas list | |
164 | 1478 clrf apnoe_mins ; here: SP counter |
13 | 1479 |
681 | 1480 DISP_pre_dive_screen3_loop: |
13 | 1481 incf wait_temp,F ; EEPROM address |
164 | 1482 incf apnoe_mins,F ; Increase SP |
13 | 1483 |
1484 movlw d'25' | |
1485 addwf waitms_temp,F ; Increase row | |
1486 WIN_LEFT .90 | |
1487 movff waitms_temp,win_top ; Set Row | |
1488 | |
446 | 1489 STRCPY TXT_SP2 |
164 | 1490 movff apnoe_mins,lo ; copy gas number |
1491 output_8 ; display gas number | |
123 | 1492 STRCAT ": " |
164 | 1493 movff wait_temp, EEADR ; SP #hi position |
1494 call read_eeprom ; get byte (stored in EEDATA) | |
1495 movff EEDATA,lo ; copy to lo | |
13 | 1496 clrf hi |
164 | 1497 output_16dp d'3' ; outputs into Postinc2! |
13 | 1498 call word_processor |
1499 | |
164 | 1500 movlw d'3' ; list all three SP |
1501 cpfseq apnoe_mins ; All gases shown? | |
681 | 1502 bra DISP_pre_dive_screen3_loop ;no |
13 | 1503 |
655
8c01edcf57fc
Allow any diluent to be "First gas" in CCR modes
heinrichsweikamp
parents:
654
diff
changeset
|
1504 |
8c01edcf57fc
Allow any diluent to be "First gas" in CCR modes
heinrichsweikamp
parents:
654
diff
changeset
|
1505 call get_first_diluent ; Read first diluent into lo(O2) and hi(He) |
19 | 1506 WIN_LEFT .90 |
1507 WIN_TOP .100 | |
446 | 1508 STRCPY TXT_DIL4 |
19 | 1509 output_8 ; O2 Ratio |
123 | 1510 PUTC '/' |
19 | 1511 movff hi,lo |
1512 output_8 ; He Ratio | |
1513 call word_processor | |
1514 | |
13 | 1515 bcf leftbind |
1516 return ; Return (CC Mode) | |
1517 | |
681 | 1518 DISP_active_gas_surfmode: ; Displays start gas/SP 1 |
0 | 1519 ostc_debug 'q' ; Sends debug-information to screen if debugmode active |
1520 | |
1521 btfsc FLAG_apnoe_mode ; In Apnoe mode? | |
1522 return ; Yes, return | |
1523 | |
1524 btfsc gauge_mode ; In Gauge mode? | |
1525 return ; Yes, return | |
1526 | |
1527 btfss FLAG_const_ppO2_mode ; are we in const. ppO2 mode? | |
681 | 1528 bra DISP_active_gas_surfmode2 ; No, display gases |
0 | 1529 |
1530 ; In CC Mode | |
1531 WIN_TOP .135 | |
1532 WIN_LEFT .90 | |
1533 WIN_FONT FT_SMALL | |
1534 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1535 call DISP_standard_color |
3 | 1536 |
0 | 1537 lfsr FSR2,letter |
1538 read_int_eeprom d'36' | |
1539 movff EEDATA,lo ; copy to lo | |
1540 clrf hi | |
1541 output_16dp d'3' ; outputs into Postinc2! | |
1542 bcf leftbind | |
123 | 1543 |
446 | 1544 STRCAT_PRINT TXT_BAR3 |
607 | 1545 return ; Done. |
0 | 1546 |
681 | 1547 DISP_active_gas_surfmode2: |
692 | 1548 clrf EEADRH ; Select EEPROM lower page. |
1549 read_int_eeprom d'33' ; Get First gas (1-5) | |
1550 movff EEDATA,hi ; into register hi | |
1551 | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1552 WIN_TOP .175 |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1553 WIN_FONT FT_SMALL |
692 | 1554 WIN_INVERT .0 ; Init new Wordprocessor |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1555 movlw .0 |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1556 call DISP_grey_inactive_gas ; Sets Greyvalue for inactive gases |
690 | 1557 WIN_LEFT .115 |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1558 STRCPY_PRINT "1" |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1559 movlw .1 |
692 | 1560 cpfseq hi ; Is "first gas"? |
1561 bra DISP_active_gas_surfmode3 ; No, skip box | |
1562 WIN_FRAME_STD .174, .196, .114, .122 ;top, bottom, left, right | |
1563 DISP_active_gas_surfmode3: | |
1564 movlw .1 | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1565 call DISP_grey_inactive_gas ; Sets Greyvalue for inactive gases |
690 | 1566 WIN_LEFT .124 |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1567 STRCPY_PRINT "2" |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1568 movlw .2 |
692 | 1569 cpfseq hi ; Is "first gas"? |
1570 bra DISP_active_gas_surfmode4 ; No, skip box | |
1571 WIN_FRAME_STD .174, .196, .123, .131 ;top, bottom, left, right | |
1572 DISP_active_gas_surfmode4: | |
1573 movlw .2 | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1574 call DISP_grey_inactive_gas ; Sets Greyvalue for inactive gases |
690 | 1575 WIN_LEFT .133 |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1576 STRCPY_PRINT "3" |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1577 movlw .3 |
692 | 1578 cpfseq hi ; Is "first gas"? |
1579 bra DISP_active_gas_surfmode5 ; No, skip box | |
1580 WIN_FRAME_STD .174, .196, .132, .140 ;top, bottom, left, right | |
1581 DISP_active_gas_surfmode5: | |
1582 movlw .3 | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1583 call DISP_grey_inactive_gas ; Sets Greyvalue for inactive gases |
690 | 1584 WIN_LEFT .142 |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1585 STRCPY_PRINT "4" |
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1586 movlw .4 |
692 | 1587 cpfseq hi ; Is "first gas"? |
1588 bra DISP_active_gas_surfmode6 ; No, skip box | |
1589 WIN_FRAME_STD .174, .196, .141, .149 ;top, bottom, left, right | |
1590 DISP_active_gas_surfmode6: | |
1591 movlw .4 | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1592 call DISP_grey_inactive_gas ; Sets Greyvalue for inactive gases |
690 | 1593 WIN_LEFT .151 |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1594 STRCPY_PRINT "5" |
692 | 1595 movlw .5 |
1596 cpfseq hi ; Is "first gas"? | |
1597 bra DISP_active_gas_surfmode7 ; No, skip box | |
1598 WIN_FRAME_STD .174, .196, .150, .158 ;top, bottom, left, right | |
1599 DISP_active_gas_surfmode7: | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
1600 |
0 | 1601 WIN_TOP .130 |
1602 WIN_LEFT .100 | |
1603 WIN_FONT FT_MEDIUM | |
681 | 1604 call DISP_standard_color |
3 | 1605 |
0 | 1606 read_int_eeprom d'33' ; Read byte (stored in EEDATA) |
1607 movff EEDATA,active_gas ; Read start gas (1-5) | |
1608 | |
1609 decf active_gas,W ; Gas 0-4 | |
1610 mullw d'4' | |
1611 movf PRODL,W | |
1612 addlw d'7' ; = address for He ratio | |
1613 movwf EEADR | |
1614 call read_eeprom ; Read He ratio | |
1615 movff EEDATA,char_I_He_ratio ; And copy into hold register | |
1616 | |
1617 decf active_gas,W ; Gas 0-4 | |
1618 mullw d'4' | |
1619 movf PRODL,W | |
1620 addlw d'6' ; = address for O2 ratio | |
1621 movwf EEADR | |
1622 call read_eeprom ; Read O2 ratio | |
1623 movff EEDATA, char_I_O2_ratio ; O2 ratio | |
1624 movff char_I_He_ratio, wait_temp ; copy into bank1 register | |
1625 bsf STATUS,C ; Borrow bit | |
1626 movlw d'100' ; 100% | |
1627 subfwb wait_temp,W ; minus He | |
1628 bsf STATUS,C ; Borrow bit | |
1629 subfwb EEDATA,F ; minus O2 | |
1630 movff EEDATA, char_I_N2_ratio ; = N2! | |
1631 | |
1632 movlw d'100' ; 100% in the tank | |
1633 movff char_I_N2_ratio,lo ; minus N2 | |
1634 bsf STATUS,C ; set borrow bit | |
1635 subfwb lo,W | |
1636 movff char_I_He_ratio,lo ; minus He | |
1637 bsf STATUS,C ; set borrow bit | |
1638 subfwb lo,F ; =% O2 | |
1639 | |
1640 movff char_I_He_ratio,hi ; Copy into Bank1 register | |
1641 | |
1642 movlw d'21' | |
607 | 1643 cpfseq lo ; Air? (O2=21%) |
692 | 1644 bra DISP_active_gas_surfmode8 ; No! |
0 | 1645 tstfsz hi ; Air? (He=0%) |
692 | 1646 bra DISP_active_gas_surfmode8 ; No! |
0 | 1647 |
1648 ; Yes, display "Air" instead of 21/0 | |
1649 DISPLAYTEXTH d'265' ;"Air ", y-scale=2 | |
607 | 1650 return ; Done. |
0 | 1651 |
692 | 1652 DISP_active_gas_surfmode8: |
0 | 1653 lfsr FSR2,letter |
1654 bsf leftbind ; left orientated output | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
77
diff
changeset
|
1655 output_99 ; O2 ratio is still in "lo" |
607 | 1656 movff char_I_He_ratio,lo ; copy He ratio into lo |
1657 tstfsz lo ; He>0? | |
692 | 1658 bra DISP_active_gas_surfmode9 ; Yes. |
1659 bra DISP_active_gas_surfmode10 ; No, skip He | |
1660 DISP_active_gas_surfmode9: | |
123 | 1661 PUTC '/' |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
77
diff
changeset
|
1662 output_99 |
692 | 1663 DISP_active_gas_surfmode10: |
0 | 1664 bcf leftbind |
1665 call word_processor | |
607 | 1666 |
681 | 1667 rcall DISP_mainscreen_show_nx |
607 | 1668 tstfsz lo ; He>0? |
681 | 1669 rcall DISP_mainscreen_show_tx ; Yes |
607 | 1670 return ; Done. |
1671 | |
681 | 1672 DISP_mainscreen_show_tx: |
607 | 1673 WIN_LEFT .85 |
1674 WIN_FONT FT_SMALL | |
1675 WIN_INVERT .0 ; Init new Wordprocessor | |
1676 WIN_TOP .127 | |
1677 | |
1678 STRCPY_PRINT TXT_TX1 | |
1679 WIN_TOP .148 | |
1680 STRCPY_PRINT TXT_TX2 | |
0 | 1681 return |
681 | 1682 DISP_mainscreen_show_nx: |
607 | 1683 WIN_LEFT .85 |
1684 WIN_TOP .127 | |
1685 WIN_FONT FT_SMALL | |
1686 WIN_INVERT .0 ; Init new Wordprocessor | |
1687 | |
1688 STRCPY_PRINT TXT_NX1 | |
1689 WIN_TOP .148 | |
1690 STRCPY_PRINT TXT_NX2 | |
1691 return | |
1692 | |
0 | 1693 |
681 | 1694 DISP_confirmbox: |
204 | 1695 WIN_BOX_BLACK .68, .146, .34, .101 ;top, bottom, left, right |
123 | 1696 WIN_FRAME_STD .70, .144, .35, .100 |
1697 | |
0 | 1698 DISPLAYTEXT .143 ; Confirm: |
1699 DISPLAYTEXT .145 ; Cancel | |
1700 DISPLAYTEXT .146 ; OK! | |
1701 | |
1702 movlw d'1' | |
1703 movwf menupos | |
1704 | |
681 | 1705 DISP_confirmbox2: |
204 | 1706 WIN_BOX_BLACK .96, .143, .39, .51 ;top, bottom, left, right |
0 | 1707 |
1708 movff menupos,temp1 | |
1709 movlw d'96' | |
1710 dcfsnz temp1,F | |
1711 movlw d'96' | |
1712 dcfsnz temp1,F | |
1713 movlw d'120' | |
1714 movff WREG,win_top | |
1715 WIN_LEFT .39 | |
1716 WIN_FONT FT_SMALL | |
1717 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1718 call DISP_standard_color |
3 | 1719 |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
1720 STRCPY_PRINT "\xB7" ; Cursor |
0 | 1721 |
1722 bcf sleepmode ; clear some flags | |
1723 bcf menubit2 | |
1724 bcf menubit3 | |
1725 bcf switch_right | |
1726 bcf switch_left | |
1727 clrf timeout_counter2 | |
1728 WAITMS d'100' | |
1729 | |
681 | 1730 DISP_confirmbox_loop: |
0 | 1731 call check_switches_logbook |
1732 | |
1733 btfsc menubit3 ; SET/MENU? | |
681 | 1734 bra DISP_confirmbox_move_cursor; Move Cursor |
0 | 1735 btfsc menubit2 ; ENTER? |
681 | 1736 bra DISP_confirmbox_menu_do ; Do task |
0 | 1737 |
1738 btfsc onesecupdate | |
1739 call timeout_surfmode ; timeout | |
1740 | |
1741 btfsc onesecupdate | |
1742 call set_dive_modes ; check, if divemode must be entered | |
1743 bcf onesecupdate ; one second update | |
1744 | |
1745 btfsc sleepmode ; Timeout? | |
681 | 1746 bra DISP_confirmbox_cancel ; back with cancel |
0 | 1747 btfsc divemode |
681 | 1748 bra DISP_confirmbox_cancel ; back with cancel |
1749 | |
1750 bra DISP_confirmbox_loop ; wait for something to do | |
1751 | |
1752 DISP_confirmbox_cancel: | |
0 | 1753 retlw .0 |
681 | 1754 DISP_confirmbox_ok: |
0 | 1755 retlw .1 |
1756 | |
681 | 1757 DISP_confirmbox_menu_do: |
0 | 1758 dcfsnz menupos,F |
681 | 1759 bra DISP_confirmbox_cancel |
0 | 1760 dcfsnz menupos,F |
681 | 1761 bra DISP_confirmbox_ok |
1762 bra DISP_confirmbox_cancel | |
1763 | |
1764 DISP_confirmbox_move_cursor: | |
0 | 1765 incf menupos,F |
1766 movlw d'3' ; number of menu options+1 | |
1767 cpfseq menupos ; =limit? | |
681 | 1768 bra DISP_confirmbox_move_cursor2 ; No! |
0 | 1769 movlw d'1' ; Yes, reset to position 1! |
1770 movwf menupos | |
681 | 1771 DISP_confirmbox_move_cursor2: |
1772 bra DISP_confirmbox2 ; Return to Profile Menu, also updates cursor | |
1773 | |
1774 | |
1775 DISP_depth: | |
529 | 1776 ; 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
|
1777 SAFE_2BYTE_COPY rel_pressure, lo |
517 | 1778 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
0 | 1779 |
1780 movlw .039 | |
1781 cpfslt hi | |
517 | 1782 bra depth_greater_99_84mtr |
1783 | |
1784 btfsc depth_greater_100m ; Was depth>100m during last call | |
681 | 1785 call DISP_clear_depth ; Yes, clear depth area |
517 | 1786 bcf depth_greater_100m ; Do this once only... |
0 | 1787 |
1788 lfsr FSR2,letter | |
1789 | |
1790 movlw HIGH d'1000' | |
1791 movwf sub_a+1 | |
1792 movlw LOW d'1000' | |
1793 movwf sub_a+0 | |
1794 movff hi,sub_b+1 | |
1795 movff lo,sub_b+0 | |
1796 incf sub_b+0,F | |
1797 movlw d'0' | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
1798 addwfc sub_b+1,F ; Add 1mbar offset |
0 | 1799 call sub16 ; sub_c = sub_a - sub_b |
517 | 1800 btfss neg_flag ; Depth lower then 10m? |
1801 rcall depth_less_10mtr ; Yes, add extra space | |
0 | 1802 |
1803 WIN_TOP .24 | |
1804 WIN_LEFT .0 | |
1805 WIN_FONT FT_LARGE | |
1806 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1807 DISP_color_code warn_depth ; Color-code the output |
0 | 1808 |
1809 movlw HIGH d'99' | |
1810 movwf sub_a+1 | |
1811 movlw LOW d'99' | |
1812 movwf sub_a+0 | |
1813 movff hi,sub_b+1 | |
1814 movff lo,sub_b+0 | |
1815 call sub16 ; sub_c = sub_a - sub_b | |
517 | 1816 btfss neg_flag ; Depth lower then 1m? |
681 | 1817 bra DISP_depth2 ; Yes, display manual Zero |
0 | 1818 |
1819 bsf leftbind | |
1820 bsf ignore_digit4 | |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
1821 output_16 ; Full meters in Big font |
0 | 1822 bcf leftbind |
681 | 1823 bra DISP_depth3 |
1824 | |
1825 DISP_depth2: | |
123 | 1826 PUTC '0' |
1827 | |
681 | 1828 DISP_depth3: |
0 | 1829 call word_processor |
1830 bcf ignore_digit4 | |
1831 | |
1832 WIN_FONT FT_MEDIUM | |
1833 WIN_TOP .50 | |
1834 WIN_LEFT .40 | |
681 | 1835 DISP_color_code warn_depth ; Color-code the output |
0 | 1836 |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
1837 SAFE_2BYTE_COPY rel_pressure, lo |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
1838 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
123 | 1839 |
1840 STRCPY "." | |
0 | 1841 |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
1842 movlw HIGH d'20' ; Display 0.0m if lower then 20cm |
0 | 1843 movwf sub_a+1 |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
1844 movlw LOW d'20' |
0 | 1845 movwf sub_a+0 |
1846 movff hi,sub_b+1 | |
1847 movff lo,sub_b+0 | |
1848 call sub16 ; sub_c = sub_a - sub_b | |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
1849 btfss neg_flag ; Depth lower then 0.3m? |
681 | 1850 bra DISP_depth4 ; Yes, display manual Zero |
0 | 1851 |
1852 movlw d'4' | |
1853 movwf ignore_digits | |
1854 bsf ignore_digit5 | |
1855 output_16dp d'0' | |
681 | 1856 bra DISP_depth5 |
1857 | |
1858 DISP_depth4: | |
123 | 1859 PUTC '0' |
0 | 1860 |
681 | 1861 DISP_depth5: |
0 | 1862 call word_processor ; decimeters in medium font |
1863 bcf ignore_digit5 | |
1864 WIN_FONT FT_SMALL | |
1865 return | |
1866 | |
517 | 1867 depth_greater_99_84mtr: ; Display only in full meters |
1868 btfss depth_greater_100m ; Is depth>100m already? | |
681 | 1869 call DISP_clear_depth ; No, clear depth area and set flag |
0 | 1870 ; Depth is already in hi:lo |
517 | 1871 ; Show depth in Full meters |
0 | 1872 ; That means ignore figure 4 and 5 |
1873 lfsr FSR2,letter | |
1874 WIN_TOP .24 | |
1875 WIN_LEFT .0 | |
1876 WIN_FONT FT_LARGE | |
1877 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1878 DISP_color_code warn_depth ; Color-code the output |
3 | 1879 |
0 | 1880 bsf ignore_digit4 |
1881 bsf leftbind | |
1882 output_16 | |
1883 bcf leftbind | |
1884 call word_processor | |
1885 bcf ignore_digit4 | |
1886 WIN_FONT FT_SMALL | |
1887 return | |
1888 | |
517 | 1889 depth_less_10mtr: |
123 | 1890 PUTC ' ' |
0 | 1891 return |
1892 | |
681 | 1893 DISP_clear_depth ; No, clear depth area and set flag |
204 | 1894 WIN_BOX_BLACK .24, .90, .0, .90 ;top, bottom, left, right |
517 | 1895 bsf depth_greater_100m ; Set Flag |
0 | 1896 return |
1897 | |
681 | 1898 DISP_desaturation_time: |
140 | 1899 movff int_O_desaturation_time+0,lo |
1900 movff int_O_desaturation_time+1,hi ; Copy | |
1901 tstfsz lo ; =0? | |
681 | 1902 bra DISP_desaturation_time2 ; No! |
140 | 1903 tstfsz hi ; =0? |
681 | 1904 bra DISP_desaturation_time2 ; No! |
140 | 1905 return ; Do not display Desat |
1906 | |
681 | 1907 DISP_desaturation_time2: |
0 | 1908 ostc_debug 'h' |
1909 WIN_TOP .150 | |
56 | 1910 WIN_LEFT .1 |
0 | 1911 WIN_FONT FT_SMALL |
1912 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1913 call DISP_standard_color |
3 | 1914 |
0 | 1915 lfsr FSR2,letter |
1916 OUTPUTTEXT d'14' ; Desat | |
123 | 1917 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
|
1918 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
|
1919 movff desaturation_time_buffer+1,hi |
254 | 1920 |
0 | 1921 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) |
1922 bsf leftbind | |
1923 movf lo,W | |
1924 movff hi,lo | |
1925 movwf hi ; exchange lo and hi... | |
1926 output_8 ; Hours | |
123 | 1927 PUTC ':' |
402 | 1928 movff hi,lo ; Minutes |
0 | 1929 output_99x |
1930 bcf leftbind | |
402 | 1931 PUTC ' ' |
1932 ; clrf WREG ; Allow up to 5 chars to avoid | |
1933 ; movff WREG,letter+6 ; collision with decotype letters | |
0 | 1934 call word_processor |
1935 return | |
1936 | |
681 | 1937 DISP_nofly_time: |
249 | 1938 movf nofly_time+0,W ; Is nofly null ? |
1939 iorwf nofly_time+1,W | |
681 | 1940 bnz DISP_nofly_time2 ; No... |
140 | 1941 return |
249 | 1942 |
681 | 1943 DISP_nofly_time2: |
0 | 1944 ostc_debug 'g' |
1945 WIN_TOP .125 | |
56 | 1946 WIN_LEFT .1 |
0 | 1947 WIN_FONT FT_SMALL |
1948 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 1949 call DISP_standard_color |
3 | 1950 |
0 | 1951 lfsr FSR2,letter |
1952 OUTPUTTEXT d'35' ; NoFly | |
123 | 1953 PUTC ' ' |
0 | 1954 movff nofly_time+0,lo ; divide by 60... |
1955 movff nofly_time+1,hi | |
249 | 1956 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) |
0 | 1957 bsf leftbind |
1958 movf lo,W | |
1959 movff hi,lo | |
519 | 1960 movwf hi ; exchange lo and hi... |
1961 output_8 ; Hours | |
123 | 1962 PUTC ':' |
0 | 1963 movff hi,lo ; Minutes |
1964 output_99x | |
1965 bcf leftbind | |
402 | 1966 PUTC ' ' |
1967 ; clrf WREG ; Allow up to 5 chars to avoid | |
1968 ; movff WREG,letter+6 ; collision with decotype letters | |
0 | 1969 call word_processor |
1970 return | |
1971 | |
1972 | |
1973 update_surf_press: | |
1974 btfsc premenu ; Do not update when "Menu?" is displayed! | |
1975 return | |
1976 | |
1977 ostc_debug 'b' ; Sends debug-information to screen if debugmode active | |
1978 WIN_TOP .25 | |
56 | 1979 WIN_LEFT .1 |
0 | 1980 WIN_FONT FT_SMALL |
1981 WIN_INVERT .0 ; Init new Wordprocessor | |
239 | 1982 |
410
c6f9eb123b85
remove of red ambient pressure (High altitude mode)
heinrichsweikamp
parents:
408
diff
changeset
|
1983 ; btfss high_altitude_mode ; In high altitude mode? |
681 | 1984 call DISP_standard_color ; No |
410
c6f9eb123b85
remove of red ambient pressure (High altitude mode)
heinrichsweikamp
parents:
408
diff
changeset
|
1985 ; btfsc high_altitude_mode ; In high altitude mode? |
681 | 1986 ; call DISP_warnings_color ; Yes, display ambient pressure in red |
239 | 1987 |
401
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
1988 SAFE_2BYTE_COPY amb_pressure, lo |
0 | 1989 lfsr FSR2,letter |
401
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
1990 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
1991 movff lo,sub_a+0 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
1992 movff hi,sub_a+1 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
1993 movff last_surfpressure_30min+0,sub_b+0 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
1994 movff last_surfpressure_30min+1,sub_b+1 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
1995 call sub16 ; sub_c = sub_a - sub_b |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
1996 btfsc neg_flag ; Pressure lower? |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
1997 rcall update_surf_press2 ; Yes, test threshold |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
1998 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
1999 tstfsz sub_c+1 ; >255mbar difference? |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2000 bra update_surf_press_common; Yes, display! |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2001 movlw d'5' |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2002 subwf sub_c+0,W |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2003 btfsc STATUS,C |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2004 bra update_surf_press_common; Yes, display! |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2005 ; PUTC '+' ; For debug only |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2006 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
|
2007 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2008 update_surf_press_common: |
0 | 2009 bsf leftbind |
2010 output_16 | |
2011 bcf leftbind | |
446 | 2012 STRCAT_PRINT TXT_MBAR5 |
681 | 2013 call DISP_standard_color ; Reset color |
0 | 2014 return |
2015 | |
401
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2016 update_surf_press2: |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2017 movff lo,sub_b+0 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2018 movff hi,sub_b+1 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2019 movff last_surfpressure_30min+0,sub_a+0 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2020 movff last_surfpressure_30min+1,sub_a+1 |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2021 call sub16 ; sub_c = sub_a - sub_b |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2022 ; PUTC '-' ; For debug only |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2023 return |
6ed12fad3b97
Ignore 5mbar pressure sensor noise in surface screen
heinrichsweikamp
parents:
400
diff
changeset
|
2024 |
0 | 2025 update_batt_voltage_divemode: |
681 | 2026 call DISP_warnings_color |
141 | 2027 DISPLAYTEXT d'246' ; LowBatt! |
681 | 2028 call DISP_standard_color |
141 | 2029 return |
0 | 2030 |
2031 update_batt_voltage: | |
2032 ostc_debug 'f' | |
2033 | |
2034 GETCUSTOM8 d'31' ; =1 if battery voltage should be visible | |
2035 movwf lo | |
2036 movlw d'1' | |
2037 cpfseq lo ; =1? | |
2038 bra update_batt_voltage2 ; No, show symbol | |
2039 | |
2040 WIN_TOP .175 | |
56 | 2041 WIN_LEFT .1 |
0 | 2042 WIN_FONT FT_SMALL |
2043 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 2044 call DISP_standard_color |
3 | 2045 |
0 | 2046 lfsr FSR2,letter |
2047 movff batt_voltage+0,lo | |
2048 movff batt_voltage+1,hi | |
2049 movlw d'1' | |
2050 movwf ignore_digits | |
2051 bsf ignore_digit5 ; do not display mV | |
2052 bsf leftbind | |
2053 output_16dp d'2' ; e.g. 3.45V | |
2054 bcf leftbind | |
446 | 2055 STRCAT_PRINT TXT_VOLT2 |
0 | 2056 return |
2057 | |
2058 update_batt_voltage2: | |
123 | 2059 WIN_FRAME_STD .174, .194, .1, .32 |
0 | 2060 |
25 | 2061 ; 4100-Vbatt |
2062 movlw LOW d'4100' | |
0 | 2063 movwf sub_a+0 |
25 | 2064 movlw HIGH d'4100' |
0 | 2065 movwf sub_a+1 |
2066 movff batt_voltage+0,sub_b+0 | |
2067 movff batt_voltage+1,sub_b+1 | |
2068 call sub16 ; sub_c = sub_a - sub_b | |
25 | 2069 ; Battery full (>4100mV? |
0 | 2070 btfsc neg_flag |
2071 bra update_batt_voltage2_full | |
2072 | |
25 | 2073 ; Vbatt-3500 |
2074 movlw LOW d'3500' | |
0 | 2075 movwf sub_b+0 |
25 | 2076 movlw HIGH d'3500' |
0 | 2077 movwf sub_b+1 |
2078 movff batt_voltage+0,sub_a+0 | |
2079 movff batt_voltage+1,sub_a+1 | |
2080 call sub16 ; sub_c = sub_a - sub_b | |
25 | 2081 ; Battery lower then 3500mV? |
0 | 2082 btfsc neg_flag |
2083 bra update_batt_voltage2_empty | |
2084 | |
25 | 2085 ; Battery is between 3500 and 4100mV |
0 | 2086 ; sub_c:2 is between 0 and 600 |
2087 movff sub_c+0,xA+0 | |
2088 movff sub_c+1,xA+1 | |
2089 movlw d'20' | |
2090 movwf xB+0 | |
2091 clrf xB+1 | |
2092 call div16x16 ;xA/xB=xC with xA as remainder | |
2093 ; xC is between 0 and 30 | |
2094 movff xC+0,wait_temp ;save value | |
56 | 2095 incf wait_temp,F ; +1 |
2096 | |
2097 movlw d'3' | |
0 | 2098 cpfsgt wait_temp |
56 | 2099 movwf wait_temp ; Minimum = 3 |
0 | 2100 |
2101 update_batt_voltage2a: | |
519 | 2102 WIN_BOX_STD .181, .187, .32, .34 ; Battery nose |
25 | 2103 |
0 | 2104 update_batt_voltage3: |
25 | 2105 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
|
2106 btfsc cc_active |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
281
diff
changeset
|
2107 movlw color_yellow ; CC active |
285 | 2108 btfsc charge_done |
2109 movlw color_green ; Charge done. | |
681 | 2110 call DISP_set_color |
123 | 2111 |
519 | 2112 movlw .175 |
2113 movff WREG,win_top ; row top (0-239) | |
2114 movlw .19 | |
2115 movff WREG,win_height | |
2116 movlw .2 | |
2117 movff WREG,win_leftx2 ; column left (0-159) | |
123 | 2118 movff wait_temp,win_width ; column right (0-159) |
681 | 2119 call DISP_box |
2120 call DISP_standard_color | |
0 | 2121 return |
519 | 2122 |
0 | 2123 update_batt_voltage2_empty: |
2124 movlw d'1' | |
2125 movwf wait_temp | |
2126 bra update_batt_voltage2a | |
2127 | |
2128 update_batt_voltage2_full: | |
2129 movlw d'30' | |
2130 movwf wait_temp | |
25 | 2131 bra update_batt_voltage2a |
0 | 2132 |
681 | 2133 DISP_convert_signed_temperature: |
382
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2134 btfss hi,7 ; Negative temperature ? |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2135 return ; No, return |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2136 ; Yes, negative temperature! |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2137 PUTC '-' ; Display "-" |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2138 comf hi ; Then, 16bit sign changes. |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2139 negf lo |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2140 btfsc STATUS,C |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2141 incf hi |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2142 return ; and return |
f2d5d93b4ca3
negative temperature in logbook and battery info menu
heinrichsweikamp
parents:
370
diff
changeset
|
2143 |
681 | 2144 DISP_convert_date: ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 |
0 | 2145 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) |
2146 tstfsz EEDATA | |
681 | 2147 bra DISP_convert_date1 |
0 | 2148 |
2149 ; Use MMDDYY | |
2150 movff convert_value_temp+0,lo ;month | |
2151 bsf leftbind | |
2152 output_99x | |
2153 bcf leftbind | |
140 | 2154 PUTC '.' |
0 | 2155 movff convert_value_temp+1,lo ;day |
681 | 2156 bra DISP_convert_date1_common ;year |
2157 | |
2158 DISP_convert_date1: | |
0 | 2159 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) |
2160 decfsz EEDATA,F | |
681 | 2161 bra DISP_convert_date2 |
0 | 2162 |
2163 ; Use DDMMYY | |
2164 movff convert_value_temp+1,lo ;day | |
2165 bsf leftbind | |
2166 output_99x | |
2167 bcf leftbind | |
140 | 2168 PUTC '.' |
0 | 2169 movff convert_value_temp+0,lo ;month |
2170 | |
681 | 2171 DISP_convert_date1_common: |
0 | 2172 bsf leftbind |
2173 output_99x | |
2174 bcf leftbind | |
140 | 2175 PUTC '.' |
0 | 2176 movff convert_value_temp+2,lo ;year |
2177 bsf leftbind | |
2178 output_99x | |
2179 return | |
2180 | |
681 | 2181 DISP_convert_date2: |
0 | 2182 ; Use YYMMDD |
2183 movff convert_value_temp+2,lo ;year | |
2184 bsf leftbind | |
2185 output_99x | |
2186 bcf leftbind | |
140 | 2187 PUTC '.' |
0 | 2188 movff convert_value_temp+0,lo ;month |
2189 bsf leftbind | |
2190 output_99x | |
2191 bcf leftbind | |
140 | 2192 PUTC '.' |
0 | 2193 movff convert_value_temp+1,lo ;day |
2194 bsf leftbind | |
2195 output_99x | |
2196 return | |
2197 | |
681 | 2198 DISP_convert_date_short: ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2 |
0 | 2199 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) |
2200 tstfsz EEDATA | |
681 | 2201 bra DISP_convert_date_short1 |
0 | 2202 |
2203 ; Use MMDDYY | |
681 | 2204 DISP_convert_date_short_common: |
0 | 2205 movff convert_value_temp+0,lo ;month |
2206 bsf leftbind | |
2207 output_99x | |
2208 bcf leftbind | |
140 | 2209 PUTC '.' |
0 | 2210 movff convert_value_temp+1,lo ;day |
2211 bsf leftbind | |
2212 output_99x | |
2213 bcf leftbind | |
2214 return | |
2215 | |
681 | 2216 DISP_convert_date_short1: |
0 | 2217 read_int_eeprom d'91' ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) |
2218 decfsz EEDATA,F | |
681 | 2219 bra DISP_convert_date_short_common ; Use YYMMDD |
0 | 2220 |
2221 ; Use DDMMYY | |
2222 movff convert_value_temp+1,lo ;day | |
2223 bsf leftbind | |
2224 output_99x | |
2225 bcf leftbind | |
140 | 2226 PUTC '.' |
0 | 2227 movff convert_value_temp+0,lo ;month |
2228 bsf leftbind | |
2229 output_99x | |
2230 bcf leftbind | |
2231 return | |
2232 | |
2233 update_date: | |
2234 ostc_debug 'd' | |
2235 WIN_TOP .75 | |
56 | 2236 WIN_LEFT .1 |
0 | 2237 WIN_FONT FT_SMALL |
2238 WIN_INVERT .0 ; Init new Wordprocessor | |
681 | 2239 call DISP_standard_color |
3 | 2240 |
0 | 2241 lfsr FSR2,letter |
2242 | |
2243 movff month,convert_value_temp+0 | |
2244 movff day,convert_value_temp+1 | |
2245 movff year,convert_value_temp+2 | |
681 | 2246 call DISP_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 |
0 | 2247 call word_processor |
2248 return | |
2249 | |
681 | 2250 DISP_menu_clear: |
637 | 2251 WIN_BOX_BLACK .0, .26, .50, .100 ;top, bottom, left, right |
0 | 2252 return |
2253 | |
681 | 2254 DISP_max_pressure: |
0 | 2255 ostc_debug 'p' ; Sends debug-information to screen if debugmode active |
75 | 2256 movff max_pressure+0,lo |
2257 movff max_pressure+1,hi | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
2258 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
75 | 2259 |
2260 movlw .039 | |
2261 cpfslt hi | |
517 | 2262 bra maxdepth_greater_99_84mtr |
75 | 2263 |
2264 ; Display normal "xx.y" | |
2265 lfsr FSR2,letter | |
681 | 2266 call DISP_standard_color |
654 | 2267 WIN_TOP .207 |
0 | 2268 WIN_LEFT .0 |
2269 WIN_FONT FT_MEDIUM | |
2270 WIN_INVERT .0 ; Init new Wordprocessor | |
2271 bsf leftbind | |
2272 bsf ignore_digit5 ; do not display 1cm depth | |
2273 output_16dp d'3' | |
2274 bcf leftbind | |
2275 bcf show_last3 | |
2276 call word_processor | |
2277 WIN_FONT FT_SMALL | |
2278 return | |
2279 | |
517 | 2280 maxdepth_greater_99_84mtr: ; Display only in full meters |
2281 btfss maxdepth_greater_100m ; Is max.depth>100m already? | |
681 | 2282 call DISP_clear_maxdepth ; No, clear maxdepth area and set flag |
75 | 2283 ; max Depth is already in hi:lo |
517 | 2284 ; Show max depth in Full meters |
75 | 2285 ; That means ignore figure 4 and 5 |
2286 lfsr FSR2,letter | |
681 | 2287 call DISP_standard_color |
654 | 2288 WIN_TOP .207 |
75 | 2289 WIN_LEFT .0 |
2290 WIN_FONT FT_MEDIUM | |
2291 WIN_INVERT .0 ; Init new Wordprocessor | |
2292 | |
2293 bsf ignore_digit4 | |
2294 bsf leftbind | |
2295 output_16 | |
2296 bcf leftbind | |
2297 call word_processor | |
2298 bcf ignore_digit4 | |
2299 WIN_FONT FT_SMALL | |
2300 return | |
2301 | |
681 | 2302 DISP_clear_maxdepth: |
654 | 2303 WIN_BOX_BLACK .207, .239, .0, .41 ;top, bottom, left, right |
517 | 2304 bsf maxdepth_greater_100m ; Set Flag |
75 | 2305 return |
2306 | |
681 | 2307 DISP_divemins: |
0 | 2308 btfsc menubit ; Divemode menu active? |
2309 return ; Yes, do not update divetime | |
2310 | |
2311 ostc_debug 'A' ; Sends debug-information to screen if debugmode active | |
2312 | |
2313 btfsc gauge_mode ; different display in gauge mode | |
681 | 2314 bra DISP_divemins_gauge |
0 | 2315 |
2316 btfsc FLAG_apnoe_mode ; different display in apnoe mode | |
681 | 2317 bra DISP_divemins_apnoe |
0 | 2318 |
2319 GETCUSTOM8 d'38' ; Show seconds (=1?) | |
2320 movwf lo | |
2321 movlw d'1' | |
2322 cpfseq lo ; =1? | |
681 | 2323 bra DISP_divemins2 ; No, minutes only |
2324 bra DISP_divemins_gauge ; Yes, use Gauge routine | |
0 | 2325 |
681 | 2326 DISP_divemins2: |
0 | 2327 movff divemins+0,lo |
2328 movff divemins+1,hi | |
2329 bcf leftbind | |
2330 lfsr FSR2,letter | |
2331 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
2332 WIN_TOP .20 | |
2333 WIN_LEFT .120 | |
2334 WIN_FONT FT_MEDIUM | |
681 | 2335 call DISP_standard_color |
0 | 2336 call word_processor |
2337 WIN_FONT FT_SMALL | |
2338 return | |
2339 | |
681 | 2340 DISP_display_apnoe_surface: |
0 | 2341 btfsc menubit ; Divemode menu active? |
2342 return ; Yes, do not display surface mode timeout | |
2343 | |
681 | 2344 call DISP_divemask_color ; Set Color for Divemode mask |
0 | 2345 DISPLAYTEXT d'140' ; "SURFACE" |
681 | 2346 call DISP_standard_color |
3 | 2347 |
0 | 2348 WIN_TOP .85 |
2349 WIN_LEFT .90 | |
2350 WIN_FONT FT_MEDIUM | |
681 | 2351 call DISP_standard_color |
3 | 2352 |
0 | 2353 |
2354 movff apnoe_surface_mins,lo | |
2355 bcf leftbind | |
2356 lfsr FSR2,letter | |
2357 output_8 | |
123 | 2358 PUTC ':' |
0 | 2359 movff apnoe_surface_secs,lo |
2360 output_99x | |
2361 call word_processor | |
2362 WIN_FONT FT_SMALL | |
2363 return | |
2364 | |
681 | 2365 DISP_apnoe_clear_surface: |
0 | 2366 ; Clear Surface timer.... |
204 | 2367 WIN_BOX_BLACK .60, .119, .90, .159 ;top, bottom, left, right |
0 | 2368 return |
2369 | |
2370 | |
681 | 2371 DISP_display_apnoe_descent: |
400 | 2372 btfsc menubit ; Divemode menu active? |
2373 return ; Yes, do not display/update descent time | |
2374 | |
681 | 2375 call DISP_divemask_color ; Set Color for Divemode mask |
0 | 2376 DISPLAYTEXT d'139' ; "Descent" |
681 | 2377 call DISP_standard_color |
3 | 2378 |
0 | 2379 |
2380 WIN_TOP .145 | |
2381 WIN_LEFT .90 | |
2382 WIN_FONT FT_MEDIUM | |
681 | 2383 call DISP_standard_color |
3 | 2384 |
0 | 2385 |
2386 movff apnoe_mins,lo | |
2387 lfsr FSR2,letter | |
2388 output_8 | |
123 | 2389 PUTC ':' |
0 | 2390 movff apnoe_secs,lo |
2391 output_99x | |
2392 call word_processor | |
2393 WIN_FONT FT_SMALL | |
2394 return | |
2395 | |
681 | 2396 DISP_divemins_apnoe: |
2397 | |
2398 DISP_divemins_gauge: | |
0 | 2399 movff divemins+0,lo |
2400 movff divemins+1,hi | |
2401 bcf leftbind | |
2402 bsf show_last3 | |
2403 lfsr FSR2,letter | |
2404 output_16_3 ;Displays only 0...999 | |
123 | 2405 PUTC ':' |
0 | 2406 movff divesecs,lo |
2407 output_99x | |
2408 WIN_TOP .20 | |
2409 WIN_LEFT .90 | |
2410 WIN_FONT FT_MEDIUM | |
681 | 2411 call DISP_standard_color |
3 | 2412 |
0 | 2413 call word_processor |
2414 bcf show_last3 | |
2415 WIN_FONT FT_SMALL | |
2416 return | |
2417 | |
681 | 2418 DISP_stopwatch_show: |
0 | 2419 ; Stopwatch |
681 | 2420 call DISP_divemask_color ; Set Color for Divemode mask |
87 | 2421 DISPLAYTEXTH d'283' ; Stopwatch |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2422 |
681 | 2423 DISP_stopwatch_show2: |
2424 call DISP_standard_color | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2425 ostc_debug 'V' ; Sends debug-information to screen if debugmode active |
87 | 2426 WIN_TOP .192 |
0 | 2427 WIN_LEFT .110 |
2428 WIN_FONT FT_SMALL | |
681 | 2429 call DISP_standard_color |
3 | 2430 |
0 | 2431 lfsr FSR2,letter |
2432 movff average_divesecs+0,lo ; Stopwatch | |
2433 movff average_divesecs+1,hi ; Stopwatch | |
2434 movlw d'2' | |
2435 subwf lo,F | |
2436 movlw d'0' | |
2437 subwfb hi,F ; Subtract 2 seconds | |
2438 | |
2439 call convert_time ; converts hi:lo in seconds to mins (hi) and secs (lo) | |
2440 | |
2441 movff lo,wait_temp | |
2442 movff hi,lo | |
2443 clrf hi | |
2444 | |
2445 movlw d'0' | |
2446 bcf leftbind | |
2447 bsf show_last3 | |
2448 output_16_3 ;Displays only 0...999 | |
123 | 2449 PUTC ':' |
0 | 2450 movff wait_temp,lo |
2451 output_99x | |
2452 call word_processor | |
2453 | |
2454 ostc_debug 'U' ; Sends debug-information to screen if debugmode active | |
2455 | |
87 | 2456 WIN_TOP .216 |
517 | 2457 WIN_LEFT .110 |
0 | 2458 WIN_FONT FT_SMALL |
681 | 2459 call DISP_standard_color |
3 | 2460 |
0 | 2461 lfsr FSR2,letter |
2462 movff avr_rel_pressure+0,lo | |
2463 movff avr_rel_pressure+1,hi | |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
2464 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
0 | 2465 bsf ignore_digit5 ; do not display 1cm depth |
2466 output_16dp d'3' | |
2467 bcf leftbind | |
446 | 2468 STRCAT_PRINT TXT_METER1 |
0 | 2469 return |
2470 | |
681 | 2471 DISP_stopwatch_show_gauge: |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2472 btfsc menubit ; Divemode menu active? |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2473 return ; Yes, return |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2474 ; BIG Stopwatch |
681 | 2475 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
|
2476 DISPLAYTEXTH d'310' ; Stopwatch |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2477 DISPLAYTEXTH d'309' ; Average |
681 | 2478 call DISP_standard_color |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2479 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
|
2480 WIN_TOP .80 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2481 WIN_LEFT .90 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2482 WIN_FONT FT_MEDIUM |
681 | 2483 call DISP_standard_color |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2484 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2485 lfsr FSR2,letter |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2486 movff average_divesecs+0,lo ; Stopwatch |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2487 movff average_divesecs+1,hi ; Stopwatch |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2488 movlw d'2' |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2489 subwf lo,F |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2490 movlw d'0' |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2491 subwfb hi,F ; Subtract 2 seconds |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2492 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
|
2493 movff lo,wait_temp |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2494 movff hi,lo |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2495 clrf hi |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2496 movlw d'0' |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2497 bcf leftbind |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2498 bsf show_last3 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2499 output_16_3 ;Displays only 0...999 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2500 PUTC ':' |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2501 movff wait_temp,lo |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2502 output_99x |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2503 call word_processor |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2504 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2505 ostc_debug 'U' ; Sends debug-information to screen if debugmode active |
517 | 2506 WIN_TOP .136 |
2507 WIN_LEFT .90 | |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2508 WIN_FONT FT_MEDIUM |
681 | 2509 call DISP_standard_color |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2510 lfsr FSR2,letter |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2511 movff avr_rel_pressure+0,lo |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2512 movff avr_rel_pressure+1,hi |
398
ab962c4b19d6
Fixing issue 50, correct "Bar" to "bar" in texts and comments
heinrichsweikamp
parents:
396
diff
changeset
|
2513 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
|
2514 bsf ignore_digit5 ; do not display 1cm depth |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2515 output_16dp d'3' |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2516 bcf leftbind |
446 | 2517 STRCAT_PRINT TXT_METER1 |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2518 WIN_FONT FT_SMALL ; Reset... |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2519 return |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2520 |
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
2521 |
681 | 2522 DISP_total_average_show: |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2523 ; Non-Resettable Average |
681 | 2524 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
|
2525 DISPLAYTEXTH d'281' ; Avr.Depth |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2526 |
681 | 2527 DISP_total_average_show2: |
517 | 2528 WIN_TOP .192 |
2529 WIN_LEFT .110 | |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2530 WIN_FONT FT_SMALL |
681 | 2531 call DISP_standard_color |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2532 |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2533 lfsr FSR2,letter |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2534 movff avr_rel_pressure_total+0,lo |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2535 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
|
2536 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
|
2537 bsf ignore_digit5 ; do not display 1cm depth |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2538 bcf leftbind |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2539 output_16dp d'3' |
446 | 2540 STRCAT_PRINT TXT_METER1 |
129
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2541 return |
06c4899ddb4b
Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents:
127
diff
changeset
|
2542 |
235 | 2543 ;============================================================================= |
2544 ; Writes OSTC #Serial and Firmware version in surfacemode | |
2545 ; | |
681 | 2546 DISP_serial: |
0 | 2547 ostc_debug 'a' ; Sends debug-information to screen if debugmode active |
2548 WIN_TOP .0 | |
56 | 2549 WIN_LEFT .1 |
0 | 2550 WIN_FONT FT_SMALL |
235 | 2551 WIN_INVERT .0 ; Init new Wordprocessor |
2552 | |
2553 ifdef __DEBUG | |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
2554 GETCUSTOM8 d'64' ; Write header in blue when |
681 | 2555 call DISP_set_color ; compiled in DEBUG mode... |
235 | 2556 else |
681 | 2557 call DISP_standard_color |
235 | 2558 endif |
3 | 2559 |
0 | 2560 lfsr FSR2,letter |
607 | 2561 read_int_eeprom d'34' ; Read deco data |
2562 tstfsz EEDATA | |
2563 bra show_decotype_mainscreen2 | |
2564 OUTPUTTEXT .101 ; ZH-L16 OC =0 | |
2565 bra show_decotype_mainscreen8 ; Done. | |
2566 show_decotype_mainscreen2: | |
2567 decfsz EEDATA,F | |
2568 bra show_decotype_mainscreen3 | |
2569 OUTPUTTEXT .102 ; Gauge =1 | |
2570 bra show_decotype_mainscreen8 ; Done. | |
2571 show_decotype_mainscreen3: | |
2572 decfsz EEDATA,F | |
2573 bra show_decotype_mainscreen4 | |
2574 OUTPUTTEXT .104 ; ZH-L16 CC =2 | |
2575 bra show_decotype_mainscreen8 ; Done. | |
2576 show_decotype_mainscreen4: | |
2577 decfsz EEDATA,F | |
2578 bra show_decotype_mainscreen5 | |
2579 OUTPUTTEXT .138 ; Apnoe =3 | |
2580 bra show_decotype_mainscreen8 ; Done. | |
2581 show_decotype_mainscreen5: | |
2582 decfsz EEDATA,F | |
2583 bra show_decotype_mainscreen6 | |
2584 OUTPUTTEXT .152 ; L16-GF OC =4 | |
2585 bra show_decotype_mainscreen8 ; Done. | |
2586 show_decotype_mainscreen6: | |
2587 decfsz EEDATA,F | |
2588 bra show_decotype_mainscreen7 | |
2589 OUTPUTTEXT .236 ; L16-GF CC =5 | |
2590 bra show_decotype_mainscreen8 ; Done. | |
2591 show_decotype_mainscreen7: | |
2592 decfsz EEDATA,F | |
2593 bra show_decotype_mainscreen8 ; Done. | |
2594 OUTPUTTEXT .226 ; pSCR-GF =6 | |
2595 show_decotype_mainscreen8: | |
235 | 2596 STRCAT " \x90\x91 V" ; Scribble logo... |
0 | 2597 movlw softwareversion_x |
2598 movwf lo | |
2599 bsf leftbind | |
2600 output_8 | |
123 | 2601 PUTC '.' |
0 | 2602 movlw softwareversion_y |
2603 movwf lo | |
2604 bsf leftbind | |
2605 output_99x | |
2606 bcf leftbind | |
235 | 2607 |
2608 ifdef __DEBUG | |
2609 STRCAT_PRINT "-Dbg" | |
2610 else | |
0 | 2611 call word_processor |
140 | 2612 |
235 | 2613 movlw softwareversion_beta ; =1: Beta, =0: Release |
140 | 2614 decfsz WREG,F |
235 | 2615 return ; Release version -> Return |
140 | 2616 |
681 | 2617 call DISP_warnings_color |
235 | 2618 DISPLAYTEXT d'243' ; beta |
681 | 2619 call DISP_standard_color |
235 | 2620 endif |
2621 | |
0 | 2622 return |
2623 | |
235 | 2624 ;============================================================================= |
2625 | |
681 | 2626 DISP_divemode_menu_mask_first: ; Write Divemode menu1 mask |
0 | 2627 ostc_debug 'o' ; Sends debug-information to screen if debugmode active |
681 | 2628 call DISP_menu_clear ; clear "Menu?" |
2629 call DISP_standard_color | |
0 | 2630 |
2631 btfsc FLAG_const_ppO2_mode ; are we in ppO2 mode? | |
681 | 2632 bra DISP_divemode_menu_mask_first2 |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2633 |
0 | 2634 ; in OC Mode |
2635 DISPLAYTEXT .32 ;"Gaslist" | |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2636 DISPLAYTEXT .31 ;"Decoplan" |
681 | 2637 bra DISP_divemode_menu_mask_first3 |
2638 | |
2639 DISP_divemode_menu_mask_first2: | |
0 | 2640 ; in CC Mode |
73
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2641 DISPLAYTEXT .238 ;"SetPoint" |
2227459e8ef2
Exchanged Decoplan and Gaslist in dive mode menu
heinrichsweikamp
parents:
71
diff
changeset
|
2642 DISPLAYTEXT .31 ;"Decoplan" |
0 | 2643 |
681 | 2644 DISP_divemode_menu_mask_first3: |
0 | 2645 ; In all modes |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2646 call customview_menu_entry3 ; Show customview-dependent menu entry |
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
2647 DISPLAYTEXT .241 ;"Display" |
0 | 2648 DISPLAYTEXT .34 ;"Exit" |
2649 return | |
2650 | |
681 | 2651 DISP_divemode_set_xgas: ; Displayes the "Set Gas" menu |
0 | 2652 WIN_LEFT .100 |
2653 WIN_TOP .0 | |
2654 WIN_FONT FT_SMALL | |
681 | 2655 call DISP_standard_color |
3 | 2656 |
446 | 2657 STRCPY TXT_G6_3 |
0 | 2658 read_int_eeprom d'24' ; Get Gas6 %O2 |
2659 movff EEDATA,lo | |
2660 bcf leftbind | |
2661 output_99 ; outputs into Postinc2! | |
123 | 2662 PUTC '/' |
0 | 2663 read_int_eeprom d'25' ; Get Gas6 %He |
2664 movff EEDATA,lo | |
2665 output_99 ; outputs into Postinc2! | |
2666 call word_processor | |
2667 DISPLAYTEXT .123 ; O2 + | |
2668 DISPLAYTEXT .124 ; O2 - | |
2669 DISPLAYTEXT .125 ; He + | |
2670 DISPLAYTEXT .126 ; He - | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2671 DISPLAYTEXTH d'300' ; Active? (Enable/Disable Gas underwater) |
0 | 2672 return |
2673 | |
681 | 2674 DISP_divemode_simulator_mask: |
2675 call DISP_standard_color | |
124 | 2676 DISPLAYTEXT .254 ; Close |
2677 DISPLAYTEXT .250 ; + 1m | |
2678 DISPLAYTEXT .251 ; - 1m | |
2679 DISPLAYTEXT .252 ; +10m | |
2680 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
|
2681 DISPLAYTEXTH .306 ; Quit Sim |
124 | 2682 return |
0 | 2683 |
123 | 2684 ;----------------------------------------------------------------------------- |
124 | 2685 ; Draw a stop of the deco plan (simulator or dive). |
2686 ; Inputs: lo = depth. Range 3m...93m | |
279
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2687 ; + 80 if this is a switch-gas stop. |
124 | 2688 ; hi = minutes. range 1'..240'. |
2689 ; win_top = line to draw on screen. | |
2690 ; Trashed: hi, lo, win_height, win_leftx2, win_width, win_color*, | |
2691 ; WREG, PROD, TBLPTR TABLAT. | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2692 ; |
681 | 2693 DISP_decoplan_show_stop: |
124 | 2694 ;---- Print depth ---------------------------------------------------- |
2695 WIN_LEFT .100 | |
517 | 2696 |
279
8514588eb6a2
Mark gas-switch stops for decoplans, displayed in yellow.
JeanDo
parents:
277
diff
changeset
|
2697 btfss lo,7 ; Bit set ? |
681 | 2698 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
|
2699 |
c84ea647ff58
do not show gas switch stops in yellow when CF55=0
heinrichsweikamp
parents:
556
diff
changeset
|
2700 bcf lo,7 ; cleanup depth |
c84ea647ff58
do not show gas switch stops in yellow when CF55=0
heinrichsweikamp
parents:
556
diff
changeset
|
2701 |
c84ea647ff58
do not show gas switch stops in yellow when CF55=0
heinrichsweikamp
parents:
556
diff
changeset
|
2702 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
|
2703 tstfsz WREG ; =0? |
681 | 2704 bra DISP_decoplan_show_stop1; No: Show gas switch stop |
2705 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
|
2706 |
681 | 2707 DISP_decoplan_show_stop1: |
559
c84ea647ff58
do not show gas switch stops in yellow when CF55=0
heinrichsweikamp
parents:
556
diff
changeset
|
2708 movlw color_yellow |
681 | 2709 call DISP_set_color ; Show in yellow for gas switch |
2710 bra DISP_decoplan_nstd_stop | |
2711 | |
2712 DISP_decoplan_std_stop: | |
2713 call DISP_standard_color | |
2714 | |
2715 DISP_decoplan_nstd_stop: | |
124 | 2716 lfsr FSR2,letter |
2717 bsf leftbind | |
2718 output_8 ; outputs into Postinc2! | |
446 | 2719 STRCAT_PRINT TXT_METER2 |
124 | 2720 |
2721 ;---- Print duration ------------------------------------------------- | |
2722 WIN_LEFT .140 | |
2723 lfsr FSR2,letter | |
2724 | |
2725 movf lo,W ; Swap hi & lo | |
2726 movff hi,lo | |
2727 movwf hi | |
2728 | |
2729 output_8 ; Allow up to 240' | |
2730 STRCAT_PRINT "' " ; 1 to 3 chars for depth. | |
2731 | |
2732 movf lo,W ; Swap back hi & lo | |
2733 movff hi,lo | |
2734 movwf hi | |
2735 | |
2736 ;--------------------------------------------------------------------- | |
2737 ; Draw the bar graph used for deco stops (decoplan in simulator or dive). | |
2738 movff win_top,WREG ; Increment win_top (BANK SAFE) | |
2739 incf WREG | |
2740 movff WREG,win_top | |
2741 movlw d'18'+1 ; 19 --> height (bank safe !) | |
2742 movff WREG,win_height | |
2743 movlw .122 | |
2744 movff WREG,win_leftx2 ; column left (0-159) | |
150 | 2745 movlw .16 |
2746 movff WREG,win_width ; column max width. | |
2747 | |
2748 ; Draw used area (hi = minutes): | |
124 | 2749 movlw d'16' ; Limit length (16min) |
2750 cpfslt hi | |
2751 movwf hi | |
150 | 2752 movff hi,win_bargraph ; Active width, the rest is cleared. |
681 | 2753 call DISP_box |
124 | 2754 |
2755 ; Restore win_top | |
681 | 2756 call DISP_standard_color |
124 | 2757 movff win_top,WREG ; decf win_top (BANK SAFE) |
2758 decf WREG | |
2759 movff WREG,win_top | |
2760 return | |
123 | 2761 |
2762 ;----------------------------------------------------------------------------- | |
124 | 2763 ; Clear unused area belw last stop |
2764 ; Inputs: win_top : last used area... | |
681 | 2765 DISP_decoplan_clear_bottom: |
124 | 2766 movff win_top,WREG ; Get back from bank0 |
2767 btfsc divemode ; In dive mode ? | |
150 | 2768 sublw .168 ; Yes: bottom row in divemode |
124 | 2769 btfss divemode ; In dive mode ? |
2770 sublw .240 ; No: bottom row in planning | |
2771 movff WREG,win_height | |
2772 | |
292 | 2773 WIN_LEFT .85 ; Full divemenu width |
683 | 2774 movlw .159-.85 |
124 | 2775 movff WREG,win_width |
2776 | |
2777 clrf WREG ; Fill with black | |
2778 movff WREG,win_color1 | |
2779 movff WREG,win_color2 | |
683 | 2780 movff WREG,win_color3 |
706 | 2781 movff WREG,win_color4 |
2782 movff WREG,win_color5 | |
2783 movff WREG,win_color6 | |
681 | 2784 goto DISP_box |
123 | 2785 |
2786 ;----------------------------------------------------------------------------- | |
124 | 2787 ; Display the decoplan (simulator or divemode) for GF model |
2788 ; Inputs: char_O_deco_table (array of stop times, in minutes) | |
2789 ; decoplan_page = page number. Displays 5 stop by page. | |
2790 ; | |
164 | 2791 #define decoplan_index apnoe_mins ; within each page |
2792 #define decoplan_gindex apnoe_secs ; global index | |
2793 #define decoplan_last apnoe_max_pressure ; Depth of last stop (CF#29) | |
2794 #define decoplan_max apnoe_max_pressure+1; Number of lines per page. 7 in planning, 5 in diving. | |
124 | 2795 |
681 | 2796 DISP_decoplan: |
124 | 2797 ostc_debug 'n' ; Sends debug-information to screen if debugmode active |
2798 | |
2799 WIN_INVERT 0 | |
2800 | |
2801 ;---- Is there deco stops ? ------------------------------------------ | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2802 movff char_O_first_deco_depth,WREG |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2803 iorwf WREG |
681 | 2804 bnz DISP_decoplan_1 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2805 |
124 | 2806 ;---- No Deco -------------------------------------------------------- |
681 | 2807 call DISP_standard_color |
124 | 2808 DISPLAYTEXT d'239' ;"No Deco" |
2809 bsf last_ceiling_gf_shown | |
2810 return | |
2811 | |
681 | 2812 DISP_decoplan_1: |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2813 lfsr FSR0,char_O_deco_depth ; Initialize indexed addressing. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2814 lfsr FSR1,char_O_deco_time |
124 | 2815 |
2816 movlw .8 ; 8 lines/page in decoplan | |
2817 btfsc divemode | |
2818 movlw .6 ; 6 lines/page in divemode. | |
2819 movwf decoplan_max | |
2820 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2821 clrf decoplan_index ; Start with index = 0 |
124 | 2822 clrf WREG |
2823 movff WREG,win_top ; and row = 0 | |
2824 | |
2825 ; Read stop parameters, indexed by decoplan_index and decoplan_page | |
2826 movf decoplan_page,W ; decoplan_gindex = 6*decoplan_page + decoplan_index | |
2827 mulwf decoplan_max | |
2828 movf decoplan_index,W | |
2829 addwf PRODL,W | |
2830 movwf decoplan_gindex ; --> decoplan_gindex | |
2831 | |
2832 bcf last_ceiling_gf_shown ; Not finished yet... | |
2833 | |
681 | 2834 DISP_decoplan_2: |
124 | 2835 btfsc decoplan_gindex,5 ; Reached table length (32) ? |
681 | 2836 bra DISP_decoplan_99 ; YES: finished... |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2837 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2838 ; Read stop parameters, indexed by decoplan_index |
124 | 2839 movf decoplan_gindex,W ; index |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2840 movff PLUSW1,hi ; char_O_deco_time [gindex] --> hi |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2841 movff PLUSW0,lo ; char_O_deco_depth[gindex] |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2842 movf lo,W |
681 | 2843 bz DISP_decoplan_99 ; depth == 0 : finished. |
124 | 2844 |
2845 ; Display the stop line | |
681 | 2846 call DISP_decoplan_show_stop |
124 | 2847 |
2848 ; Next | |
2849 movff win_top,WREG ; row: += 24 | |
2850 addlw .24 | |
2851 movff WREG,win_top | |
2852 incf decoplan_index,F ; local index += 1 | |
2853 incf decoplan_gindex,F ; global index += 1 | |
2854 | |
2855 ; Max number of lines/page reached ? | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2856 movf decoplan_max,W ; index+1 == max ? |
124 | 2857 cpfseq decoplan_index |
681 | 2858 bra DISP_decoplan_2 ; NO: loop |
124 | 2859 |
2860 ; Check if next stop if end-of-list ? | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2861 movf decoplan_gindex,W |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2862 movff PLUSW0,WREG ; char_O_deco_depth[gindex] |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
2863 iorwf WREG |
681 | 2864 bz DISP_decoplan_99 ; End of list... |
124 | 2865 |
2866 ; Display the message "more..." | |
223 | 2867 bcf last_ceiling_gf_shown ; More page to display... |
2868 | |
681 | 2869 rcall DISP_decoplan_clear_bottom ; Clear from next line |
124 | 2870 |
2871 WIN_LEFT .130 - 7*3 | |
681 | 2872 call DISP_standard_color |
223 | 2873 lfsr FSR2,letter |
2874 OUTPUTTEXT .142 ; More... | |
2875 goto word_processor | |
124 | 2876 |
681 | 2877 DISP_decoplan_99: |
124 | 2878 bsf last_ceiling_gf_shown ; Nothing more in table to display. |
681 | 2879 rcall DISP_decoplan_clear_bottom ; Clear from next line |
124 | 2880 return |
2881 ;----------------------------------------------------------------------------- | |
289 | 2882 ; Toggle gas activity flag during dive. |
2883 ; | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
289
diff
changeset
|
2884 ; Input: gaslist_active |
289 | 2885 ; Gaslist from eeprom[2...] |
2886 ; | |
290
4dbff2aa31ee
Hunting for refusing to ignore disabled gas in list...
JeanDo
parents:
289
diff
changeset
|
2887 ; Output: gaslist_active |
289 | 2888 ; |
2889 ; Note: Gas with a zero depth cannot be used in deco simulation, hence | |
2890 ; should not be displayed as selected here... | |
2891 ; | |
681 | 2892 DISP_de_activelist: ; show (de)active gaslist |
2893 call DISP_standard_color | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2894 DISPLAYTEXT .254 ; Close |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2895 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2896 WIN_LEFT .100 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2897 WIN_FONT FT_SMALL |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2898 bsf leftbind |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2899 |
281 | 2900 movlw d'2' |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2901 movwf wait_temp ; here: stores eeprom address for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2902 movlw d'0' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2903 movwf waitms_temp ; here: stores row for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2904 clrf hi ; here: Gas counter |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2905 |
681 | 2906 DISP_de_activelist_loop: |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2907 incf hi,F ; Increase Gas |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2908 movlw d'4' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2909 addwf wait_temp,F ; Increase eeprom address for gas list |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2910 movlw d'25' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2911 addwf waitms_temp,F ; Increase row |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2912 WIN_LEFT .100 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2913 movff waitms_temp,win_top ; Set Row |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2914 |
221 | 2915 lfsr FSR2,letter |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2916 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
|
2917 call read_eeprom ; get byte (stored in EEDATA) |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2918 movff EEDATA,lo ; copy to lo |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2919 output_8 ; outputs into Postinc2! |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2920 PUTC '/' |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2921 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
|
2922 call read_eeprom ; get byte (stored in EEDATA) |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2923 movff EEDATA,lo ; copy to lo |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2924 output_8 ; outputs into Postinc2! |
221 | 2925 PUTC '@' |
2926 | |
281 | 2927 movlw d'27' |
221 | 2928 addwf hi,W |
2929 movwf EEADR ; Point to Change depth | |
2930 | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2931 call read_eeprom ; get byte (stored in EEDATA) |
221 | 2932 movff EEDATA,lo ; copy to lo |
2933 output_8 ; outputs into Postinc2! | |
2934 | |
289 | 2935 movf lo,w ; Gas with a zero depth |
681 | 2936 bz DISP_de_activelist_grey ; should be displayed inactive. |
289 | 2937 |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2938 ; 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
|
2939 movff gaslist_active,EEDATA ; Get flag register |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2940 movff hi,lo ; copy gas number |
681 | 2941 DISP_de_activelist_loop1: |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2942 rrcf EEDATA ; roll flags into carry |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2943 decfsz lo,F ; max. 5 times... |
681 | 2944 bra DISP_de_activelist_loop1 |
2945 bc DISP_de_activelist_white | |
2946 | |
2947 DISP_de_activelist_grey: ; grey out inactive gases! | |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
2948 GETCUSTOM8 d'64' ;movlw color_grey |
681 | 2949 call DISP_set_color |
2950 | |
2951 DISP_de_activelist_white: | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2952 call word_processor |
681 | 2953 call DISP_standard_color |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2954 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2955 movlw d'5' ; list all five gases |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2956 cpfseq hi ; All gases shown? |
681 | 2957 bra DISP_de_activelist_loop ; No |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2958 |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2959 return ; return |
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
2960 |
681 | 2961 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
|
2962 btfsc display_set_setpoint ; In Setpoint list? |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2963 return ; Yes, return. |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2964 movlw color_yellow ; Blink in yellow |
681 | 2965 call DISP_set_color |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2966 WIN_LEFT .95 |
532 | 2967 WIN_TOP .148 |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2968 WIN_FONT FT_SMALL |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2969 |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2970 movlw .6 |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2971 cpfslt menupos ; <6? |
681 | 2972 bra DISP_show_change_depth_clear ; Yes! |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2973 |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2974 bsf leftbind |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2975 STRCPY TXT_GAS1 |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2976 movff menupos,lo |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2977 output_8 ; Show gas number |
532 | 2978 STRCAT TXT_AT4 ; " at " |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2979 decf menupos,W |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2980 addlw d'28' ; offset in memory |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2981 movwf EEADR |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2982 call read_eeprom ; Low-value |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2983 movff EEDATA,lo |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2984 output_8 ; Show gas number |
532 | 2985 STRCAT_PRINT TXT_METER2 ; "m " |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2986 bcf leftbind |
681 | 2987 call DISP_standard_color |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2988 return |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2989 |
681 | 2990 DISP_show_change_depth_clear: |
528
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2991 STRCPY_PRINT " " |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2992 return |
67ab3c028bc2
Show change gas depth below gaslist (in divemode)
heinrichsweikamp
parents:
525
diff
changeset
|
2993 |
681 | 2994 DISP_diluent_list: |
647 | 2995 ostc_debug 'm' ; Sends debug-information to screen if debugmode active |
2996 WIN_LEFT .100 | |
2997 WIN_FONT FT_SMALL | |
2998 bsf leftbind | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
2999 movlw d'93' |
647 | 3000 movwf wait_temp ; here: stores eeprom address for diluent list (96-2) |
3001 movlw d'231' | |
3002 movwf waitms_temp ; here: stores row for gas list | |
3003 clrf hi ; here: Diluent counter | |
3004 | |
681 | 3005 DISP_diluent_list_loop: |
647 | 3006 incf hi,F ; Increase Diluent |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
683
diff
changeset
|
3007 movlw d'4' |
647 | 3008 addwf wait_temp,F ; Increase eeprom address for gas list |
3009 movlw d'25' | |
3010 addwf waitms_temp,F ; Increase row | |
3011 WIN_LEFT .100 | |
3012 movff waitms_temp,win_top ; Set Row | |
3013 STRCPY TXT_DIL_C | |
3014 movff hi,lo ; copy dil number | |
3015 output_8 ; display dil number | |
3016 PUTC ':' | |
3017 movff wait_temp, EEADR; Dil #hi: %O2 - Set address in internal EEPROM | |
3018 call read_eeprom ; get byte (stored in EEDATA) | |
3019 movff EEDATA,lo ; copy to lo | |
3020 output_8 ; outputs into Postinc2! | |
3021 PUTC '/' | |
3022 incf EEADR,F ; Dil #hi: %He - Set address in internal EEPROM | |
3023 call read_eeprom ; get byte (stored in EEDATA) | |
3024 movff EEDATA,lo ; copy to lo | |
3025 output_8 ; outputs into Postinc2! | |
3026 | |
3027 decf EEADR,F ; Dil #hi: %O2 - Set address in internal EEPROM | |
3028 call read_eeprom ; get byte (stored in EEDATA) | |
681 | 3029 DISP_color_code warn_gas_in_gaslist ; Color-code output (%O2 in "EEDATA") |
647 | 3030 |
3031 call word_processor | |
681 | 3032 call DISP_standard_color |
647 | 3033 |
3034 movlw d'5' ; list all five Diluents | |
3035 cpfseq hi ; All diluents shown? | |
681 | 3036 bra DISP_diluent_list_loop ; No |
647 | 3037 return ; return |
3038 | |
219
b6dd54b3567c
NEW: De/Activate gases underwater (Gaslist -> Gas6.. -> Actve?)
heinrichsweikamp
parents:
209
diff
changeset
|
3039 |
681 | 3040 DISP_gas_list: |
0 | 3041 ostc_debug 'm' ; Sends debug-information to screen if debugmode active |
3042 | |
3043 WIN_LEFT .100 | |
3044 WIN_FONT FT_SMALL | |
3045 bsf leftbind | |
3046 | |
3047 movlw d'2' | |
3048 movwf wait_temp ; here: stores eeprom address for gas list | |
3049 movlw d'231' | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
3050 movwf waitms_temp ; here: stores row for gas list |
0 | 3051 clrf hi ; here: Gas counter |
3052 | |
681 | 3053 DISP_gas_list_loop: |
0 | 3054 incf hi,F ; Increase Gas |
3055 movlw d'4' | |
3056 addwf wait_temp,F ; Increase eeprom address for gas list | |
3057 movlw d'25' | |
3058 addwf waitms_temp,F ; Increase row | |
3059 WIN_LEFT .100 | |
3060 movff waitms_temp,win_top ; Set Row | |
446 | 3061 STRCPY TXT_GAS1 |
0 | 3062 movff hi,lo ; copy gas number |
3063 output_8 ; display gas number | |
123 | 3064 PUTC ':' |
0 | 3065 movff wait_temp, EEADR; Gas #hi: %O2 - Set address in internal EEPROM |
3066 call read_eeprom ; get byte (stored in EEDATA) | |
3067 movff EEDATA,lo ; copy to lo | |
3068 output_8 ; outputs into Postinc2! | |
123 | 3069 PUTC '/' |
0 | 3070 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM |
3071 call read_eeprom ; get byte (stored in EEDATA) | |
3072 movff EEDATA,lo ; copy to lo | |
3073 output_8 ; outputs into Postinc2! | |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
3074 |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
3075 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
|
3076 call read_eeprom ; get byte (stored in EEDATA) |
681 | 3077 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
|
3078 |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3079 ; Check if the "better gas" should be highlighted |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3080 |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3081 WIN_INVERT .0 ; Init new Wordprocessor |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3082 movf better_gas_number,W ; better gas 1-5? |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3083 cpfseq hi ; compare with gas# |
681 | 3084 bra DISP_gas_list_loop2 ; No equal, skip |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3085 |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3086 movlw color_yellow ; Blink in yellow |
681 | 3087 call DISP_set_color |
627
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3088 WIN_INVERT .1 ; Init new Wordprocessor |
8d2dc109ecfc
NEW: Gaslist highlights "better gas" in divemode
heinrichsweikamp
parents:
624
diff
changeset
|
3089 |
681 | 3090 DISP_gas_list_loop2: |
281 | 3091 ; 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
|
3092 movff gaslist_active, EEDATA ; Work with sorted list |
0 | 3093 movff hi,lo ; copy gas number |
681 | 3094 DISP_gas_list_loop1: |
0 | 3095 rrcf EEDATA ; roll flags into carry |
3096 decfsz lo,F ; max. 5 times... | |
681 | 3097 bra DISP_gas_list_loop1 |
19 | 3098 |
0 | 3099 btfss STATUS,C ; test carry |
681 | 3100 rcall DISP_gas_list_grey |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
3101 |
0 | 3102 call word_processor |
681 | 3103 call DISP_standard_color |
0 | 3104 |
3105 movlw d'5' ; list all five gases | |
3106 cpfseq hi ; All gases shown? | |
681 | 3107 bra DISP_gas_list_loop ; No |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
91
diff
changeset
|
3108 |
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: |
3369 call DISP_topline_box | |
0 | 3370 WIN_INVERT .1 ; Init new Wordprocessor |
3371 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
3372 WIN_INVERT .0 ; Init new Wordprocessor | |
3373 DISPLAYTEXT .68 ; Licence 1/2 | |
3374 DISPLAYTEXT .69 | |
3375 DISPLAYTEXT .70 | |
3376 DISPLAYTEXT .71 | |
3377 DISPLAYTEXT .72 | |
3378 DISPLAYTEXT .73 | |
3379 DISPLAYTEXT .74 | |
3380 return | |
3381 | |
681 | 3382 DISP_startupscreen2: |
3383 call DISP_topline_box | |
0 | 3384 WIN_INVERT .1 ; Init new Wordprocessor |
3385 DISPLAYTEXT d'3' ; "HeinrichsWeikamp" | |
3386 WIN_INVERT .0 ; Init new Wordprocessor | |
3387 DISPLAYTEXT .75 ; Licence 2/2 | |
3388 DISPLAYTEXT .76 | |
3389 DISPLAYTEXT .77 | |
3390 DISPLAYTEXT .78 | |
3391 DISPLAYTEXT .79 | |
3392 DISPLAYTEXT .80 | |
3393 DISPLAYTEXT .81 | |
3394 return | |
3395 | |
681 | 3396 DISP_new_cf_warning: |
3397 call DISP_topline_box | |
0 | 3398 WIN_INVERT .1 ; Init new Wordprocessor |
3399 DISPLAYTEXTH .271 ; New CF added! | |
3400 WIN_INVERT .0 ; Init new Wordprocessor | |
3401 DISPLAYTEXTH .272 ; New CustomFunctions | |
3402 DISPLAYTEXTH .273 ; were added! Check | |
3403 DISPLAYTEXTH .274 ; CF I and CF II Menu | |
3404 DISPLAYTEXTH .275 ; for Details! | |
3405 return | |
3406 | |
681 | 3407 DISP_const_ppO2_value: |
0 | 3408 ostc_debug 'j' ; Sends debug-information to screen if debugmode active |
3409 | |
3410 WIN_TOP .168 | |
75 | 3411 WIN_LEFT .50 |
0 | 3412 WIN_FONT FT_SMALL |
3413 WIN_INVERT .0 ; Init new Wordprocessor | |
4 | 3414 |
0 | 3415 lfsr FSR2,letter |
3416 movff char_I_const_ppO2,lo | |
3417 | |
3418 tstfsz lo ; In Bailout mode (char_I_const_ppO2=0)? | |
681 | 3419 bra DISP_const_ppO2_value2 ; No, display Setpoint |
0 | 3420 |
3421 ; Yes, Display "Bail" | |
681 | 3422 call DISP_standard_color |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3423 OUTPUTTEXTH d'263' ;"Bail " |
0 | 3424 call word_processor |
3425 return | |
3426 | |
681 | 3427 DISP_const_ppO2_value2: ; Display SetPoint |
0 | 3428 ;Show fixed SP value |
341
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
3429 SAFE_2BYTE_COPY amb_pressure, xA |
2144f19fa1eb
BUGFIX protect against ISR changing pressure/temperature while reading it.
JeanDo
parents:
340
diff
changeset
|
3430 |
4 | 3431 movlw d'10' |
3432 movwf xB+0 | |
3433 clrf xB+1 | |
3434 ;xA/xB=xC with xA as remainder | |
3435 call div16x16 ; xC+0=p_amb/10 | |
26 | 3436 |
412 | 3437 ; char_I_const_ppO2 > p_amb/10 -> Not physically possible! -> Display actual value! |
3438 tstfsz xC+1 ; xC>255 | |
3439 setf xC+0 ; Yes, set xC+0 to 2,55bar ppO2 | |
26 | 3440 |
4 | 3441 movff ppO2_setpoint_store,WREG |
3442 cpfslt xC+0 ; Setpoint value possible? | |
681 | 3443 bra DISP_const_ppO2_value1 ; Yes |
4 | 3444 |
406
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3445 clrf hi ; Reset hi |
4 | 3446 movff xC+0,char_I_const_ppO2 ; No, Overwrite with actual value |
681 | 3447 bra DISP_const_ppO2_value1a |
3448 | |
3449 DISP_const_ppO2_value1: | |
26 | 3450 ; 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
|
3451 SAFE_2BYTE_COPY amb_pressure, xA |
26 | 3452 movlw d'10' |
3453 movwf xB+0 | |
3454 clrf xB+1 | |
3455 call div16x16 ; xC=p_amb/10 | |
3456 movff xC+0,xA+0 | |
3457 movff xC+1,xA+1 | |
3458 movff char_I_O2_ratio,xB+0 | |
3459 clrf xB+1 | |
3460 call mult16x16 ; xC:2=char_I_O2_ratio * p_amb/10 | |
3461 | |
3462 movff xC+0,sub_b+0 | |
3463 movff xC+1,sub_b+1 | |
3464 movff ppO2_setpoint_store,WREG; Setpoint | |
3465 mullw d'100' ; Setpoint*100 | |
3466 movff PRODL,sub_a+0 | |
3467 movff PRODH,sub_a+1 | |
3468 call sub16 ; sub_c = sub_a - sub_b | |
3469 | |
3470 btfss neg_flag | |
681 | 3471 bra DISP_const_ppO2_value11 ; Value in range (lower then fix Setpoint) |
26 | 3472 |
3473 ; char_I_const_ppO2 < ppO2[Diluent] -> Not physically possible! -> Display actual value! | |
3474 | |
406
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3475 movff xC+0,xA+0 ; xC=p_amb/10 |
26 | 3476 movff xC+1,xA+1 |
3477 movlw d'100' | |
3478 movwf xB+0 | |
3479 clrf xB+1 | |
406
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3480 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
|
3481 |
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3482 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
|
3483 movff xC+1,hi ; For test if ppO2>2,55bar |
138 | 3484 |
406
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3485 GETCUSTOM8 d'39' ; Adjust fixed SP? |
138 | 3486 dcfsnz WREG,F |
681 | 3487 bra DISP_const_ppO2_value1a ; Yes! |
138 | 3488 ; Do not adjust -> restore original SetPoint |
26 | 3489 |
681 | 3490 DISP_const_ppO2_value11: |
26 | 3491 ; Setpoint in possible limits |
4 | 3492 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
|
3493 clrf hi |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3494 |
681 | 3495 DISP_const_ppO2_value1a: |
4 | 3496 movff char_I_const_ppO2,lo |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3497 |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3498 movff lo,WREG ; copy to WREG |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3499 mullw .100 |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3500 movff PRODH,xC+1 |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3501 movff PRODL,xC+0 ; For color code |
681 | 3502 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
|
3503 |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3504 tstfsz hi ; >2,55bar? |
681 | 3505 rcall DISP_const_ppO2_too_hi ; Yes |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3506 |
0 | 3507 bsf leftbind |
3508 output_16dp d'3' | |
3509 bcf leftbind | |
406
2534277be060
Bug #52 fixed (ppO2 blinking if setpoint is not physically possible)
heinrichsweikamp
parents:
403
diff
changeset
|
3510 STRCAT_PRINT " " ; Display Setpoint with trailing zero |
681 | 3511 call DISP_standard_color ; Reset color |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3512 return |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3513 |
681 | 3514 DISP_const_ppO2_too_hi: |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
382
diff
changeset
|
3515 PUTC '>' |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3516 setf lo ; show ">2.55" |
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
324
diff
changeset
|
3517 clrf hi ; clear hi |
681 | 3518 call DISP_warnings_color ; Set Warning color |
0 | 3519 return |
3520 | |
307 | 3521 ;============================================================================= |
3522 ; Display EAD/END computed in calc_hauptroutine_update_tissues() every 2sec. | |
3523 ; | |
681 | 3524 DISP_show_end_ead_divemode: |
3525 call DISP_divemask_color ; Set Color for Divemode mask | |
307 | 3526 |
3527 WIN_FONT FT_SMALL | |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3528 WIN_LEFT .95 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3529 WIN_TOP .192 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3530 lfsr FSR2,letter |
307 | 3531 OUTPUTTEXTH .299 ; EAD: |
326 | 3532 call word_processor |
307 | 3533 |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3534 WIN_TOP .216 |
326 | 3535 lfsr FSR2,letter |
307 | 3536 OUTPUTTEXTH .298 ; END: |
326 | 3537 call word_processor |
3538 | |
681 | 3539 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
|
3540 WIN_LEFT .125 |
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3541 WIN_TOP .192 |
326 | 3542 lfsr FSR2,letter |
3543 movff char_O_EAD,lo | |
3544 bsf leftbind | |
307 | 3545 output_8 ; Print EAD w/o leading space. |
446 | 3546 STRCAT_PRINT TXT_METER2 |
307 | 3547 |
274
a728b4a1b660
Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents:
256
diff
changeset
|
3548 WIN_TOP .216 |
326 | 3549 lfsr FSR2,letter |
3550 movff char_O_END,lo | |
307 | 3551 output_8 ; Print END w/o leading space. |
326 | 3552 bcf leftbind |
446 | 3553 STRCAT_PRINT TXT_METER2 |
326 | 3554 |
3555 ; Show ppO2[Flush] iff in CCR mode & not in Bailout: | |
3556 btfsc is_bailout ; In bailout mode? | |
307 | 3557 return ; Yes: done. |
3558 | |
326 | 3559 btfss FLAG_const_ppO2_mode ; In (true) CCR mode ? |
307 | 3560 return ; No: done. |
3561 | |
301 | 3562 WIN_LEFT .95 |
3563 WIN_TOP .168 | |
681 | 3564 call DISP_divemask_color ; Set Color for Divemode mask |
446 | 3565 STRCPY_PRINT TXT_PPO2_5 ; ppO2 of diluent |
326 | 3566 |
3567 movff char_O_flush_ppO2,WREG ; copy to WREG | |
3568 mullw .100 | |
3569 movff PRODH,xC+1 | |
3570 movff PRODL,xC+0 ; For color code | |
681 | 3571 DISP_color_code warn_ppo2 ; Color-code output (ppO2 stored in xC) |
301 | 3572 |
3573 WIN_LEFT .130 | |
3574 WIN_TOP .168 | |
322 | 3575 |
3576 movff char_O_flush_ppO2, lo | |
3577 incf lo,W ; ppO2 == 2.55 ? | |
681 | 3578 bnz DISP_show_end_ead_divemode_1 |
326 | 3579 |
322 | 3580 STRCPY_PRINT "----" ; YES: mark overflow. |
681 | 3581 goto DISP_standard_color ; Back to white. |
3582 | |
3583 DISP_show_end_ead_divemode_1: | |
301 | 3584 lfsr FSR2,letter |
307 | 3585 clrf hi |
301 | 3586 bsf leftbind |
307 | 3587 output_16dp d'3' ; Show ppO2 w/o leading zero |
301 | 3588 bcf leftbind |
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 |
682 | 3742 WIN_LEFT .159-.70 ; 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 |