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