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