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