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