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