Mercurial > public > hwos_code
annotate src/tft_outputs.asm @ 249:94bf757690cf
ignore sensor for non-sensor hardware
author | heinrichsweikamp |
---|---|
date | Tue, 17 Mar 2015 12:16:15 +0100 |
parents | afe73e1a0181 |
children | 20e3bad0b0f2 |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File tft_outputs.asm | |
4 ; | |
5 ; Startup subroutines | |
6 ; | |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-08-07 : [mH] moving from OSTC code | |
11 | |
12 #include "ostc3.inc" ; Mandatory header | |
13 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c | |
14 #include "tft.inc" | |
15 #include "wait.inc" | |
16 #include "strings.inc" | |
17 #include "convert.inc" | |
18 #include "varargs.inc" | |
19 #include "math.inc" | |
20 #include "isr.inc" | |
21 #include "eeprom_rs232.inc" | |
22 #include "adc_lightsensor.inc" | |
23 #include "surfmode.inc" | |
24 #include "divemode.inc" | |
25 #include "external_flash.inc" | |
26 #include "ghostwriter.inc" | |
27 #include "customview.inc" | |
28 #include "i2c.inc" | |
50 | 29 #include "colorschemes.inc" |
229 | 30 #include "calibrate.inc" |
0 | 31 |
32 extern aa_wordprocessor | |
33 | |
34 ;============================================================================= | |
35 | |
36 gui CODE | |
37 ;============================================================================= | |
38 | |
39 global TFT_divemask_color | |
40 TFT_divemask_color: | |
50 | 41 movlw color_green |
42 btfsc divemode ; in Divemode? | |
43 rcall TFT_divemask_color_dive | |
44 bra TFT_standard_color0 | |
45 | |
46 TFT_divemask_color_dive: | |
47 movff opt_dive_color_scheme,WREG ; 0-3 | |
48 incf WREG | |
49 dcfsnz WREG | |
50 bra TFT_divemask_colordive0 ;0 | |
51 dcfsnz WREG | |
52 bra TFT_divemask_colordive1 ;1 | |
53 dcfsnz WREG | |
54 bra TFT_divemask_colordive2 ;2 | |
55 dcfsnz WREG | |
56 bra TFT_divemask_colordive3 ;3 | |
57 TFT_divemask_colordive0: | |
58 movlw color_scheme_divemode_mask1 | |
59 return | |
60 TFT_divemask_colordive1: | |
61 movlw color_scheme_divemode_mask2 | |
62 return | |
63 TFT_divemask_colordive2: | |
64 movlw color_scheme_divemode_mask3 | |
65 return | |
66 TFT_divemask_colordive3: | |
67 movlw color_scheme_divemode_mask4 | |
68 return | |
69 | |
70 | |
71 global TFT_attention_color | |
72 TFT_attention_color: | |
73 movlw color_yellow | |
0 | 74 bra TFT_standard_color0 |
75 | |
76 global TFT_warnings_color | |
77 TFT_warnings_color: | |
78 movlw color_red ; TODO | |
79 bra TFT_standard_color0 | |
80 | |
81 global TFT_disabled_color | |
82 TFT_disabled_color: | |
83 movlw color_grey ; Default to OSTC grey (dark blue) | |
87 | 84 btfsc divemode ; in Divemode? |
85 rcall TFT_disabled_color_dive | |
0 | 86 bra TFT_standard_color0 |
87 | 87 TFT_disabled_color_dive: |
88 movff opt_dive_color_scheme,WREG ; 0-3 | |
89 incf WREG | |
90 dcfsnz WREG | |
91 bra TFT_disabled_colordive0 ;0 | |
92 dcfsnz WREG | |
93 bra TFT_disabled_colordive1 ;1 | |
94 dcfsnz WREG | |
95 bra TFT_disabled_colordive2 ;2 | |
96 dcfsnz WREG | |
97 bra TFT_disabled_colordive3 ;3 | |
98 TFT_disabled_colordive0: | |
99 movlw color_scheme_divemode_dis1 | |
100 return | |
101 TFT_disabled_colordive1: | |
102 movlw color_scheme_divemode_dis2 | |
103 return | |
104 TFT_disabled_colordive2: | |
105 movlw color_scheme_divemode_dis3 | |
106 return | |
107 TFT_disabled_colordive3: | |
108 movlw color_scheme_divemode_dis4 | |
109 return | |
0 | 110 |
111 global TFT_standard_color | |
112 TFT_standard_color: | |
87 | 113 setf WREG ; Default white |
50 | 114 btfsc divemode ; in Divemode? |
115 rcall TFT_standard_color_dive | |
0 | 116 TFT_standard_color0: |
117 call TFT_set_color | |
118 return | |
50 | 119 TFT_standard_color_dive: |
120 movff opt_dive_color_scheme,WREG ; 0-3 | |
121 incf WREG | |
122 dcfsnz WREG | |
123 bra TFT_standard_colordive0 ;0 | |
124 dcfsnz WREG | |
125 bra TFT_standard_colordive1 ;1 | |
126 dcfsnz WREG | |
127 bra TFT_standard_colordive2 ;2 | |
128 dcfsnz WREG | |
129 bra TFT_standard_colordive3 ;3 | |
130 TFT_standard_colordive0: | |
131 movlw color_scheme_divemode_std1 | |
132 return | |
133 TFT_standard_colordive1: | |
134 movlw color_scheme_divemode_std2 | |
135 return | |
136 TFT_standard_colordive2: | |
137 movlw color_scheme_divemode_std3 | |
138 return | |
139 TFT_standard_colordive3: | |
140 movlw color_scheme_divemode_std4 | |
141 return | |
0 | 142 |
143 TFT_color_code macro color_code_temp | |
144 movlw color_code_temp | |
145 call TFT_color_code1 | |
146 endm | |
147 | |
148 global TFT_color_code1 | |
149 TFT_color_code1: ; Color-codes the output, if required | |
150 dcfsnz WREG | |
151 bra TFT_color_code_depth ; depth_warn_mbar [mbar], 16Bit | |
152 dcfsnz WREG | |
153 bra TFT_color_code_cns ; color_code_cns_high [%] | |
154 dcfsnz WREG | |
155 bra TFT_color_code_gf ; color_code_gf_warn_high [%] | |
156 dcfsnz WREG | |
157 bra TFT_color_code_ppo2 ; Color-code the OC ppO2 results [cbar], opt_ppO2_max as threshold | |
158 dcfsnz WREG | |
159 bra TFT_color_code_velocity ; color_code_velocity_warn_high [m/min] | |
160 dcfsnz WREG | |
161 bra TFT_color_code_ceiling ; Show warning if current depth>shown ceiling | |
162 dcfsnz WREG | |
163 bra TFT_color_code_gaslist ; Color-code current row in Gaslist (%O2 in hi), opt_ppO2_max as threshold | |
164 dcfsnz WREG | |
165 bra TFT_color_code_ppo2_hud ; Color-code the hud ppO2 readings [cbar], opt_ppO2_max as threshold | |
166 dcfsnz WREG | |
167 bra TFT_color_code_battery ; Color-code the battery display | |
168 | |
169 TFT_color_code_gaslist: ; %O2 in hi | |
170 ; Check very high ppO2 manually | |
171 SAFE_2BYTE_COPY amb_pressure,xA | |
172 movlw d'10' | |
173 movwf xB+0 | |
174 clrf xB+1 | |
175 call div16x16 ; xC=p_amb/10 | |
176 movff xC+0,xA+0 | |
177 movff xC+1,xA+1 | |
178 movff hi,xB+0 | |
179 clrf xB+1 | |
180 call mult16x16 ; lo * p_amb/10 | |
181 ; Check if ppO2>6,55bar | |
182 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
183 bra TFT_warnings_color ; Yes, warn in warning color |
0 | 184 ; Check if ppO2>3,30bar |
185 btfsc xC+1,7 | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
186 bra TFT_warnings_color ; Yes, warn in warning color |
0 | 187 |
188 ; Check for low ppo2 | |
189 movff xC+0,sub_a+0 | |
190 movff xC+1,sub_a+1 | |
191 movff opt_ppO2_min,WREG | |
192 mullw d'100' ; opt_ppO2_min*100 | |
193 movff PRODL,sub_b+0 | |
194 movff PRODH,sub_b+1 | |
195 call subU16 | |
196 btfsc neg_flag | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
197 bra TFT_warnings_color ; too low -> Warning Color! |
0 | 198 |
199 ; Check for high ppo2 | |
200 movff opt_ppO2_max,WREG ; PPO2 Max for MOD calculation and color coding in divemode | |
201 mullw d'100' ; opt_ppO2_max*100 | |
202 movff PRODL,sub_b+0 | |
203 movff PRODH,sub_b+1 | |
204 call subU16 ; sub_c = sub_a - sub_b | |
205 btfss neg_flag | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
206 bra TFT_warnings_color ; too high -> Warning Color! |
0 | 207 return |
208 | |
209 TFT_color_code_ceiling: | |
210 SAFE_2BYTE_COPY rel_pressure, lo | |
211 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
212 movff hi,xA+1 | |
213 movff lo,xA+0 | |
214 movff char_O_first_deco_depth,lo ; Ceiling in m | |
215 decf lo,F ; -1 | |
216 movlw LOW d'100' | |
217 movwf xB+0 | |
218 clrf xB+1 ; Devide/100 -> xC+0 = Depth in m | |
219 call div16x16 ; xA/xB=xC with xA as remainder | |
220 movf xC+0,W ; Depth in m | |
221 subwf lo,W | |
222 btfsc STATUS,C | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
223 bra TFT_warnings_color ; Set to warning color |
0 | 224 call TFT_standard_color |
225 return | |
226 | |
227 TFT_color_code_depth: | |
228 movff hi,hi_temp | |
229 movff lo,lo_temp | |
230 SAFE_2BYTE_COPY rel_pressure, lo | |
231 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
232 movff lo,sub_a+0 | |
233 movff hi,sub_a+1 | |
234 movlw LOW depth_warn_mbar | |
235 movwf lo | |
236 movlw HIGH depth_warn_mbar | |
237 movwf hi | |
238 movff lo,sub_b+0 | |
239 movff hi,sub_b+1 | |
240 movff hi_temp,hi | |
241 movff lo_temp,lo ; Restore hi, lo | |
242 call subU16 ; sub_c = sub_a - sub_b | |
243 btfss neg_flag | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
244 bra TFT_warnings_color ; Set to warning color |
0 | 245 call TFT_standard_color |
246 return | |
247 | |
248 TFT_color_code_cns: | |
249 movff int_O_CNS_fraction+1,lo ; copy into bank1 | |
250 tstfsz lo ; >255% ? | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
251 bra TFT_warnings_color ; Yes |
0 | 252 movff int_O_CNS_fraction+0,lo |
253 movlw color_code_cns_high ; CNS Warn [%] | |
254 subwf lo,W | |
255 btfsc STATUS,C | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
256 bra TFT_warnings_color ; Set to warning color |
0 | 257 call TFT_standard_color |
258 return | |
259 | |
260 TFT_color_code_gf: | |
261 movff char_O_gradient_factor,lo ; gradient factor | |
262 movlw color_code_gf_warn_high ; GF Warn [%] | |
263 subwf lo,W | |
264 btfsc STATUS,C | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
265 bra TFT_warnings_color ; Set to warning color |
0 | 266 call TFT_standard_color |
267 return | |
268 | |
269 TFT_color_code_ppo2: | |
270 ; Check if ppO2>6,55bar | |
271 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
272 bra TFT_warnings_color ; Yes, warn in warning color |
0 | 273 ; Check if ppO2>3,30bar |
274 btfsc xC+1,7 | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
275 bra TFT_warnings_color ; Yes, warn in warning color |
0 | 276 |
277 movff xC+0,sub_a+0 | |
278 movff xC+1,sub_a+1 | |
279 movff opt_ppO2_max,WREG ; PPO2 Max for MOD calculation and color coding in divemode | |
280 mullw d'100' | |
281 movff PRODL,sub_b+0 | |
282 movff PRODH,sub_b+1 | |
283 call subU16 ; sub_c = sub_a - sub_b | |
284 btfss neg_flag | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
285 bra TFT_warnings_color ; Set to warning color |
0 | 286 |
287 movff xC+0,sub_a+0 | |
288 movff xC+1,sub_a+1 | |
289 movff opt_ppO2_min,WREG ; PPO2 min for Sensors and color coding in divemode | |
290 mullw d'100' | |
291 movff PRODL,sub_b+0 | |
292 movff PRODH,sub_b+1 | |
293 call subU16 ; sub_c = sub_a - sub_b | |
294 btfsc neg_flag | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
295 bra TFT_warnings_color ; Set to warning color |
0 | 296 call TFT_standard_color |
297 return | |
298 | |
299 TFT_color_code_velocity: | |
52 | 300 btfss neg_flag ; Ignore for descent! |
0 | 301 bra TFT_color_code_velocity1 ; Skip check! |
302 movff divA+0,lo | |
303 movlw color_code_velocity_warn_high ; Velocity warn [m/min] | |
304 subwf lo,W | |
305 btfsc STATUS,C | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
306 bra TFT_warnings_color ; Set to warning color |
0 | 307 TFT_color_code_velocity1: |
308 call TFT_standard_color | |
309 return | |
310 | |
311 TFT_color_code_ppo2_hud: ; With ppO2 [cbar] in lo | |
312 movff opt_ppO2_max,WREG ; PPO2 Max for MOD calculation and color coding in divemode | |
313 cpfsgt lo ; lo > opt_ppO2_max? | |
314 bra TFT_color_code_ppo2_hud1; No | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
315 bra TFT_warnings_color ; Yes |
0 | 316 TFT_color_code_ppo2_hud1: |
317 movff opt_ppO2_min,WREG ; PPO2 min for Sensors and color coding in divemode | |
318 cpfslt lo ; lo < opt_ppO2_min? | |
319 bra TFT_color_code_ppo2_hud2; No | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
320 bra TFT_warnings_color ; Yes |
0 | 321 TFT_color_code_ppo2_hud2: |
322 call TFT_standard_color | |
323 return | |
324 | |
325 TFT_color_code_battery: ; With battery percent in lo | |
326 movlw color_code_battery_low | |
327 cpfsgt lo ; lo < color_code_battery_low ? | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
328 bra TFT_warnings_color ; No |
0 | 329 call TFT_standard_color |
330 return | |
331 | |
332 ; **************************************************************************** | |
333 | |
234
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
334 global TFT_show_OC_startgas_surface |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
335 TFT_show_OC_startgas_surface: ; Show first gas and "OSTC2-like" active gases |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
336 ; Show first gas |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
337 WIN_SMALL surf_decotype_column+.1,surf_decotype_row+.30 |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
338 extern get_first_gas_to_WREG,gaslist_strcat_gas |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
339 call get_first_gas_to_WREG ; Gets first gas (0-4) into WREG |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
340 movwf PRODL |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
341 call gaslist_strcat_gas ; Input: PRODL : gas number (0..4), Output: Text appended into buffer pointed by FSR2. |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
342 STRCAT_PRINT "" |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
343 ; Show boxes |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
344 WIN_TOP surf_decotype_row+.30+.25 |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
345 WIN_LEFT surf_decotype_boxes_left1+.1 |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
346 rcall TFT_disabled_color |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
347 movff opt_gas_type+0,hi ; 0=Disabled, 1=First, 2=Travel, 3=Deco |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
348 tstfsz hi |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
349 rcall TFT_standard_color |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
350 STRCPY_PRINT "1" |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
351 decfsz hi,F ; Type = 1 (First)? |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
352 bra DISP_active_gas_surfmode3 ; No, skip box |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
353 WIN_FRAME_STD surf_decotype_boxes_top, surf_decotype_boxes_bottom, surf_decotype_boxes_left1, surf_decotype_boxes_left1+.8 ;top, bottom, left, right |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
354 DISP_active_gas_surfmode3: |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
355 rcall TFT_disabled_color |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
356 movff opt_gas_type+1,hi ; 0=Disabled, 1=First, 2=Travel, 3=Deco |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
357 tstfsz hi |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
358 rcall TFT_standard_color |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
359 WIN_LEFT surf_decotype_boxes_left2+.1 |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
360 STRCPY_PRINT "2" |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
361 decfsz hi,F ; Type = 1 (First)? |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
362 bra DISP_active_gas_surfmode4 ; No, skip box |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
363 WIN_FRAME_STD surf_decotype_boxes_top, surf_decotype_boxes_bottom, surf_decotype_boxes_left2, surf_decotype_boxes_left2+.8 ;top, bottom, left, right |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
364 DISP_active_gas_surfmode4: |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
365 rcall TFT_disabled_color |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
366 movff opt_gas_type+2,hi ; 0=Disabled, 1=First, 2=Travel, 3=Deco |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
367 tstfsz hi |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
368 rcall TFT_standard_color |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
369 WIN_LEFT surf_decotype_boxes_left3+.1 |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
370 STRCPY_PRINT "3" |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
371 decfsz hi,F ; Type = 1 (First)? |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
372 bra DISP_active_gas_surfmode5 ; No, skip box |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
373 WIN_FRAME_STD surf_decotype_boxes_top, surf_decotype_boxes_bottom, surf_decotype_boxes_left3, surf_decotype_boxes_left3+.8 ;top, bottom, left, right |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
374 DISP_active_gas_surfmode5: |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
375 rcall TFT_disabled_color |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
376 movff opt_gas_type+3,hi ; 0=Disabled, 1=First, 2=Travel, 3=Deco |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
377 tstfsz hi |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
378 rcall TFT_standard_color |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
379 WIN_LEFT surf_decotype_boxes_left4+.1 |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
380 STRCPY_PRINT "4" |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
381 decfsz hi,F ; Type = 1 (First)? |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
382 bra DISP_active_gas_surfmode6 ; No, skip box |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
383 WIN_FRAME_STD surf_decotype_boxes_top, surf_decotype_boxes_bottom, surf_decotype_boxes_left4, surf_decotype_boxes_left4+.8 ;top, bottom, left, right |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
384 DISP_active_gas_surfmode6: |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
385 call TFT_disabled_color |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
386 movff opt_gas_type+4,hi ; 0=Disabled, 1=First, 2=Travel, 3=Deco |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
387 tstfsz hi |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
388 rcall TFT_standard_color |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
389 WIN_LEFT surf_decotype_boxes_left5+.1 |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
390 STRCPY_PRINT "5" |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
391 rcall TFT_standard_color ; Reset color |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
392 decfsz hi,F ; Type = 1 (First)? |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
393 return ; no, Done. |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
394 WIN_FRAME_STD surf_decotype_boxes_top, surf_decotype_boxes_bottom, surf_decotype_boxes_left5, surf_decotype_boxes_left5+.8 ;top, bottom, left, right |
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
395 return ; Done. |
50 | 396 |
397 global TFT_show_color_schemes | |
398 TFT_show_color_schemes: ; update the color schemes | |
399 bsf divemode ; put in divemode | |
400 call TFT_divemask_color | |
401 WIN_TINY divemode_mask_depth_column,divemode_mask_depth_row+.40 | |
402 STRCAT_TEXT_PRINT tDepth | |
403 WIN_TINY divemode_mask_maxdepth_column,divemode_mask_maxdepth_row+.40 | |
404 STRCAT_TEXT_PRINT tMaxDepth | |
405 WIN_TINY divemode_mask_divetime_column,divemode_mask_divetime_row+.40 | |
406 STRCAT_TEXT_PRINT tDivetime | |
407 | |
408 ; Show some demo screen | |
409 | |
410 ; Depth demo | |
411 call TFT_standard_color | |
412 WIN_MEDIUM depth_column+.3,depth_row+.40 | |
413 movlw LOW .5172 | |
414 movwf lo | |
415 movlw HIGH .5172 | |
416 movwf hi | |
417 bsf leftbind | |
418 bsf ignore_digit4 | |
419 output_16 ; Full meters in Big font | |
420 bcf leftbind | |
421 STRCAT_PRINT "" ; Display full meters | |
422 WIN_SMALL depth_dm_column-.15,max_depth_dm_row+.40 | |
423 movlw LOW .5172 | |
424 movwf lo | |
425 movlw HIGH .5172 | |
426 movwf hi | |
427 PUTC "." | |
428 movlw d'4' | |
429 movwf ignore_digits | |
430 bsf ignore_digit5 | |
431 output_16dp d'0' ; .1m in SMALL font | |
432 STRCAT_PRINT "" ; Display decimeters | |
433 WIN_FONT FT_SMALL | |
434 | |
435 ; Max. Depth demo | |
436 WIN_MEDIUM max_depth_column,max_depth_row+.40 | |
437 bsf ignore_digit4 ; no 0.1m | |
438 bsf leftbind | |
439 movlw LOW .6349 | |
440 movwf lo | |
441 movlw HIGH .6349 | |
442 movwf hi | |
443 output_16 | |
444 STRCAT_PRINT "" ; Display full meters | |
445 bcf leftbind | |
446 ; .1m in SMALL font | |
447 WIN_SMALL max_depth_dm_column,max_depth_dm_row+.40 | |
448 PUTC "." | |
449 movlw d'4' | |
450 movwf ignore_digits | |
451 bsf ignore_digit5 | |
452 bsf leftbind | |
453 movlw LOW .6349 | |
454 movwf lo | |
455 movlw HIGH .6349 | |
456 movwf hi | |
457 output_16dp d'0' | |
458 STRCAT_PRINT "" ; Display decimeters | |
459 bcf leftbind | |
460 | |
461 ; Divetime demo | |
462 movff mins,lo | |
463 clrf hi | |
464 WIN_MEDIUM divetime_column, divetime_row+.40 | |
225
31088352ee32
BUGFIX: Show dives with >999mins divetime correctly
heinrichsweikamp
parents:
220
diff
changeset
|
465 output_16_3 ; limit to 999 and display only (0-999) |
50 | 466 STRCAT_PRINT "" ; Show minutes in large font |
467 WIN_SMALL divetime_secs_column, divetime_secs_row+.40 ; left position for two sec figures | |
468 PUTC ':' | |
469 bsf leftbind | |
470 movff secs,lo | |
471 output_99x | |
472 bcf leftbind | |
473 STRCAT_PRINT "" ; Show seconds in small font | |
474 | |
475 bcf divemode ; don't stay in divemode | |
476 return | |
477 | |
0 | 478 global TFT_divemode_mask |
479 TFT_divemode_mask: ; Displays mask in Dive-Mode | |
480 call TFT_divemask_color | |
481 WIN_TINY divemode_mask_depth_column,divemode_mask_depth_row | |
482 STRCAT_TEXT_PRINT tDepth | |
483 WIN_TINY divemode_mask_maxdepth_column,divemode_mask_maxdepth_row | |
484 STRCAT_TEXT_PRINT tMaxDepth | |
485 WIN_TINY divemode_mask_divetime_column,divemode_mask_divetime_row | |
486 STRCAT_TEXT_PRINT tDivetime | |
487 | |
488 call TFT_standard_color | |
489 return | |
490 | |
491 global TFT_clear_customview_divemode | |
492 TFT_clear_customview_divemode: | |
493 WIN_BOX_BLACK divemode_customview_row, .163, .0, .159 ; top, bottom, left, right | |
494 return | |
495 | |
496 global TFT_display_velocity | |
497 TFT_display_velocity: ; With divA+0 = m/min | |
498 TFT_color_code warn_velocity ; Color-code Output (With divA+0 = m/min) | |
499 WIN_SMALL velocity_text_column,velocity_text_row | |
500 | |
501 TSTOSS opt_units ; 0=Meters, 1=Feets | |
502 bra TFT_display_velocity_metric | |
503 ;TFT_display_velocity_imperial: | |
504 movff divA+0,WREG ; divA+0 = m/min | |
505 mullw .100 ; PRODL:PRODH = mbar/min | |
506 movff PRODL,lo | |
507 movff PRODH,hi | |
508 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
509 movlw '-' | |
510 btfsc neg_flag | |
511 movlw '+' | |
512 movwf POSTINC2 | |
513 bsf leftbind | |
514 output_16 | |
515 bcf leftbind | |
516 STRCAT_TEXT_PRINT tVelImperial ; Unit switch | |
517 call TFT_standard_color | |
518 return | |
519 | |
520 TFT_display_velocity_metric: | |
521 movff divA+0,lo ; divA+0 = m/min | |
522 movlw '-' | |
523 btfsc neg_flag | |
524 movlw '+' | |
525 movwf POSTINC2 | |
526 output_99 | |
527 STRCAT_TEXT_PRINT tVelMetric ; Unit switch | |
528 call TFT_standard_color | |
529 return | |
530 | |
531 global TFT_display_velocity_clear | |
532 TFT_display_velocity_clear: | |
533 ; Clear Text | |
534 WIN_BOX_BLACK velocity_text_row, velocity_text_row+.22, velocity_text_column, (velocity_text_column+.7*.8)-1 ; top, bottom, left, right | |
535 return | |
536 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
537 global TFT_clear_decoarea |
0 | 538 TFT_clear_decoarea: |
539 WIN_BOX_BLACK decostop_1st_stop_row, .239, decostop_1st_stop_column ,.159 ; top, bottom, left, right | |
540 return | |
541 | |
542 global TFT_clear_divemode_menu | |
543 TFT_clear_divemode_menu: | |
544 WIN_BOX_BLACK divemode_menu_row, divemode_menu_lower, divemode_menu_left ,divemode_menu_right ; top, bottom, left, right | |
545 return | |
546 | |
547 global TFT_display_ndl_mask | |
548 TFT_display_ndl_mask: | |
549 btfsc divemode_menu ; Is the dive mode menu shown? | |
550 return ; Yes, return | |
551 rcall TFT_clear_decoarea ; Clear Dekostop and Dekosum | |
552 call TFT_divemask_color | |
553 WIN_STD ndl_text_column,ndl_text_row | |
554 STRCPY_TEXT_PRINT tNDL ; NDL | |
555 call TFT_standard_color | |
556 return | |
557 | |
558 global TFT_show_TTS_divemode | |
559 TFT_show_TTS_divemode: | |
560 btfsc divemode_menu ; Is the dive mode menu shown? | |
561 return ; Yes, return | |
562 call TFT_standard_color | |
563 movff int_O_ascenttime+0,lo ; TTS | |
564 movff int_O_ascenttime+1,hi ; on 16bits | |
565 WIN_MEDIUM tts_value_column,tts_value_row | |
566 output_16_3 ;Displays only 0...999 | |
567 STRCAT_PRINT "'" | |
568 return | |
569 | |
570 global TFT_display_ndl | |
571 TFT_display_ndl: | |
572 btfsc divemode_menu ; Is the dive mode menu shown? | |
573 return ; Yes, return | |
574 WIN_MEDIUM ndl_value_column,ndl_value_row | |
575 call TFT_standard_color | |
576 movff char_O_nullzeit,lo ; Get NDL from C-code | |
577 output_8 | |
578 STRCAT_PRINT "'" | |
579 return | |
580 | |
581 global TFT_divemode_warning | |
582 TFT_divemode_warning: | |
583 bsf dive_warning_displayed ; =1: The warning sign is shown | |
584 WIN_TOP warning_icon_row | |
585 WIN_LEFT warning_icon_column | |
586 TFT_WRITE_PROM_IMAGE dive_warning_block ; Show Warning icon | |
587 ; movlw .3 | |
588 ; cpfslt warning_counter ; More then two warnings? | |
589 ; rcall TFT_divemode_warning_counter ; Yes, show the number | |
590 return | |
591 | |
592 ;TFT_divemode_warning_counter: | |
593 ; WIN_SMALL warning_icon_column+.8,warning_icon_row+.13 | |
594 ; call TFT_warnings_color | |
595 ; movff warning_counter,lo | |
596 ; bsf leftbind | |
597 ; output_8 | |
598 ; bcf leftbind | |
599 ; STRCAT_PRINT "" | |
600 ; call TFT_standard_color | |
601 ; return | |
602 | |
603 global TFT_divemode_warning_clear | |
604 TFT_divemode_warning_clear: | |
605 btfss dive_warning_displayed ; =1: The warning sign is shown | |
606 return | |
607 bcf dive_warning_displayed ; clear only once | |
608 WIN_BOX_BLACK warning_icon_row, warning_icon_row+.38, warning_icon_column, warning_icon_column+.21; top, bottom, left, right | |
609 return | |
610 | |
611 global TFT_display_deko_mask | |
612 TFT_display_deko_mask: | |
613 rcall TFT_clear_decoarea | |
614 WIN_STD tts_text_column,tts_text_row | |
615 call TFT_divemask_color | |
616 STRCPY_TEXT_PRINT tTTS ; TTS | |
617 call TFT_standard_color | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
618 bcf show_safety_stop ; Clear safety stop flag |
0 | 619 return |
620 | |
621 TFT_display_deko_output_depth: ; Outputs depth (stored in lo) to POSTINC2 with "m" or w/o (For ft) | |
622 TSTOSS opt_units ; 0=m, 1=ft | |
623 bra TFT_display_deko_output_metric | |
624 ;TFT_display_deko_output_imperial: | |
625 movf lo,W ; lo = m | |
626 mullw .100 ; PRODL:PRODH = mbar | |
627 movff PRODL,lo | |
628 movff PRODH,hi | |
629 ; Convert with 334feet/100m to have 10ft, 20ft, 30ft stops... | |
630 movff lo,xA+0 | |
631 movff hi,xA+1 | |
632 movlw LOW d'334' ; 334feet/100m | |
633 movwf xB+0 | |
634 movlw HIGH d'334' | |
635 movwf xB+1 | |
636 call mult16x16 ; xA*xB=xC (lo:hi * 328) | |
637 movlw d'50' ; round up | |
638 addwf xC+0,F | |
639 movlw 0 | |
640 addwfc xC+1,F | |
641 addwfc xC+2,F | |
642 addwfc xC+3,F | |
643 movlw d'100' | |
644 movwf xB+0 | |
645 clrf xB+1 | |
646 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
647 movff xC+0,lo | |
648 movff xC+1,hi ; restore lo and hi with updated value | |
649 bcf leftbind | |
650 bsf ignore_digit4 ; Only full feet | |
651 output_16 | |
652 STRCAT_TEXT tFeets1 | |
653 return | |
654 | |
655 TFT_display_deko_output_metric: | |
656 output_99 | |
657 STRCAT_TEXT tMeters | |
658 PUTC ' ' | |
659 return | |
660 | |
661 global TFT_display_deko | |
662 TFT_display_deko: | |
663 btfsc divemode_menu ; Is the dive mode menu shown? | |
664 return ; Yes, return | |
665 WIN_MEDIUM decostop_1st_stop_column,decostop_1st_stop_row | |
666 TFT_color_code warn_ceiling ; Color-code Output | |
667 movff char_O_first_deco_depth,lo ; Ceiling in m | |
668 rcall TFT_display_deko_output_depth ; Outputs depth (stored in lo) to POSTINC2 with "m" or w/o (For ft) | |
669 movff char_O_first_deco_time,lo ; length of first stop in min | |
670 output_99 | |
671 STRCAT_PRINT "'" | |
672 call TFT_standard_color | |
673 return | |
674 | |
675 global TFT_decoplan | |
676 TFT_decoplan: | |
677 call TFT_divemask_color | |
678 WIN_TINY decoplan_title_column,decoplan_title_row | |
679 STRCPY_TEXT_PRINT tDiveDecoplan | |
680 call TFT_standard_color | |
681 | |
682 movff char_O_deco_depth+1,lo | |
683 tstfsz lo ; Show another stop? | |
684 bra TFT_display_deko2 ; Yes | |
685 ; No, clear output and return | |
686 call TFT_standard_color | |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
96
diff
changeset
|
687 WIN_SMALL decostop_4th_stop_column,decostop_4th_stop_row |
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
96
diff
changeset
|
688 STRCPY_PRINT " --- " |
0 | 689 WIN_BOX_BLACK decostop_2nd_stop_row, divemode_simtext_row-1, decostop_2nd_stop_column, decostop_4th_stop_column ; top, bottom, left, right |
690 WIN_BOX_BLACK decostop_5th_stop_row, divemode_simtext_row-1, decostop_5th_stop_column, decostop_6th_stop_column ; top, bottom, left, right | |
691 WIN_BOX_BLACK decostop_6th_stop_row, divemode_simtext_row-1, decostop_6th_stop_column, .159 ; top, bottom, left, right | |
692 return | |
693 TFT_display_deko2: | |
694 WIN_SMALL decostop_2nd_stop_column,decostop_2nd_stop_row | |
695 movff char_O_deco_depth+1,lo ; stop in m | |
696 bcf lo,7 ; Clear GAS_SWITCH bit | |
697 rcall TFT_display_deko_output_depth ; Outputs depth (stored in lo) to POSTINC2 with "m" or w/o (For ft) | |
698 movff char_O_deco_time+1,lo ; length of stop in min | |
699 output_99 | |
700 STRCAT_PRINT "'" | |
701 movff char_O_deco_depth+2,lo | |
702 tstfsz lo ; Show another stop? | |
703 bra TFT_display_deko3 ; Yes | |
704 ; No, clear output and return | |
705 WIN_BOX_BLACK decostop_3rd_stop_row, divemode_simtext_row-1, decostop_2nd_stop_column, decostop_4th_stop_column ; top, bottom, left, right | |
706 WIN_BOX_BLACK decostop_4th_stop_row, divemode_simtext_row-1, decostop_4th_stop_column, .159 ; top, bottom, left, right | |
707 return | |
708 | |
709 TFT_display_deko3: | |
710 WIN_SMALL decostop_3rd_stop_column,decostop_3rd_stop_row | |
711 movff char_O_deco_depth+2,lo ; stop in m | |
712 bcf lo,7 ; Clear GAS_SWITCH bit | |
713 rcall TFT_display_deko_output_depth ; Outputs depth (stored in lo) to POSTINC2 with "m" or w/o (For ft) | |
714 movff char_O_deco_time+2,lo ; length of stop in min | |
715 output_99 | |
716 STRCAT_PRINT "'" | |
717 | |
718 movff char_O_deco_depth+3,lo | |
719 tstfsz lo ; Show another stop? | |
720 bra TFT_display_deko4 ; Yes | |
721 ; No, clear output and return | |
722 WIN_BOX_BLACK decostop_4th_stop_row, divemode_simtext_row-1, decostop_4th_stop_column, .159 ; top, bottom, left, right | |
723 return ; Done. | |
724 | |
725 TFT_display_deko4: | |
726 WIN_SMALL decostop_4th_stop_column,decostop_4th_stop_row | |
727 movff char_O_deco_depth+3,lo ; stop in m | |
728 bcf lo,7 ; Clear GAS_SWITCH bit | |
729 rcall TFT_display_deko_output_depth ; Outputs depth (stored in lo) to POSTINC2 with "m" or w/o (For ft) | |
730 movff char_O_deco_time+3,lo ; length of stop in min | |
731 output_99 | |
732 STRCAT_PRINT "'" | |
733 | |
734 movff char_O_deco_depth+4,lo | |
735 tstfsz lo ; Show another stop? | |
736 bra TFT_display_deko5 ; Yes | |
737 ; No, clear output and return | |
738 WIN_BOX_BLACK decostop_5th_stop_row, divemode_simtext_row-1, decostop_5th_stop_column, decostop_6th_stop_column ; top, bottom, left, right | |
739 WIN_BOX_BLACK decostop_6th_stop_row, divemode_simtext_row-1, decostop_6th_stop_column, .159 ; top, bottom, left, right | |
740 return ; Done. | |
741 | |
742 TFT_display_deko5: | |
743 WIN_SMALL decostop_5th_stop_column,decostop_5th_stop_row | |
744 movff char_O_deco_depth+4,lo ; stop in m | |
745 bcf lo,7 ; Clear GAS_SWITCH bit | |
746 rcall TFT_display_deko_output_depth ; Outputs depth (stored in lo) to POSTINC2 with "m" or w/o (For ft) | |
747 movff char_O_deco_time+4,lo ; length of stop in min | |
748 output_99 | |
749 STRCAT_PRINT "'" | |
750 movff char_O_deco_depth+5,lo | |
751 tstfsz lo ; Show another stop? | |
752 bra TFT_display_deko6 ; Yes | |
753 ; No, clear output and return | |
754 WIN_BOX_BLACK decostop_6th_stop_row, divemode_simtext_row-1, decostop_6th_stop_column, .159 ; top, bottom, left, right | |
755 return ; Done. | |
756 TFT_display_deko6: | |
757 WIN_SMALL decostop_6th_stop_column,decostop_6th_stop_row | |
758 movff char_O_deco_depth+5,lo ; stop in m | |
759 bcf lo,7 ; Clear GAS_SWITCH bit | |
760 rcall TFT_display_deko_output_depth ; Outputs depth (stored in lo) to POSTINC2 with "m" or w/o (For ft) | |
761 movff char_O_deco_time+5,lo ; length of stop in min | |
762 output_99 | |
763 STRCAT_PRINT "'" | |
764 movff char_O_deco_depth+6,lo | |
765 tstfsz lo ; Show another stop? | |
766 bra TFT_display_deko7 ; Yes | |
767 ; No, clear output and return | |
768 WIN_BOX_BLACK decostop_7th_stop_row, divemode_simtext_row-1, decostop_7th_stop_column, .159 ; top, bottom, left, right | |
769 return ; Done. | |
770 TFT_display_deko7: | |
771 WIN_SMALL decostop_7th_stop_column,decostop_7th_stop_row | |
772 movff char_O_deco_depth+6,lo ; stop in m | |
773 bcf lo,7 ; Clear GAS_SWITCH bit | |
774 rcall TFT_display_deko_output_depth ; Outputs depth (stored in lo) to POSTINC2 with "m" or w/o (For ft) | |
775 movff char_O_deco_time+6,lo ; length of stop in min | |
776 output_99 | |
777 STRCAT_PRINT "'" | |
778 return ; Done. | |
779 | |
780 ;TFT_display_deko1: | |
781 ; movff char_O_gradient_factor,lo ; gradient factor | |
782 ; movlw gf_display_threshold ; threshold for display | |
783 ; cpfslt lo ; show value? | |
784 ; bra TFT_display_deko2 ; Yes | |
785 ; ; No | |
786 ; bra TFT_display_ndl_mask2 ; Clear gradient factor | |
787 ; | |
788 | |
131 | 789 global TFT_clear_safety_stop |
790 TFT_clear_safety_stop: | |
791 WIN_BOX_BLACK safetystop_text_row, ndl_text_row-.4, safetystop_text_column, .159 ; top, bottom, left, right | |
792 return | |
793 | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
794 global TFT_show_safety_stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
795 TFT_show_safety_stop: |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
796 tstfsz safety_stop_countdown ; Countdown at zero? |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
797 bra TFT_show_safety_stop2 ; No, show stop |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
798 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
799 bcf show_safety_stop ; Clear flag |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
800 |
131 | 801 btfss safety_stop_active ; Displayed? |
802 return ; No | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
803 bcf safety_stop_active ; Clear flag |
131 | 804 btfsc divemode_menu ; Is the dive mode menu shown? |
805 return ; Yes, return | |
806 rcall TFT_clear_safety_stop ; Yes, Clear stop | |
807 return | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
808 |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
809 TFT_show_safety_stop2: |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
810 bsf safety_stop_active ; Set flag |
131 | 811 decf safety_stop_countdown,F ; Reduce countdown |
812 | |
813 btfsc divemode_menu ; Is the dive mode menu shown? | |
814 return ; Yes, return | |
815 btfsc menuview | |
816 bra TFT_show_safety_stop3 ; No room when menuview=1... | |
817 | |
818 rcall TFT_divemask_color | |
819 WIN_STD safetystop_text_column,safetystop_text_row | |
820 STRCPY_TEXT_PRINT tDiveSafetyStop | |
821 TFT_show_safety_stop3: | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
822 rcall TFT_attention_color ; show in yellow |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
823 WIN_MEDIUM safetystop_column,safetystop_row |
131 | 824 lfsr FSR2,buffer |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
825 movff safety_stop_countdown,lo |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
826 clrf hi |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
827 call convert_time ; converts hi:lo in seconds to mins (hi) and seconds (lo) |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
828 movf hi,W |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
829 movff lo,hi |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
830 movwf lo ; exchange lo and hi |
131 | 831 bsf leftbind |
832 output_8 | |
833 bcf leftbind | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
834 PUTC ':' |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
835 movff hi,lo |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
836 output_99x |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
837 STRCAT_PRINT "" |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
838 WIN_FONT FT_SMALL |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
839 rcall TFT_standard_color |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
840 return |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
841 |
0 | 842 global TFT_mask_avr_stopwatch ; Show mask for average depth and stopwatch |
843 TFT_mask_avr_stopwatch: | |
844 ; The mask | |
845 call TFT_divemask_color | |
846 WIN_TINY dive_custom_avr_stop_column1,dive_custom_avr_stop_row | |
847 STRCPY_TEXT_PRINT tDiveTotalAvr | |
848 WIN_TINY dive_custom_avr_stop_column2,dive_custom_avr_stop_row | |
849 STRCPY_TEXT_PRINT tDiveStopwatch | |
850 WIN_TINY dive_custom_avr_stop_column3,dive_custom_avr_stop_row | |
851 STRCPY_TEXT_PRINT tDiveStopAvr | |
852 call TFT_standard_color | |
853 return | |
854 | |
53
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
855 global TFT_dyn_gaslist |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
856 TFT_dyn_gaslist: ; Show the dynamic gaslist |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
857 ; The mask |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
858 call TFT_divemask_color |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
859 WIN_TINY dive_custom_dyn_mask_column,dive_custom_dyn_mask_row |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
860 STRCPY_TEXT_PRINT tGaslist |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
861 call TFT_standard_color |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
862 |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
863 WIN_SMALL dive_custom_dyn_mask_column1,dive_custom_dyn_mask_row1 |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
864 movlw .1 |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
865 movwf temp1 |
139 | 866 bsf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint |
54 | 867 rcall TFT_dyn_gaslist_common |
53
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
868 WIN_SMALL dive_custom_dyn_mask_column1,dive_custom_dyn_mask_row2 |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
869 incf temp1,F ; +1 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
870 movf temp1,W ; into W |
54 | 871 rcall TFT_dyn_gaslist_common |
53
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
872 WIN_SMALL dive_custom_dyn_mask_column2,dive_custom_dyn_mask_row1 |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
873 incf temp1,F ; +1 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
874 movf temp1,W ; into W |
54 | 875 rcall TFT_dyn_gaslist_common |
53
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
876 WIN_SMALL dive_custom_dyn_mask_column2,dive_custom_dyn_mask_row2 |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
877 incf temp1,F ; +1 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
878 movf temp1,W ; into W |
54 | 879 rcall TFT_dyn_gaslist_common |
880 call TFT_standard_color | |
881 return | |
882 | |
883 TFT_dyn_gaslist_common: | |
53
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
884 cpfseq active_gas ;1-5 |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
885 bra $+4 |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
886 incf temp1,F ; +1 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
887 movff temp1,lo |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
888 movff temp1,PRODL |
53
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
889 decf PRODL,F ;-1 to have 0-4 |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
890 bsf leftbind |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
891 output_8 ; Gas number |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
892 bcf leftbind |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
893 PUTC ":" |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
894 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
895 PUTC " " ; Clearing space |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
896 movlw 0x00 |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
897 movff WREG,buffer+.11 ; limit to 11 chars |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
898 STRCAT_PRINT "" |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
899 return |
2825f1d2262f
NEW: Dynamic Gaslist in OC mode (Divemode, Customview 7)
heinrichsweikamp
parents:
52
diff
changeset
|
900 |
54 | 901 |
0 | 902 global TFT_update_avr_stopwatch ; Update average depth and stopwatch |
903 TFT_update_avr_stopwatch: | |
904 call TFT_standard_color | |
905 SAFE_2BYTE_COPY average_divesecs,lo | |
906 call convert_time ; lo=secs, hi=mins | |
907 WIN_MEDIUM dive_avr_stop_column2,dive_avr_stop_row | |
908 bsf leftbind | |
909 movf hi,W | |
910 movff lo,hi | |
911 movwf lo ; exchange lo and hi | |
912 output_8 | |
913 PUTC ':' | |
914 movff hi,lo | |
915 output_99x | |
916 movlw .5 | |
917 call TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
918 clrf WREG | |
919 movff WREG,buffer+.5 ; limit to 5 chars | |
920 STRCAT_PRINT "" | |
921 | |
922 TSTOSS opt_units ; 0=m, 1=ft | |
923 bra TFT_update_avr_stopwatch_metric | |
924 ;TFT_update_avr_stopwatch_imperial | |
925 movff avr_rel_pressure_total+0,lo | |
926 movff avr_rel_pressure_total+1,hi | |
927 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
928 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
929 WIN_MEDIUM dive_avr_stop_column1,dive_avr_stop_row | |
930 bsf leftbind | |
931 output_16 ; yxz | |
932 STRCAT_PRINT " " | |
933 ; Stopped average depth | |
934 movff avr_rel_pressure+0,lo | |
935 movff avr_rel_pressure+1,hi | |
936 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
937 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
938 WIN_MEDIUM dive_avr_stop_column3,dive_avr_stop_row | |
939 output_16 ; yxz | |
940 bcf leftbind | |
941 STRCAT_PRINT " " | |
942 return | |
943 | |
944 TFT_update_avr_stopwatch_metric: | |
945 ; Non-resettable average depth | |
946 movff avr_rel_pressure_total+0,lo | |
947 movff avr_rel_pressure_total+1,hi | |
948 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
949 WIN_MEDIUM dive_avr_stop_column1,dive_avr_stop_row | |
950 bsf ignore_digit5 ; no cm | |
951 output_16dp .3 ; yxz.a | |
231
834e1c35160c
BUGFIX: Show average depth with one decimal digit only
mh@mh-THINK
parents:
229
diff
changeset
|
952 STRCAT_PRINT " " |
0 | 953 ; Stopped average depth |
954 movff avr_rel_pressure+0,lo | |
955 movff avr_rel_pressure+1,hi | |
956 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
957 WIN_MEDIUM dive_avr_stop_column3,dive_avr_stop_row | |
958 bsf ignore_digit5 ; no cm | |
959 output_16dp .3 ; yxz.a | |
960 bcf leftbind | |
961 bcf ignore_digit5 | |
231
834e1c35160c
BUGFIX: Show average depth with one decimal digit only
mh@mh-THINK
parents:
229
diff
changeset
|
962 STRCAT_PRINT " " |
0 | 963 return |
964 | |
123 | 965 global TFT_ceiling_mask ; The ceiling mask |
966 TFT_ceiling_mask: | |
967 call TFT_divemask_color | |
968 WIN_TINY dive_ceiling_text_column,dive_ceiling_text_row | |
969 STRCPY_TEXT_PRINT tCeiling | |
970 call TFT_standard_color | |
971 return | |
972 | |
973 global TFT_ceiling ; Ceiling | |
974 TFT_ceiling: | |
975 call TFT_standard_color | |
976 WIN_MEDIUM dive_ceiling_value_column,dive_ceiling_value_row | |
977 movff int_O_ceiling+0,lo | |
978 movff int_O_ceiling+1,hi | |
979 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
980 bsf leftbind | |
981 TSTOSS opt_units ; 0=m, 1=ft | |
982 bra TFT_ceiling_metric | |
983 ;TFT_ceiling_imperial | |
984 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
985 output_16 ; yxz | |
986 bcf leftbind | |
987 STRCAT_PRINT " " | |
988 return | |
989 | |
990 TFT_ceiling_metric: | |
991 bsf ignore_digit5 ; no cm | |
992 output_16dp .3 ; yxz.a | |
993 bcf leftbind | |
994 bcf ignore_digit5 | |
995 STRCAT_PRINT " " | |
996 return | |
997 | |
0 | 998 global TFT_hud_mask ; The HUD mask |
999 TFT_hud_mask: | |
1000 call TFT_divemask_color | |
1001 WIN_TINY dive_custom_hud_column1,dive_custom_hud_row | |
1002 STRCPY_TEXT_PRINT tDiveHudMask1 | |
1003 WIN_TINY dive_custom_hud_column2,dive_custom_hud_row | |
1004 STRCPY_TEXT_PRINT tDiveHudMask2 | |
1005 WIN_TINY dive_custom_hud_column3,dive_custom_hud_row | |
1006 STRCPY_TEXT_PRINT tDiveHudMask3 | |
1007 call TFT_standard_color | |
1008 return | |
1009 | |
102
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1010 global TFT_hud_voltages |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1011 TFT_hud_voltages: ; Show HUD details |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1012 WIN_SMALL .5,dive_hud_data_row |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1013 call TFT_standard_color |
192 | 1014 btfss use_O2_sensor1 |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1015 call TFT_warnings_color |
102
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1016 movff o2_mv_sensor1+0,lo |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1017 movff o2_mv_sensor1+1,hi |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1018 bsf leftbind |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1019 output_16dp .4 ; x.xx |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1020 bcf leftbind |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1021 STRCAT_PRINT "mV " |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1022 WIN_SMALL .55,dive_hud_data_row |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1023 call TFT_standard_color |
192 | 1024 btfss use_O2_sensor2 |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1025 call TFT_warnings_color |
102
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1026 movff o2_mv_sensor2+0,lo |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1027 movff o2_mv_sensor2+1,hi |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1028 bsf leftbind |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1029 output_16dp .4 ; x.xx |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1030 bcf leftbind |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1031 STRCAT_PRINT "mV " |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1032 WIN_SMALL .105,dive_hud_data_row |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1033 call TFT_standard_color |
192 | 1034 btfss use_O2_sensor3 |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1035 call TFT_warnings_color |
102
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1036 movff o2_mv_sensor3+0,lo |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1037 movff o2_mv_sensor3+1,hi |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1038 bsf leftbind |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1039 output_16dp .4 ; x.xx |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1040 bcf leftbind |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1041 STRCAT_PRINT "mV " |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1042 call TFT_standard_color |
102
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1043 return |
37275e0fa7f5
NEW: Show End-of-Dive time together with clock during deco
heinrichsweikamp
parents:
99
diff
changeset
|
1044 |
192 | 1045 global TFT_update_ppo2_sensors ; Update Sensor data |
1046 TFT_update_ppo2_sensors: | |
0 | 1047 ; show three sensors |
1048 bsf leftbind | |
192 | 1049 btfsc use_O2_sensor1 ; Use Sensor 1? |
1050 bra TFT_update_hud1 ; Yes | |
0 | 1051 btfss dive_hud1_displayed ; Was the sensor shown? |
1052 bra TFT_update_hud2 ; Yes, skip clear | |
1053 bcf dive_hud1_displayed ; No, clear display flag | |
192 | 1054 WIN_BOX_BLACK dive_hud_data_row, dive_hud_data_row+.31, dive_hud_sensor1_column, dive_hud_sensor2_column ; top, bottom, left, right |
0 | 1055 WIN_STD dive_hud_sensor1_column+.7,dive_hud_data_row+.5 |
1056 call TFT_standard_color | |
1057 STRCPY_PRINT "---" | |
1058 bra TFT_update_hud2 ; Skip Sensor 1 | |
1059 TFT_update_hud1: | |
1060 WIN_MEDIUM dive_hud_sensor1_column,dive_hud_data_row | |
192 | 1061 movff o2_ppo2_sensor1,lo |
0 | 1062 TFT_color_code warn_ppo2_hud ; With ppO2 [cbar] in lo |
192 | 1063 btfss voting_logic_sensor1 ; Sensor within voting logic? |
1064 bsf win_invert ; No, invert output... | |
1065 btfss voting_logic_sensor1 | |
1066 call TFT_warnings_color ; ... and draw in red | |
0 | 1067 clrf hi |
1068 output_16dp .3 ; x.xx bar | |
1069 STRCAT_PRINT "" | |
192 | 1070 bcf win_invert |
0 | 1071 bsf dive_hud1_displayed ; Set display flag |
1072 TFT_update_hud2: | |
192 | 1073 btfsc use_O2_sensor2 ; Use Sensor 2? |
1074 bra TFT_update_hud3 ; Yes | |
0 | 1075 btfss dive_hud2_displayed ; Was the sensor shown? |
1076 bra TFT_update_hud4 ; Yes, skip clear | |
1077 bcf dive_hud2_displayed ; No, clear display flag | |
192 | 1078 WIN_BOX_BLACK dive_hud_data_row, dive_hud_data_row+.31, dive_hud_sensor2_column, dive_hud_sensor3_column ; top, bottom, left, right |
0 | 1079 WIN_STD dive_hud_sensor2_column+.7,dive_hud_data_row+.5 |
1080 call TFT_standard_color | |
1081 STRCPY_PRINT "---" | |
1082 bra TFT_update_hud4 ; Skip Sensor 2 | |
1083 TFT_update_hud3: | |
1084 WIN_MEDIUM dive_hud_sensor2_column,dive_hud_data_row | |
192 | 1085 movff o2_ppo2_sensor2,lo |
0 | 1086 TFT_color_code warn_ppo2_hud ; With ppO2 [cbar] in lo |
192 | 1087 btfss voting_logic_sensor2 ; Sensor within voting logic? |
1088 bsf win_invert ; No, invert output... | |
1089 btfss voting_logic_sensor2 | |
1090 call TFT_warnings_color ; ... and draw in red | |
0 | 1091 clrf hi |
1092 output_16dp .3 ; x.xx bar | |
1093 STRCAT_PRINT "" | |
192 | 1094 bcf win_invert |
0 | 1095 bsf dive_hud2_displayed ; Set display flag |
1096 TFT_update_hud4: | |
192 | 1097 btfsc use_O2_sensor3 ; Use Sensor 3? |
1098 bra TFT_update_hud5 ; Yes | |
0 | 1099 btfss dive_hud3_displayed ; Was the sensor shown? |
1100 bra TFT_update_hud6 ; Yes, skip clear | |
1101 bcf dive_hud3_displayed ; No, clear display flag | |
192 | 1102 WIN_BOX_BLACK dive_hud_data_row, dive_hud_data_row+.31, dive_hud_sensor3_column, .159 ; top, bottom, left, right |
0 | 1103 WIN_STD dive_hud_sensor3_column+.7,dive_hud_data_row+.5 |
1104 call TFT_standard_color | |
1105 STRCPY_PRINT "---" | |
1106 bra TFT_update_hud6 ; Skip Sensor 3 | |
1107 TFT_update_hud5: | |
1108 WIN_MEDIUM dive_hud_sensor3_column,dive_hud_data_row | |
192 | 1109 movff o2_ppo2_sensor3,lo |
0 | 1110 TFT_color_code warn_ppo2_hud ; With ppO2 [cbar] in lo |
192 | 1111 btfss voting_logic_sensor3 ; Sensor within voting logic? |
1112 bsf win_invert ; No, invert output... | |
1113 btfss voting_logic_sensor3 | |
1114 call TFT_warnings_color ; ... and draw in red | |
0 | 1115 clrf hi |
1116 output_16dp .3 ; x.xx bar | |
1117 STRCAT_PRINT "" | |
192 | 1118 bcf win_invert |
0 | 1119 bsf dive_hud3_displayed ; Set display flag |
1120 TFT_update_hud6: | |
1121 bcf leftbind | |
1122 call TFT_standard_color | |
1123 return | |
1124 | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1125 global TFT_surface_sensor ; Update Sensor data in surface mode |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1126 TFT_surface_sensor: |
249 | 1127 movf hardware_flag,W |
1128 sublw 0x11 ; 2 with BLE | |
1129 btfsc STATUS,Z | |
1130 return ; Ignore for 0x11 | |
1131 | |
0 | 1132 ; show three sensors |
1133 bsf leftbind | |
1134 WIN_SMALL surf_hud_sensor1_column,surf_hud_sensor1_row | |
192 | 1135 btfsc use_O2_sensor1 ; Use Sensor 1? |
1136 bra TFT_surface_sensor1 ; Yes | |
0 | 1137 call TFT_standard_color |
1138 STRCPY_PRINT "--- " | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1139 bra TFT_surface_sensor2 ; Skip Sensor 1 |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1140 TFT_surface_sensor1: |
192 | 1141 movff o2_ppo2_sensor1,lo |
0 | 1142 TFT_color_code warn_ppo2_hud ; With ppO2 [cbar] in lo |
1143 clrf hi | |
1144 output_16dp .3 ; x.xx bar | |
1145 STRCAT_PRINT "" | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1146 TFT_surface_sensor2: |
0 | 1147 WIN_SMALL surf_hud_sensor2_column,surf_hud_sensor2_row |
192 | 1148 btfsc use_O2_sensor2 ; Use Sensor 2? |
1149 bra TFT_surface_sensor3 ; Yes | |
0 | 1150 call TFT_standard_color |
1151 STRCPY_PRINT "--- " | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1152 bra TFT_surface_sensor4 ; Skip Sensor 2 |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1153 TFT_surface_sensor3: |
192 | 1154 movff o2_ppo2_sensor2,lo |
0 | 1155 TFT_color_code warn_ppo2_hud ; With ppO2 [cbar] in lo |
1156 clrf hi | |
1157 output_16dp .3 ; x.xx bar | |
1158 STRCAT_PRINT "" | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1159 TFT_surface_sensor4: |
0 | 1160 WIN_SMALL surf_hud_sensor3_column,surf_hud_sensor3_row |
192 | 1161 btfsc use_O2_sensor3 ; Use Sensor 3? |
1162 bra TFT_surface_sensor5 ; Yes | |
0 | 1163 call TFT_standard_color |
1164 STRCPY_PRINT "--- " | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1165 bra TFT_surface_sensor6 ; Skip Sensor 3 |
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1166 TFT_surface_sensor5: |
192 | 1167 movff o2_ppo2_sensor3,lo |
0 | 1168 TFT_color_code warn_ppo2_hud ; With ppO2 [cbar] in lo |
1169 clrf hi | |
1170 output_16dp .3 ; x.xx bar | |
1171 STRCAT_PRINT "" | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1172 TFT_surface_sensor6: |
0 | 1173 bcf leftbind |
1174 call TFT_standard_color | |
1175 return | |
1176 | |
1177 global TFT_menu_hud | |
1178 TFT_menu_hud: ; Yes, update HUD data | |
247
5968af2839a4
BUGFIX: Always update CCR sensor data in Sensor-Menu
heinrichsweikamp
parents:
239
diff
changeset
|
1179 call compute_ppo2 ; compute mv_sensorX and ppo2_sensorX arrays |
50 | 1180 call TFT_attention_color ; show in yellow |
0 | 1181 bsf leftbind |
1182 WIN_SMALL surf_menu_sensor1_column,surf_menu_sensor1_row | |
1183 movff o2_ppo2_sensor1,lo | |
1184 clrf hi | |
1185 output_16dp .3 ; x.xx bar | |
1186 PUTC "," | |
1187 movff o2_mv_sensor1+0,lo ; in 0.1mV steps | |
1188 movff o2_mv_sensor1+1,hi ; in 0.1mV steps | |
1189 output_16dp .4 ; xxx.y mV | |
1190 STRCAT_PRINT "mV " | |
1191 WIN_SMALL surf_menu_sensor2_column,surf_menu_sensor2_row | |
1192 movff o2_ppo2_sensor2,lo | |
1193 clrf hi | |
1194 output_16dp .3 ; x.xx bar | |
1195 PUTC "," | |
1196 movff o2_mv_sensor2+0,lo ; in 0.1mV steps | |
1197 movff o2_mv_sensor2+1,hi ; in 0.1mV steps | |
1198 output_16dp .4 ; xxx.y mV | |
1199 STRCAT_PRINT "mV " | |
1200 WIN_SMALL surf_menu_sensor3_column,surf_menu_sensor3_row | |
1201 movff o2_ppo2_sensor3,lo | |
1202 clrf hi | |
1203 output_16dp .3 ; x.xx bar | |
1204 PUTC "," | |
1205 movff o2_mv_sensor3+0,lo ; in 0.1mV steps | |
1206 movff o2_mv_sensor3+1,hi ; in 0.1mV steps | |
1207 output_16dp .4 ; xxx.y mV | |
1208 STRCAT_PRINT "mV " | |
1209 WIN_SMALL surf_menu_sensor4_column,surf_menu_sensor4_row | |
113 | 1210 |
236 | 1211 btfss analog_o2_input |
113 | 1212 bra TFT_menu_hud_2 ; always for normal OSTC3 |
1213 btfss s8_digital | |
1214 return ; Not for analog | |
1215 TFT_menu_hud_2: | |
0 | 1216 STRCPY "Batt:" |
1217 movff hud_battery_mv+0,lo ; in mV | |
1218 movff hud_battery_mv+1,hi ; in mV | |
1219 output_16dp .2 ; x.yyy V | |
1220 STRCAT_PRINT "V" | |
1221 call TFT_standard_color | |
1222 bcf leftbind | |
1223 return | |
1224 | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
180
diff
changeset
|
1225 global TFT_menu_calibrate |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
180
diff
changeset
|
1226 TFT_menu_calibrate: ; update mV data in calibration menu |
229 | 1227 call compute_ppo2 ; compute mv_sensorX and ppo2_sensorX arrays |
113 | 1228 call TFT_attention_color ; show in yellow |
1229 bsf leftbind | |
1230 WIN_SMALL surf_menu_sensor1_column,surf_menu2_sensor1_row | |
1231 movff o2_mv_sensor1+0,lo ; in 0.1mV steps | |
1232 movff o2_mv_sensor1+1,hi ; in 0.1mV steps | |
1233 output_16dp .4 ; xxx.y mV | |
1234 STRCAT_PRINT "mV " | |
1235 WIN_SMALL surf_menu_sensor2_column,surf_menu2_sensor2_row | |
1236 movff o2_mv_sensor2+0,lo ; in 0.1mV steps | |
1237 movff o2_mv_sensor2+1,hi ; in 0.1mV steps | |
1238 output_16dp .4 ; xxx.y mV | |
1239 STRCAT_PRINT "mV " | |
1240 WIN_SMALL surf_menu_sensor3_column,surf_menu2_sensor3_row | |
1241 movff o2_mv_sensor3+0,lo ; in 0.1mV steps | |
1242 movff o2_mv_sensor3+1,hi ; in 0.1mV steps | |
1243 output_16dp .4 ; xxx.y mV | |
1244 STRCAT_PRINT "mV " | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
180
diff
changeset
|
1245 ; WIN_SMALL surf_menu2_ambient_column,surf_menu2_ambient_row |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
180
diff
changeset
|
1246 ; PUTC "@" |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
180
diff
changeset
|
1247 ; SAFE_2BYTE_COPY amb_pressure, lo |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
180
diff
changeset
|
1248 ; output_16 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
180
diff
changeset
|
1249 ; STRCAT_TEXT tMBAR ; mbar |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
180
diff
changeset
|
1250 ; STRCAT_PRINT " " |
113 | 1251 call TFT_standard_color |
1252 bcf leftbind | |
1253 return | |
1254 | |
0 | 1255 global TFT_clock |
1256 TFT_clock: | |
48 | 1257 WIN_SMALL surf_clock_column,surf_clock_row |
0 | 1258 TFT_clock2: ; called from divemode clock |
1259 call TFT_standard_color | |
1260 movff hours,lo | |
1261 output_99 | |
1262 movlw ':' | |
1263 btfss secs,0 ; blinking every second | |
1264 movlw ' ' | |
1265 movwf POSTINC2 | |
1266 movff mins,lo | |
1267 output_99x | |
1268 STRCAT_PRINT "" | |
1269 return | |
1270 | |
1271 global TFT_show_time_date_menu | |
1272 TFT_show_time_date_menu: | |
1273 call speed_fastest | |
1274 WIN_SMALL .15,.30 | |
1275 call TFT_standard_color | |
1276 movff hours,lo | |
1277 output_99 | |
1278 PUTC ':' | |
1279 movff mins,lo | |
1280 output_99x | |
1281 PUTC ':' | |
1282 movff secs,lo | |
1283 output_99x | |
1284 STRCAT " - " | |
1285 movff month,convert_value_temp+0 | |
1286 movff day,convert_value_temp+1 | |
1287 movff year,convert_value_temp+2 | |
1288 call TFT_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
1289 STRCAT_PRINT " " | |
1290 return | |
1291 ;============================================================================= | |
1292 | |
1293 global TFT_interval | |
1294 TFT_interval: | |
1295 call TFT_warning_set_window ; Sets the row and column for the current warning | |
1296 tstfsz WREG ; Is there room for the warning? | |
1297 return ; No | |
1298 STRCPY "Int:" | |
1299 movff surface_interval+0,lo | |
1300 movff surface_interval+1,hi | |
1301 call convert_time ; lo=mins, hi=hours | |
1302 movf hi,W | |
1303 movff lo,hi | |
1304 movwf lo ; exchange lo and hi | |
1305 output_99x | |
1306 PUTC ':' | |
1307 movff hi,lo | |
1308 output_99x | |
1309 movlw surf_warning_length ; No, use surface string length | |
1310 call TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
1311 STRCAT_PRINT "" | |
1312 return | |
1313 | |
1314 global TFT_compass_fast | |
1315 TFT_compass_fast: | |
1316 WIN_TINY .20,.50 | |
1317 STRCPY "X:" | |
1318 movff compass_DX+0,lo | |
1319 movff compass_DX+1,hi | |
1320 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required | |
1321 output_16 | |
1322 STRCAT " Y:" | |
1323 movff compass_DY+0,lo | |
1324 movff compass_DY+1,hi | |
1325 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required | |
1326 output_16 | |
1327 STRCAT " Z:" | |
1328 movff compass_DZ+0,lo | |
1329 movff compass_DZ+1,hi | |
1330 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required | |
1331 output_16 | |
1332 STRCAT_PRINT " " | |
1333 return | |
1334 | |
94
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1335 global TFT_show_timeout_testmode |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1336 TFT_show_timeout_testmode: ; With timeout in WREG... |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1337 movwf hi |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1338 WIN_TINY .20,.68 |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1339 STRCPY "T:" |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1340 movf timeout_counter2,W ; current timeout |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1341 subwf hi,W ; subtract from timeout value |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1342 addlw .1 ; +1 |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1343 movwf lo |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1344 bsf leftbind |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1345 output_8 ; Display timeout |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1346 bcf leftbind |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1347 STRCAT_PRINT "s " |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1348 return |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1349 |
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1350 |
90
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1351 global TFT_compass_show_gain |
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1352 TFT_compass_show_gain: ; Show the current compass gain |
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1353 movff opt_compass_gain,lo ; 0-7 (230LSB/Gauss to 1370LSB/Gaus) |
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1354 tstfsz lo |
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1355 return ; Do not show unless gain=0 |
94
f2201aa374db
BUGFIX: compass calibration does now timeout automatically after 60s
heinrichsweikamp
parents:
90
diff
changeset
|
1356 WIN_TINY .20,.86 |
90
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1357 STRCPY_TEXT tCompassGain |
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1358 movff opt_compass_gain,lo ; 0-7 (230LSB/Gauss to 1370LSB/Gaus) |
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1359 bsf leftbind |
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1360 output_8 |
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1361 bcf leftbind |
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1362 STRCAT_PRINT "!" |
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1363 return |
3274e87fd027
NEW: automatic compass gain makes calibration quicker
heinrichsweikamp
parents:
88
diff
changeset
|
1364 |
41 | 1365 global TFT_surface_decosettings ; Show all deco settings |
1366 TFT_surface_decosettings: | |
1367 ; Deco Mode | |
1368 call TFT_standard_color | |
1369 movff char_I_deco_model,WREG | |
1370 iorwf WREG | |
1371 bnz TFT_surface_decosettings1 | |
1372 | |
1373 ; Display ZH-L16 sat/desat model. | |
1374 TEXT_SMALL surf_gaslist_column,surf_gaslist_row, tZHL16 | |
122
3e84e2a64188
Show %'s for non-GF deco model in surface mode
heinrichsweikamp
parents:
118
diff
changeset
|
1375 WIN_TOP surf_gaslist_row+(surf_gaslist_spacing*.1) |
41 | 1376 lfsr FSR2,buffer |
1377 movff char_I_desaturation_multiplier,lo | |
1378 bsf leftbind | |
1379 output_8 | |
1380 STRCAT "%/" | |
1381 movff char_I_saturation_multiplier,lo | |
1382 output_8 | |
1383 STRCAT_PRINT "%" | |
1384 bra TFT_surface_decosettings2 | |
1385 | |
1386 ; Display ZH-L16-GF low/high model. | |
1387 TFT_surface_decosettings1: | |
1388 TEXT_SMALL surf_gaslist_column,surf_gaslist_row, tZHL16GF | |
1389 WIN_TOP surf_gaslist_row+(surf_gaslist_spacing*.1) | |
42 | 1390 STRCPY_TEXT tGF ; GF: |
41 | 1391 movff char_I_GF_Low_percentage,lo |
1392 output_99x | |
42 | 1393 STRCAT "/" |
41 | 1394 movff char_I_GF_High_percentage,lo |
1395 output_99x | |
42 | 1396 STRCAT_PRINT "" |
41 | 1397 ;bra TFT_surface_decosettings2 |
1398 TFT_surface_decosettings2: | |
1399 ; FTTS | |
1400 WIN_TOP surf_gaslist_row+(surf_gaslist_spacing*.2) | |
1401 STRCPY_TEXT tFTTSMenu | |
1402 movff char_I_extra_time,lo | |
1403 bsf leftbind | |
1404 output_8 | |
1405 STRCAT_TEXT_PRINT tMinutes | |
1406 | |
1407 ; Last Stop | |
1408 WIN_TOP surf_gaslist_row+(surf_gaslist_spacing*.3) | |
1409 STRCPY_TEXT tLastDecostop | |
1410 movff char_I_depth_last_deco,lo | |
1411 output_8 | |
1412 STRCAT_TEXT_PRINT tMeters | |
1413 | |
1414 ; Salinity | |
1415 WIN_TOP surf_gaslist_row+(surf_gaslist_spacing*.4) | |
1416 STRCPY_TEXT tDvSalinity | |
1417 movff opt_salinity,lo | |
1418 output_8 | |
1419 bcf leftbind | |
1420 STRCAT_TEXT_PRINT tPercent | |
1421 return ; Done. | |
0 | 1422 |
1423 global TFT_surface_compass_mask | |
1424 TFT_surface_compass_mask: | |
1425 WIN_SMALL surf_compass_mask_column,surf_compass_mask_row | |
1426 call TFT_standard_color | |
1427 STRCPY_TEXT_PRINT tHeading ; Heading: | |
1428 return | |
1429 | |
1430 global TFT_dive_compass_mask | |
1431 TFT_dive_compass_mask: | |
249 | 1432 WIN_TINY dive_compass_mask_column,dive_compass_mask_row |
1433 call TFT_divemask_color | |
1434 STRCPY_TEXT_PRINT tHeading ; Heading: | |
0 | 1435 return |
1436 | |
1437 global TFT_surface_compass_heading | |
1438 TFT_surface_compass_heading: | |
1439 rcall compass_heading_common | |
1440 WIN_STD surf_compass_head_column,surf_compass_head_row | |
1441 call TFT_standard_color | |
122
3e84e2a64188
Show %'s for non-GF deco model in surface mode
heinrichsweikamp
parents:
118
diff
changeset
|
1442 TFT_surface_compass_heading_com: ; Show "000° N" |
0 | 1443 movff compass_heading+0,lo |
1444 movff compass_heading+1,hi | |
1445 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required | |
170 | 1446 |
1447 ; Shown and actual identical? | |
1448 movff compass_heading_shown+0,WREG | |
1449 cpfseq lo | |
1450 bra TFT_surface_compass_heading_com1 ; Not equal | |
1451 movff compass_heading_shown+1,WREG | |
1452 cpfseq hi | |
1453 bra TFT_surface_compass_heading_com1 ; Not equal | |
1454 bra TFT_surface_compass_heading_com3 ; equal, skip smoothing | |
1455 | |
1456 TFT_surface_compass_heading_com1: | |
1457 movff lo,sub_a+0 | |
1458 movff hi,sub_a+1 | |
1459 movff compass_heading_shown+0,sub_b+0 | |
1460 movff compass_heading_shown+1,sub_b+1 | |
1461 call subU16 | |
1462 btfsc neg_flag | |
1463 bra TFT_surface_compass_heading_com2 ; shown > actual | |
1464 ; shown < actual | |
1465 banksel compass_heading_shown | |
1466 infsnz compass_heading_shown+0,F | |
1467 incf compass_heading_shown+1,F ; +1 | |
1468 bra TFT_surface_compass_heading_com3 | |
1469 | |
1470 TFT_surface_compass_heading_com2: | |
1471 banksel compass_heading_shown | |
1472 movlw d'1' | |
1473 subwf compass_heading_shown+0,F | |
1474 movlw d'0' | |
1475 subwfb compass_heading_shown+1,F ; -1 | |
1476 | |
1477 TFT_surface_compass_heading_com3: | |
1478 banksel common | |
1479 movff compass_heading_shown+0,lo | |
1480 movff compass_heading_shown+1,hi | |
0 | 1481 bsf leftbind |
118 | 1482 output_16dp .2 ; Result is "0.000" |
0 | 1483 bcf leftbind |
118 | 1484 ; rearrange figures to "000" |
1485 movff buffer+2,buffer+0 | |
1486 movff buffer+3,buffer+1 | |
1487 movff buffer+4,buffer+2 | |
1488 lfsr FSR2,buffer+3 | |
29
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1489 STRCAT "° " |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1490 rcall tft_compass_cardinal ; Add cardinal and ordinal to POSTINC2 |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
1491 clrf WREG |
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
1492 movff WREG,buffer+.7 ; limit to 7 chars |
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
1493 STRCAT_PRINT "" |
0 | 1494 return |
1495 | |
1496 global TFT_dive_compass_heading | |
1497 TFT_dive_compass_heading: | |
1498 rcall compass_heading_common | |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
1499 ; Text output |
0 | 1500 WIN_STD dive_compass_head_column,dive_compass_head_row |
249 | 1501 call TFT_standard_color |
122
3e84e2a64188
Show %'s for non-GF deco model in surface mode
heinrichsweikamp
parents:
118
diff
changeset
|
1502 rcall TFT_surface_compass_heading_com ; Show "000° N" |
249 | 1503 return ; No graphical output (yet) |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
1504 |
29
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1505 tft_compass_cardinal: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1506 btfsc hi,0 ; Heading >255°? |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1507 bra tft_compass_cardinal2 ; Yes must be W, NW or N |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1508 ; No, Must be W, SW, S, SE, E, NE or N |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1509 movlw .23 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1510 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1511 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1512 bra tft_compass_cardinal_N |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1513 movlw .68 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1514 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1515 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1516 bra tft_compass_cardinal_NE |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1517 movlw .113 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1518 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1519 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1520 bra tft_compass_cardinal_E |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1521 movlw .158 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1522 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1523 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1524 bra tft_compass_cardinal_SE |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1525 movlw .203 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1526 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1527 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1528 bra tft_compass_cardinal_S |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1529 movlw .248 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1530 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1531 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1532 bra tft_compass_cardinal_SW |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1533 bra tft_compass_cardinal_W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1534 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1535 tft_compass_cardinal2: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1536 movlw .37 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1537 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1538 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1539 bra tft_compass_cardinal_W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1540 movlw .82 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1541 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1542 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1543 bra tft_compass_cardinal_NW |
239
6c4ad243cb44
CNANGE: aGF pair has same range then normal GF pair
heinrichsweikamp
parents:
236
diff
changeset
|
1544 ; bra tft_compass_cardinal_N |
29
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1545 tft_compass_cardinal_N: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1546 STRCAT_TEXT tN |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1547 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1548 tft_compass_cardinal_NE: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1549 STRCAT_TEXT tNE |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1550 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1551 tft_compass_cardinal_E: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1552 STRCAT_TEXT tE |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1553 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1554 tft_compass_cardinal_SE: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1555 STRCAT_TEXT tSE |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1556 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1557 tft_compass_cardinal_S: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1558 STRCAT_TEXT tS |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1559 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1560 tft_compass_cardinal_SW: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1561 STRCAT_TEXT tSW |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1562 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1563 tft_compass_cardinal_W: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1564 STRCAT_TEXT tW |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1565 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1566 tft_compass_cardinal_NW: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1567 STRCAT_TEXT tNW |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1568 return |
0 | 1569 |
1570 compass_heading_common: | |
191 | 1571 call speed_normal |
214 | 1572 movlw compass_averaging ; numbers of extra averaging |
1573 movwf up | |
1574 compass_heading_common2: | |
0 | 1575 rcall TFT_get_compass |
214 | 1576 decfsz up,F |
1577 bra compass_heading_common2 | |
191 | 1578 extern compass |
0 | 1579 call compass ; Do compass corrections. |
1580 banksel common | |
16
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1581 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1582 ; More then compass_fast_treshold? |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1583 movff compass_heading_old+0,sub_a+0 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1584 movff compass_heading_old+1,sub_a+1 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1585 movff compass_heading+0,sub_b+0 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1586 movff compass_heading+1,sub_b+1 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1587 call sub16 |
214 | 1588 btfss neg_flag ; <0? |
1589 bra compass_heading_common3 ; No, test for threshold | |
1590 ; Yes, subtract the other way round | |
1591 movff compass_heading+0,sub_a+0 | |
1592 movff compass_heading+1,sub_a+1 | |
1593 movff compass_heading_old+0,sub_b+0 | |
1594 movff compass_heading_old+1,sub_b+1 | |
1595 call sub16 | |
1596 compass_heading_common3: | |
16
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1597 movff compass_heading+0,compass_heading_old+0 ; copy new "old" |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1598 movff compass_heading+1,compass_heading_old+1 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1599 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1600 bcf compass_fast_mode |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1601 movlw compass_fast_treshold |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1602 cpfslt sub_c+0 ; > compass_fast_treshold? |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1603 bsf compass_fast_mode ; Yes! |
170 | 1604 |
1605 btfss compass_fast_mode ; In fast mode? | |
1606 return ; No. | |
1607 ; Yes. | |
1608 movff compass_heading+0,lo | |
1609 movff compass_heading+1,hi | |
214 | 1610 rcall TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
170 | 1611 movff lo,compass_heading_shown+0 |
1612 movff hi,compass_heading_shown+1 | |
0 | 1613 return |
1614 | |
1615 TFT_get_compass: | |
1616 call I2C_RX_compass ; Test Compass | |
1617 call I2C_RX_accelerometer ; Test Accelerometer | |
191 | 1618 extern compass_filter |
0 | 1619 call compass_filter ; Filter Raw compass + accel readings. |
1620 banksel common | |
1621 return | |
1622 | |
1623 global TFT_debug_output | |
1624 TFT_debug_output: | |
117 | 1625 return |
113 | 1626 WIN_TINY .80,.0 |
1627 call TFT_standard_color | |
1628 lfsr FSR2,buffer | |
248
afe73e1a0181
support hardware_flag for all possible hardware combinations
heinrichsweikamp
parents:
247
diff
changeset
|
1629 movff hardware_flag,lo |
203 | 1630 output_8 |
0 | 1631 STRCAT_PRINT "" |
123 | 1632 return |
0 | 1633 |
55 | 1634 global TFT_divetimeout ; Show timeout counter |
1635 TFT_divetimeout: | |
1636 call TFT_warning_set_window ; Sets the row and column for the current warning | |
1637 tstfsz WREG ; Is there room for the warning? | |
1638 return ; No | |
1639 | |
1640 call TFT_standard_color | |
1641 STRCPY 0x94 ; "End of dive" icon | |
1642 movlw LOW divemode_timeout | |
1643 movwf sub_a+0 | |
1644 movlw HIGH divemode_timeout | |
1645 movwf sub_a+1 | |
1646 movff timeout_counter,sub_b+0 | |
1647 movff timeout_counter2,sub_b+1 | |
1648 call subU16 ; sub_c = sub_a - sub_b (with UNSIGNED values) | |
1649 movff sub_c+0, lo | |
1650 movff sub_c+1, hi | |
1651 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
1652 movf hi,W | |
1653 movff lo,hi | |
1654 movwf lo ; exchange lo and hi | |
1655 output_99x | |
1656 PUTC ':' | |
1657 movff hi,lo | |
1658 output_99x | |
1659 movlw warning_length ; Divemode string length | |
1660 call TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
1661 STRCAT_PRINT "" | |
1662 return | |
1663 | |
0 | 1664 global TFT_ftts |
1665 TFT_ftts: | |
1666 movff char_I_extra_time,lo | |
1667 tstfsz lo | |
1668 bra $+4 | |
1669 return ; char_I_extra_time=0, return. | |
1670 incf warning_counter,F ; increase counter | |
1671 call TFT_warning_set_window ; Sets the row and column for the current warning | |
1672 tstfsz WREG ; Is there room for the warning? | |
1673 return ; No | |
1674 movff char_I_extra_time,lo | |
1675 STRCPY "@+" | |
1676 bsf leftbind | |
1677 output_8 | |
1678 PUTC ":" | |
1679 movff int_O_extra_ascenttime+0,lo | |
1680 movff int_O_extra_ascenttime+1,hi | |
1681 movf lo,W | |
1682 iorwf hi,W ; extra_ascenttime == 0 ? | |
1683 bz TFT_ftts2 ; No deco | |
1684 movf lo,W ; extra_ascenttime == 0xFFFF ? | |
1685 andwf hi,W | |
1686 incf WREG,w | |
1687 bz TFT_ftts2 ; Wait... | |
1688 output_16 | |
1689 bcf leftbind | |
1690 PUTC "'" | |
1691 movlw warning_length ; Divemode string length | |
1692 call TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
1693 STRCAT_PRINT "" | |
1694 return | |
1695 | |
1696 TFT_ftts2: | |
1697 STRCAT "---" | |
1698 bcf leftbind | |
1699 movlw warning_length ; Divemode string length | |
1700 call TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
1701 STRCAT_PRINT "" | |
1702 return | |
1703 | |
1704 | |
1705 ;============================================================================= | |
1706 | |
1707 global TFT_temp_surfmode | |
1708 TFT_temp_surfmode: | |
1709 WIN_SMALL surf_temp_column,surf_temp_row | |
1710 call TFT_standard_color | |
1711 | |
1712 SAFE_2BYTE_COPY temperature, lo | |
1713 | |
1714 TSTOSS opt_units ; 0=°C, 1=°F | |
1715 bra TFT_temp_surfmode_metric | |
1716 | |
1717 ;TFT_temp_surfmode_imperial: | |
214 | 1718 rcall TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
0 | 1719 call convert_celsius_to_fahrenheit ; convert value in lo:hi from celsius to fahrenheit |
1720 lfsr FSR2,buffer ; Overwrite "-" | |
1721 bsf ignore_digit5 ; Full degrees only | |
1722 output_16 | |
1723 STRCAT_PRINT "" | |
1724 call TFT_divemask_color | |
1725 WIN_SMALL surf_temp_column+4*8,surf_temp_row | |
1726 STRCPY_PRINT "°F" | |
1727 return | |
1728 | |
1729 TFT_temp_surfmode_metric: | |
214 | 1730 rcall TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
0 | 1731 movlw d'3' |
1732 movwf ignore_digits | |
1733 bsf ignore_digit5 ; Full degrees only | |
1734 output_16 | |
1735 | |
13
2af021c66b0d
fix negative temperature display in surfacemode
heinrichsweikamp
parents:
11
diff
changeset
|
1736 ; read-back the buffer+4 |
2af021c66b0d
fix negative temperature display in surfacemode
heinrichsweikamp
parents:
11
diff
changeset
|
1737 movff buffer+4,lo |
0 | 1738 movlw " " ; Space |
1739 cpfseq lo ; Was it a space (between +1°C and -1°C)? | |
1740 bra TFT_temp_surfmode1 ; No. | |
1741 movlw "0" ; Yes, print manual zero | |
1742 movff WREG,buffer+3 | |
1743 bra TFT_temp_surfmode2 | |
1744 TFT_temp_surfmode1: | |
1745 ; Test if output was negative (Flag set in TFT_convert_signed_16bit) | |
1746 btfss neg_flag ; Negative temperature? | |
1747 bra TFT_temp_surfmode3 ; No, continue | |
1748 ; Yes, negative temperature! | |
1749 movff buffer+3,buffer+2 ; remove two spaces manually | |
1750 movff buffer+4,buffer+3 | |
1751 TFT_temp_surfmode2: | |
1752 movlw 0x00 | |
1753 movff WREG,buffer+4 | |
1754 TFT_temp_surfmode3: | |
1755 STRCAT_PRINT "" | |
1756 call TFT_divemask_color | |
1757 WIN_SMALL surf_temp_column+4*8,surf_temp_row | |
1758 STRCPY_PRINT "°C" | |
1759 return | |
1760 | |
1761 ;============================================================================= | |
1762 global TFT_divemode_menu_cursor | |
1763 TFT_divemode_menu_cursor: | |
1764 WIN_BOX_BLACK divemode_menu_item1_row,divemode_menu_item3_row+.24,divemode_menu_item1_column-.8,divemode_menu_item1_column-.1 | |
1765 WIN_BOX_BLACK divemode_menu_item4_row,divemode_menu_item6_row+.24,divemode_menu_item4_column-.8,divemode_menu_item4_column-.1 | |
1766 call TFT_standard_color | |
1767 | |
1768 movlw divemode_menu_item1_column-.8 | |
1769 btfsc menupos,2 ; >3? | |
1770 movlw divemode_menu_item4_column-.8 ; Yes | |
1771 movff WREG,win_leftx2 | |
1772 | |
1773 movff menupos,lo ; Copy menu pos | |
1774 movlw divemode_menu_item6_row | |
1775 dcfsnz lo,F | |
1776 movlw divemode_menu_item1_row | |
1777 dcfsnz lo,F | |
1778 movlw divemode_menu_item2_row | |
1779 dcfsnz lo,F | |
1780 movlw divemode_menu_item3_row | |
1781 dcfsnz lo,F | |
1782 movlw divemode_menu_item4_row | |
1783 dcfsnz lo,F | |
1784 movlw divemode_menu_item5_row | |
1785 movff WREG,win_top | |
1786 movlw FT_SMALL | |
1787 movff WREG,win_font | |
1788 STRCPY_PRINT "\xb7" ; print cursor | |
1789 return | |
1790 | |
1791 global TFT_temp_divemode | |
1792 TFT_temp_divemode: | |
1793 btfsc divemode_menu ; Is the dive mode menu shown? | |
1794 return ; Yes, return | |
1795 btfsc blinking_better_gas ; blinking better Gas? | |
1796 return ; Yes, no update of temperature now | |
1797 ; temperature | |
1798 WIN_SMALL dive_temp_column,dive_temp_row | |
1799 call TFT_standard_color | |
1800 bsf leftbind | |
1801 | |
1802 SAFE_2BYTE_COPY temperature, lo | |
1803 TSTOSS opt_units ; 0=°C, 1=°F | |
1804 bra TFT_temp_divemode_metric | |
1805 | |
1806 ;TFT_temp_divemode_imperial: | |
214 | 1807 rcall TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
0 | 1808 call convert_celsius_to_fahrenheit ; convert value in lo:hi from celsius to fahrenheit |
1809 lfsr FSR2,buffer ; Overwrite "-" (There won't be less then -18°C underwater...) | |
1810 bsf ignore_digit5 ; Full degrees only | |
1811 output_16 | |
1812 STRCAT_TEXT tLogTunitF | |
1813 TFT_temp_divemode_common: | |
1814 bcf leftbind | |
1815 movlw .4 ; limit to three chars | |
1816 call TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
1817 STRCAT_PRINT "" | |
1818 return ; Done. | |
1819 | |
1820 TFT_temp_divemode_metric: | |
214 | 1821 rcall TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
0 | 1822 movlw d'3' |
1823 movwf ignore_digits | |
1824 bsf ignore_digit5 ; Full degrees only | |
1825 output_16 | |
1826 STRCAT_TEXT tLogTunitC | |
1827 bra TFT_temp_divemode_common ; Done. | |
1828 | |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1829 TFT_active_setpoint2: |
0 | 1830 movff char_I_const_ppO2,lo |
1831 TFT_color_code warn_ppo2_hud ; With ppO2 [cbar] in lo | |
1832 clrf hi | |
1833 bsf leftbind | |
1834 output_16dp d'3' | |
1835 bcf leftbind | |
1836 STRCAT_TEXT tbar | |
1837 TSTOSS opt_ccr_mode ; =0: Fixed SP, =1: Sensor | |
1838 bra $+4 | |
1839 PUTC "*" | |
1840 STRCAT_PRINT "" | |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1841 return |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1842 |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1843 TFT_active_setpoint: ; Show setpoint |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1844 WIN_STD active_gas_column,active_gas_row |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1845 call TFT_standard_color |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1846 btfsc is_bailout ; =1: Bailout |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1847 bra TFT_active_setpoint_bail ; Show "Bailout" instead of Setpoint |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1848 |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1849 rcall TFT_active_setpoint2 ; show setpoint (Non-Inverted in all cases) |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1850 |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1851 btfss setpoint_fallback ; =1: Fallback to SP1 due to external O2 sensor failure |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1852 bra TFT_active_setpoint_diluent ; Done. |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1853 btg blinking_setpoint ; Toggle blink bit... |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1854 btfss blinking_setpoint ; blink now? |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1855 bra TFT_active_setpoint_diluent ; Done. |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1856 |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1857 movlw color_yellow ; Blink in yellow |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1858 call TFT_set_color |
189
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
1859 bsf win_invert ; Set invert flag |
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
1860 WIN_STD active_gas_column,active_gas_row |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1861 movff char_I_const_ppO2,lo |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1862 clrf hi |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1863 bsf leftbind |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1864 output_16dp d'3' |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1865 bcf leftbind |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1866 STRCAT_TEXT tbar |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1867 TSTOSS opt_ccr_mode ; =0: Fixed SP, =1: Sensor |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1868 bra $+4 |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1869 PUTC "*" |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
1870 STRCAT_PRINT "" |
189
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
1871 bcf win_invert ; Reset invert flag |
0 | 1872 |
1873 TFT_active_setpoint_diluent: | |
1874 call TFT_standard_color | |
1875 WIN_SMALL active_dil_column,active_dil_row | |
1876 movff char_I_O2_ratio,lo ; lo now stores O2 in % | |
1877 movff char_I_He_ratio,hi ; hi now stores He in % | |
1878 rcall TFT_show_dil_divemode2 ; Show diluent (Non-Inverted in all cases) | |
1879 | |
1880 btfss better_gas_available ; =1: A better gas is available and a gas change is advised in divemode | |
1881 return ; Done. | |
1882 btg blinking_better_gas ; Toggle blink bit... | |
1883 btfss blinking_better_gas ; blink now? | |
1884 return ; No, Done. | |
1885 | |
1886 movlw color_yellow ; Blink in yellow | |
1887 call TFT_set_color | |
189
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
1888 bsf win_invert ; Set invert flag |
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
1889 WIN_SMALL active_dil_column,active_dil_row |
0 | 1890 movff char_I_O2_ratio,lo ; lo now stores O2 in % |
1891 movff char_I_He_ratio,hi ; hi now stores He in % | |
1892 rcall TFT_show_dil_divemode2 ; Show gas | |
189
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
1893 bcf win_invert ; Reset invert flag |
0 | 1894 call TFT_standard_color |
1895 return ; Done. | |
1896 | |
1897 TFT_show_dil_divemode2: | |
1898 call customview_show_mix ; Put "Nxlo", "Txlo/hi", "Air" or "O2" into Postinc2 | |
1899 STRCAT_PRINT "" | |
1900 return | |
1901 | |
1902 TFT_active_setpoint_bail: | |
1903 STRCPY_TEXT_PRINT tDiveBailout ; Bailout | |
1904 bra TFT_active_setpoint_diluent | |
1905 | |
1906 global TFT_active_gas_divemode | |
1907 TFT_active_gas_divemode: ; Display gas/Setpoint | |
1908 btfsc divemode_menu ; Is the dive mode menu shown? | |
1909 return ; Yes, return | |
1910 btfsc FLAG_apnoe_mode ; Ignore in Apnoe mode | |
1911 return | |
1912 btfsc FLAG_ccr_mode ; in CCR mode | |
1913 bra TFT_active_setpoint ; Yes, show setpoint | |
1914 | |
1915 call TFT_standard_color | |
1916 WIN_STD active_gas_column,active_gas_row | |
1917 movff char_I_O2_ratio,lo ; lo now stores O2 in % | |
1918 movff char_I_He_ratio,hi ; hi now stores He in % | |
1919 rcall TFT_active_gas_divemode2 ; Show gas (Non-Inverted in all cases) | |
1920 btfss better_gas_available ; =1: A better gas is available and a gas change is advised in divemode | |
1921 return ; Done. | |
1922 | |
1923 btg blinking_better_gas ; Toggle blink bit... | |
1924 btfss blinking_better_gas ; blink now? | |
1925 return ; No, Done. | |
50 | 1926 call TFT_attention_color ; blink in yellow |
189
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
1927 bsf win_invert ; Set invert flag |
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
1928 WIN_STD active_gas_column,active_gas_row |
0 | 1929 movff char_I_O2_ratio,lo ; lo now stores O2 in % |
1930 movff char_I_He_ratio,hi ; hi now stores He in % | |
1931 rcall TFT_active_gas_divemode2 ; Show gas (Non-Inverted in all cases) | |
189
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
1932 bcf win_invert ; Reset invert flag |
0 | 1933 call TFT_standard_color |
1934 return ; Done. | |
1935 | |
1936 TFT_active_gas_divemode2: | |
1937 call customview_show_mix ; Put "Nxlo", "Txlo/hi", "Air" or "O2" into Postinc2 | |
1938 STRCAT_PRINT "" | |
1939 return | |
1940 | |
1941 global TFT_display_decotype_surface | |
1942 TFT_display_decotype_surface: | |
1943 WIN_STD surf_decotype_column,surf_decotype_row | |
1944 WIN_COLOR color_lightblue | |
1945 movff opt_dive_mode,lo ; 0=OC, 1=CC, 2=Gauge, 3=Apnea | |
1946 tstfsz lo | |
1947 bra TFT_display_decotype_surface2 | |
116
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1948 TFT_display_decotype_surface0: |
0 | 1949 STRCAT_TEXT_PRINT tDvOC ; OC |
1950 bra TFT_display_decotype_exit | |
1951 TFT_display_decotype_surface2: | |
1952 decfsz lo,F | |
1953 bra TFT_display_decotype_surface3 | |
113 | 1954 STRCAT_TEXT_PRINT tDvCC ; CC |
1955 call TFT_standard_color | |
1956 WIN_TINY surf_decotype_column+.18,surf_decotype_row+.12 | |
1957 | |
1958 TSTOSS opt_ccr_mode ; =0: Fixed SP, =1: Sensor | |
1959 bra TFT_display_decotype_cc_fixed | |
1960 ; Sensor mode | |
1961 STRCPY_TEXT tCCRModeSensor ; Sensor | |
1962 bra TFT_display_decotype_cc_common | |
1963 TFT_display_decotype_cc_fixed: | |
1964 STRCPY_TEXT tCCRModeFixedSP ; Fixed | |
1965 TFT_display_decotype_cc_common: | |
1966 STRCAT_PRINT "" | |
0 | 1967 bra TFT_display_decotype_exit |
1968 TFT_display_decotype_surface3: | |
1969 decfsz lo,F | |
1970 bra TFT_display_decotype_surface4 | |
116
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1971 TFT_display_decotype_surface3_1: |
0 | 1972 STRCAT_TEXT_PRINT tDvGauge ; Gauge |
1973 bra TFT_display_decotype_exit | |
1974 TFT_display_decotype_surface4: | |
1975 STRCAT_TEXT_PRINT tDvApnea ; Apnea | |
1976 TFT_display_decotype_exit: | |
1977 call TFT_standard_color | |
1978 return | |
40 | 1979 |
116
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1980 global TFT_display_decotype_surface1 ; Used from logbook! |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1981 TFT_display_decotype_surface1: ; Used from logbook! |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1982 tstfsz lo |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1983 bra TFT_display_decotype_surface1_2 |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1984 bra TFT_display_decotype_surface0 ;OC |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1985 TFT_display_decotype_surface1_2: |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1986 decfsz lo,F |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1987 bra TFT_display_decotype_surface1_3 |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1988 STRCAT_TEXT_PRINT tDvCC ; CC (w/o Sensor/Fixed Display) |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1989 TFT_display_decotype_surface1_3: |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1990 decfsz lo,F |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1991 bra TFT_display_decotype_surface4 ; Apnea |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1992 bra TFT_display_decotype_surface3_1 ; Gauge |
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
1993 |
0 | 1994 ;============================================================================= |
1995 | |
1996 global TFT_splist_surfmode ; Show Setpoint list | |
1997 extern gaslist_strcat_setpoint | |
1998 TFT_splist_surfmode: | |
1999 bsf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint | |
2000 ;SP 1 | |
2001 WIN_SMALL surf_gaslist_column,surf_gaslist_row | |
2002 clrf PRODL | |
2003 call gaslist_strcat_setpoint ; Show SP#+1 of PRODL# | |
2004 STRCAT_PRINT "" | |
2005 ;SP 2 | |
2006 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.1) | |
2007 movlw .1 | |
2008 movwf PRODL | |
2009 call gaslist_strcat_setpoint ; Show SP#+1 of PRODL# | |
2010 STRCAT_PRINT "" | |
2011 ;SP 3 | |
2012 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.2) | |
2013 movlw .2 | |
2014 movwf PRODL | |
2015 call gaslist_strcat_setpoint ; Show SP#+1 of PRODL# | |
2016 STRCAT_PRINT "" | |
2017 ;SP 4 | |
2018 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.3) | |
2019 movlw .3 | |
2020 movwf PRODL | |
2021 call gaslist_strcat_setpoint ; Show SP#+1 of PRODL# | |
2022 STRCAT_PRINT "" | |
2023 ;SP 5 | |
2024 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.4) | |
2025 movlw .4 | |
2026 movwf PRODL | |
2027 call gaslist_strcat_setpoint ; Show SP#+1 of PRODL# | |
2028 STRCAT_PRINT "" | |
2029 bcf leftbind | |
2030 return | |
2031 | |
2032 global TFT_gaslist_surfmode | |
2033 TFT_gaslist_surfmode: ; Displays Gas List | |
2034 bsf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint | |
2035 extern gaslist_strcat_gas_mod | |
2036 ;Gas 1 | |
2037 WIN_SMALL surf_gaslist_column,surf_gaslist_row | |
2038 movlw .0 | |
2039 movwf PRODL | |
2040 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
2041 STRCAT_PRINT "" | |
2042 ;Gas 2 | |
2043 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.1) | |
2044 movlw .1 | |
2045 movwf PRODL | |
2046 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
2047 STRCAT_PRINT "" | |
2048 ;Gas 3 | |
2049 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.2) | |
2050 movlw .2 | |
2051 movwf PRODL | |
2052 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
2053 STRCAT_PRINT "" | |
2054 ;Gas 4 | |
2055 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.3) | |
2056 movlw .3 | |
2057 movwf PRODL | |
2058 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
2059 STRCAT_PRINT "" | |
2060 ;Gas 5 | |
2061 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.4) | |
2062 movlw .4 | |
2063 movwf PRODL | |
2064 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
2065 STRCAT_PRINT "" | |
2066 bcf leftbind | |
2067 return | |
2068 | |
2069 global TFT_dillist_surfmode | |
2070 TFT_dillist_surfmode: ; Displays Diluent List | |
2071 bsf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint | |
175
d097e10b383b
CHANGE: Draw a frame around the dive mode menu
heinrichsweikamp
parents:
170
diff
changeset
|
2072 bsf ccr_diluent_setup ; Use CCR Diluents... |
d097e10b383b
CHANGE: Draw a frame around the dive mode menu
heinrichsweikamp
parents:
170
diff
changeset
|
2073 rcall TFT_gaslist_surfmode ; Use OC/BAIL routine |
d097e10b383b
CHANGE: Draw a frame around the dive mode menu
heinrichsweikamp
parents:
170
diff
changeset
|
2074 bcf ccr_diluent_setup ; Clear flag |
0 | 2075 return |
2076 | |
2077 global TFT_depth | |
2078 TFT_depth: | |
2079 SAFE_2BYTE_COPY rel_pressure, lo | |
2080 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
2081 | |
2082 TSTOSS opt_units ; 0=m, 1=ft | |
2083 bra TFT_depth_metric | |
2084 ;TFT_depth_imperial | |
2085 WIN_LARGE depth_feet_column,depth_feet_row | |
2086 TFT_color_code warn_depth ; Color-code the output | |
2087 | |
2088 clrf sub_a+1 ; Display 0ft if lower then 30cm | |
2089 movlw d'30' | |
2090 movwf sub_a+0 | |
2091 movff hi,sub_b+1 | |
2092 movff lo,sub_b+0 | |
2093 call subU16 ; sub_c = sub_a - sub_b | |
2094 btfss neg_flag ; Depth lower then 0.4m? | |
2095 bra depth_less_0.3mtr_feet ; Yes, Show 0ft manually | |
2096 | |
2097 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
2098 bsf leftbind | |
2099 output_16 ; feet in Big font | |
2100 bcf leftbind | |
2101 movlw .3 ; limit to three chars | |
2102 call TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
2103 STRCAT_PRINT "" ; Display feet | |
2104 return | |
126 | 2105 |
0 | 2106 depth_less_0.3mtr_feet: |
2107 STRCAT_PRINT "0 " ; manual zero | |
2108 return | |
2109 | |
2110 TFT_depth_metric: | |
2111 WIN_LARGE depth_column,depth_row | |
2112 TFT_color_code warn_depth ; Color-code the output | |
2113 | |
2114 movlw .039 | |
2115 cpfslt hi | |
2116 bra depth_greater_99_84mtr | |
2117 | |
2118 btfsc depth_greater_100m ; Was depth>100m during last call | |
11 | 2119 rcall TFT_clear_depth ; Yes, clear depth area |
0 | 2120 bcf depth_greater_100m ; Do this once only... |
2121 | |
11 | 2122 movlw .039 |
2123 cpfslt hi | |
2124 bra depth_greater_99_84mtr | |
2125 | |
0 | 2126 movlw HIGH d'1000' |
2127 movwf sub_a+1 | |
2128 movlw LOW d'1000' | |
2129 movwf sub_a+0 | |
2130 movff hi,sub_b+1 | |
2131 movff lo,sub_b+0 | |
2132 incf sub_b+0,F | |
2133 movlw d'0' | |
2134 addwfc sub_b+1,F ; Add 1mbar offset | |
2135 call sub16 ; sub_c = sub_a - sub_b | |
2136 movlw ' ' | |
2137 btfss neg_flag ; Depth lower then 10m? | |
2138 movwf POSTINC2 ; Yes, add extra space | |
2139 | |
2140 clrf sub_a+1 | |
2141 movlw d'99' | |
2142 movwf sub_a+0 | |
2143 movff hi,sub_b+1 | |
2144 movff lo,sub_b+0 | |
2145 call subU16 ; sub_c = sub_a - sub_b | |
2146 btfss neg_flag ; Depth lower then 1m? | |
2147 bra tft_depth2 ; Yes, display manual Zero | |
2148 | |
2149 bsf leftbind | |
2150 bsf ignore_digit4 | |
2151 output_16 ; Full meters in Big font | |
2152 bcf leftbind | |
2153 bra tft_depth3 | |
2154 | |
2155 tft_depth2: | |
153 | 2156 STRCAT "0" ; manual zero |
0 | 2157 |
2158 tft_depth3: | |
2159 STRCAT_PRINT "" ; Display full meters | |
2160 | |
2161 ; .1m in MEDIUM font | |
2162 WIN_MEDIUM depth_dm_column,depth_dm_row | |
2163 TFT_color_code warn_depth ; Color-code the output | |
2164 | |
2165 SAFE_2BYTE_COPY rel_pressure, lo | |
2166 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
126 | 2167 |
0 | 2168 PUTC "." |
2169 movlw HIGH d'30' ; Display 0.0m if lower then 30cm | |
2170 movwf sub_a+1 | |
2171 movlw LOW d'30' | |
2172 movwf sub_a+0 | |
2173 movff hi,sub_b+1 | |
2174 movff lo,sub_b+0 | |
2175 call subU16 ; sub_c = sub_a - sub_b | |
2176 btfss neg_flag ; Depth lower then 0.3m? | |
2177 bra depth_less_0.3mtr ; Yes, Show ".0" manually | |
2178 | |
2179 movlw d'4' | |
2180 movwf ignore_digits | |
2181 bsf ignore_digit5 | |
2182 output_16dp d'0' | |
2183 STRCAT_PRINT "" ; Display decimeters | |
2184 WIN_FONT FT_SMALL | |
2185 return | |
2186 | |
2187 depth_less_0.3mtr: | |
2188 STRCAT_PRINT "0" ; Display 0.0m manually | |
2189 WIN_FONT FT_SMALL | |
2190 return | |
2191 | |
2192 depth_greater_99_84mtr: ; Display only in full meters | |
2193 btfss depth_greater_100m ; Is depth>100m already? | |
2194 rcall TFT_clear_depth ; No, clear depth area and set flag | |
2195 ; Depth is already in hi:lo | |
2196 ; Show depth in Full meters | |
2197 ; That means ignore figure 4 and 5 | |
2198 lfsr FSR2,buffer | |
2199 bsf ignore_digit4 | |
2200 bsf leftbind | |
2201 output_16 | |
2202 bcf leftbind | |
2203 STRCAT_PRINT "" ; Display full meters only | |
2204 WIN_FONT FT_SMALL | |
2205 return | |
2206 | |
2207 TFT_clear_depth: ; No, clear depth area and set flag | |
2208 WIN_BOX_BLACK depth_row, .77,.0, max_depth_column-.1 ;top, bottom, left, right | |
2209 bsf depth_greater_100m ; Set Flag | |
2210 return | |
2211 | |
2212 ;============================================================================= | |
2213 | |
2214 global TFT_custom_text | |
2215 TFT_custom_text: ; Show the custom text | |
2216 lfsr FSR0, opt_name ; Source | |
2217 WIN_SMALL surf_customtext_column,surf_customtext_row1 ; First row | |
2218 rcall TFT_custom_text_2 ; Show up to 12 chars and print | |
2219 incfsz lo,F ; Was lo=255? | |
2220 return ; No, all done. | |
2221 lfsr FSR0, opt_name+.12 ; Source | |
2222 WIN_SMALL surf_customtext_column,surf_customtext_row2 ; Second row | |
2223 rcall TFT_custom_text_2 ; Show up to 12 chars and print | |
2224 incfsz lo,F ; Was lo=255? | |
2225 return ; No, all done. | |
2226 lfsr FSR0, opt_name+.24 ; Source | |
2227 WIN_SMALL surf_customtext_column,surf_customtext_row3 ; Third row | |
2228 rcall TFT_custom_text_2 ; Show up to 12 chars and print | |
2229 incfsz lo,F ; Was lo=255? | |
2230 return ; No, all done. | |
2231 lfsr FSR0, opt_name+.36 ; Source | |
2232 WIN_SMALL surf_customtext_column,surf_customtext_row4 ; Forth row | |
2233 rcall TFT_custom_text_2 ; Show up to 12 chars and print | |
2234 incfsz lo,F ; Was lo=255? | |
2235 return ; No, all done. | |
2236 lfsr FSR0, opt_name+.48 ; Source | |
2237 WIN_SMALL surf_customtext_column,surf_customtext_row5 ; Fifth row | |
2238 rcall TFT_custom_text_2 ; Show up to 12 chars and print | |
2239 return ; Done. | |
2240 | |
2241 TFT_custom_text_2: | |
2242 lfsr FSR2, buffer ; destination | |
2243 movlw .12 | |
2244 movwf lo ; length/line | |
2245 TFT_custom_text_3: | |
2246 movf POSTINC0,W ; Get byte | |
2247 bz TFT_custom_text_4 ; End if NULL | |
2248 movwf POSTINC2 ; NO: copy | |
2249 decfsz lo,F ; Max len reached ? | |
2250 bra TFT_custom_text_3 ; NO: loop | |
2251 setf lo ; lo=255 -> more to come | |
2252 TFT_custom_text_4: | |
2253 clrf POSTINC2 ; Mark end of string | |
2254 goto aa_wordprocessor ; print and return | |
2255 | |
2256 | |
2257 ;============================================================================= | |
2258 global TFT_update_surf_press | |
2259 TFT_update_surf_press: | |
2260 WIN_SMALL surf_press_column,surf_press_row | |
2261 call TFT_standard_color | |
2262 SAFE_2BYTE_COPY amb_pressure, lo | |
2263 movff lo,sub_a+0 | |
2264 movff hi,sub_a+1 | |
2265 movff last_surfpressure_30min+0,sub_b+0 | |
2266 movff last_surfpressure_30min+1,sub_b+1 | |
2267 call subU16 ; sub_c = sub_a - sub_b | |
2268 btfsc neg_flag ; Pressure lower? | |
2269 rcall update_surf_press2 ; Yes, test threshold | |
2270 | |
2271 tstfsz sub_c+1 ; >255mbar difference? | |
2272 bra update_surf_press_common; Yes, display! | |
2273 movlw d'10' ; 10mbar noise suppression | |
2274 subwf sub_c+0,W | |
2275 btfsc STATUS,C | |
2276 bra update_surf_press_common; Yes, display! | |
2277 SAFE_2BYTE_COPY last_surfpressure_30min, lo ; Overwrite with stable value... | |
2278 | |
2279 update_surf_press_common: | |
2280 output_16 | |
2281 ; Show only 4 figures | |
2282 movff buffer+1,buffer+0 | |
2283 movff buffer+2,buffer+1 | |
2284 movff buffer+3,buffer+2 | |
2285 movff buffer+4,buffer+3 | |
2286 movlw 0x00 | |
2287 movff WREG,buffer+4 | |
2288 STRCAT_PRINT "" | |
2289 call TFT_divemask_color | |
2290 WIN_SMALL surf_press_column+4*8,surf_press_row | |
207 | 2291 STRCPY_TEXT_PRINT tMBAR ; mbar |
0 | 2292 return |
2293 | |
2294 update_surf_press2: | |
2295 movff lo,sub_b+0 | |
2296 movff hi,sub_b+1 | |
2297 movff last_surfpressure_30min+0,sub_a+0 | |
2298 movff last_surfpressure_30min+1,sub_a+1 | |
2299 call subU16 ; sub_c = sub_a - sub_b | |
2300 return | |
2301 | |
2302 ;============================================================================= | |
2303 | |
2304 global TFT_update_batt_voltage | |
2305 TFT_update_batt_voltage: | |
2306 movff batt_percent,lo ; Get battery percent | |
2307 TFT_color_code warn_battery; Color-code battery percent | |
207 | 2308 |
2309 ; Setup charge indicator | |
2310 btfsc cc_active | |
2311 bsf win_invert | |
2312 btfsc cc_active | |
2313 movlw color_yellow | |
2314 btfsc cv_active | |
2315 movlw color_green | |
2316 btfsc cc_active | |
2317 call TFT_set_color | |
2318 | |
0 | 2319 WIN_TINY batt_percent_column,batt_percent_row |
2320 bsf leftbind | |
2321 output_8 | |
2322 bcf leftbind | |
88 | 2323 STRCAT "% " |
2324 movlw 0x00 | |
2325 movff WREG,buffer+4 ; Only "xxx%" | |
2326 STRCAT_PRINT "" | |
207 | 2327 bcf win_invert |
0 | 2328 call TFT_standard_color |
2329 WIN_TINY batt_voltage_column,batt_voltage_row | |
2330 movff batt_voltage+0,lo | |
2331 movff batt_voltage+1,hi | |
2332 bsf leftbind | |
2333 output_16dp .2 | |
2334 bcf leftbind | |
2335 PUTC 'V' | |
2336 movff buffer+5,buffer+3 | |
2337 movlw 0x00 | |
2338 movff WREG,buffer+4 ; Only "x.yV" | |
24 | 2339 STRCAT_PRINT "" |
0 | 2340 return |
2341 | |
2342 ;update_battery_debug: | |
2343 ; call TFT_standard_color | |
2344 ; WIN_TINY .70,.0 | |
2345 ; movff battery_gauge+5,xC+3 | |
2346 ; movff battery_gauge+4,xC+2 | |
2347 ; movff battery_gauge+3,xC+1 | |
2348 ; movff battery_gauge+2,xC+0 | |
2349 ; ; battery_gauge:6 is nAs | |
2350 ; ; devide through 65536 | |
2351 ; ; devide through 152 | |
2352 ; ; Result is 0.01Ah in xC+1:xC+0 | |
2353 ; movlw LOW .152 | |
2354 ; movwf xB+0 | |
2355 ; movlw HIGH .152 | |
2356 ; movwf xB+1 | |
2357 ; call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
2358 ; bsf leftbind | |
2359 ; movff xC+0,lo | |
2360 ; movff xC+1,hi | |
2361 ; output_16 | |
2362 ; STRCAT_PRINT "x.01Ah" | |
2363 ; WIN_FONT FT_SMALL | |
2364 ; bcf leftbind | |
2365 ; return | |
2366 | |
2367 ;============================================================================= | |
2368 | |
2369 global TFT_convert_signed_16bit | |
2370 TFT_convert_signed_16bit: | |
2371 bcf neg_flag ; Positive temperature | |
2372 btfss hi,7 ; Negative temperature ? | |
2373 return ; No, return | |
2374 ; Yes, negative temperature! | |
2375 bsf neg_flag ; Negative temperature | |
2376 PUTC '-' ; Display "-" | |
2377 comf hi ; Then, 16bit sign changes. | |
2378 negf lo | |
2379 btfsc STATUS,C | |
2380 incf hi | |
2381 return ; and return | |
2382 | |
2383 ;============================================================================= | |
2384 | |
2385 global TFT_convert_date | |
2386 TFT_convert_date: ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
2387 movff opt_dateformat,WREG ; =0:MMDDYY, =1:DDMMYY, =2:YYMMDD | |
2388 movwf EEDATA ; used as temp here | |
2389 tstfsz EEDATA | |
2390 bra TFT_convert_date1 | |
2391 ; EEDATA was 0 | |
2392 ; Use MMDDYY | |
2393 movff convert_value_temp+0,lo ;month | |
2394 bsf leftbind | |
2395 output_99x | |
2396 PUTC '.' | |
2397 movff convert_value_temp+1,lo ;day | |
2398 bra TFT_convert_date1_common ;year | |
2399 | |
2400 TFT_convert_date1: ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
2401 decfsz EEDATA,F | |
2402 bra TFT_convert_date2 ; EEDATA was 2 | |
2403 ; EEDATA was 1 | |
2404 ; Use DDMMYY | |
2405 movff convert_value_temp+1,lo ;day | |
2406 bsf leftbind | |
2407 output_99x | |
2408 PUTC '.' | |
2409 movff convert_value_temp+0,lo ;month | |
2410 | |
2411 TFT_convert_date1_common: | |
2412 bsf leftbind | |
2413 output_99x | |
2414 PUTC '.' | |
2415 movff convert_value_temp+2,lo ;year | |
2416 output_99x | |
2417 bcf leftbind | |
2418 return | |
2419 | |
2420 TFT_convert_date2: | |
2421 ; Use YYMMDD | |
2422 movff convert_value_temp+2,lo ;year | |
2423 bsf leftbind | |
2424 output_99x | |
2425 PUTC '.' | |
2426 movff convert_value_temp+0,lo ;month | |
2427 output_99x | |
2428 PUTC '.' | |
2429 movff convert_value_temp+1,lo ;day | |
2430 output_99x | |
2431 bcf leftbind | |
2432 return | |
2433 | |
2434 ;============================================================================= | |
2435 | |
2436 global TFT_convert_date_short | |
2437 TFT_convert_date_short: ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2 | |
2438 movff opt_dateformat,WREG ; =0:MMDDYY, =1:DDMMYY, =2:YYMMDD | |
2439 movwf EEDATA ; used as temp here | |
2440 tstfsz EEDATA | |
2441 bra TFT_convert_date_short1 | |
2442 ; EEDATA was 0 | |
2443 ; Use MMDDYY | |
2444 TFT_convert_date_short_common: | |
2445 movff convert_value_temp+0,lo ;month | |
2446 bsf leftbind | |
2447 output_99x | |
2448 PUTC '.' | |
2449 movff convert_value_temp+1,lo ;day | |
2450 output_99x | |
2451 bcf leftbind | |
2452 return | |
2453 | |
2454 TFT_convert_date_short1: | |
2455 decfsz EEDATA,F | |
2456 bra TFT_convert_date_short_common ; EEDATA was 2 -> Use YYMMDD | |
2457 ; EEDATA was 1 | |
2458 ; Use DDMMYY | |
2459 movff convert_value_temp+1,lo ;day | |
2460 bsf leftbind | |
2461 output_99x | |
2462 PUTC '.' | |
2463 movff convert_value_temp+0,lo ;month | |
2464 output_99x | |
2465 bcf leftbind | |
2466 return | |
2467 | |
2468 ;============================================================================= | |
2469 | |
2470 global TFT_date | |
2471 TFT_date: | |
48 | 2472 WIN_SMALL surf_date_column,surf_date_row ; Init new Wordprocessor |
0 | 2473 call TFT_standard_color |
2474 movff month,convert_value_temp+0 | |
2475 movff day,convert_value_temp+1 | |
2476 movff year,convert_value_temp+2 | |
2477 call TFT_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
2478 STRCAT_PRINT "" | |
2479 return | |
2480 | |
2481 ;============================================================================= | |
2482 | |
2483 global TFT_max_pressure | |
2484 TFT_max_pressure: | |
2485 btfsc FLAG_apnoe_mode ; different display in apnoe mode | |
2486 bra TFT_max_pressure_apnoe | |
2487 TFT_max_pressure2: | |
2488 SAFE_2BYTE_COPY max_pressure, lo | |
2489 TFT_max_pressure3: | |
2490 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
2491 TSTOSS opt_units ; 0=m, 1=ft | |
2492 bra TFT_max_pressure2_metric | |
2493 ;TFT_max_pressure2_imperial | |
2494 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
2495 WIN_MEDIUM max_depth_feet_column,max_depth_feet_row | |
2496 call TFT_standard_color | |
2497 output_16_3 | |
2498 STRCAT_PRINT "" | |
2499 return | |
2500 | |
2501 TFT_max_pressure2_metric: | |
11 | 2502 WIN_MEDIUM max_depth_column,max_depth_row |
2503 | |
2504 movlw .039 | |
2505 cpfslt hi | |
2506 bra max_depth_greater_99_84mtr | |
2507 | |
2508 btfsc max_depth_greater_100m ; Was depth>100m during last call | |
2509 rcall TFT_clear_max_depth ; Yes, clear depth area | |
2510 bcf max_depth_greater_100m ; Do this once only... | |
2511 | |
2512 movlw .039 | |
2513 cpfslt hi | |
2514 bra max_depth_greater_99_84mtr | |
2515 | |
2516 movlw HIGH d'1000' | |
2517 movwf sub_a+1 | |
2518 movlw LOW d'1000' | |
2519 movwf sub_a+0 | |
2520 movff hi,sub_b+1 | |
2521 movff lo,sub_b+0 | |
2522 incf sub_b+0,F | |
2523 movlw d'0' | |
2524 addwfc sub_b+1,F ; Add 1mbar offset | |
2525 call sub16 ; sub_c = sub_a - sub_b | |
2526 movlw ' ' | |
2527 btfss neg_flag ; Depth lower then 10m? | |
2528 movwf POSTINC2 ; Yes, add extra space | |
2529 | |
2530 clrf sub_a+1 | |
2531 movlw d'99' | |
2532 movwf sub_a+0 | |
2533 movff hi,sub_b+1 | |
2534 movff lo,sub_b+0 | |
2535 call subU16 ; sub_c = sub_a - sub_b | |
2536 btfss neg_flag ; Depth lower then 1m? | |
2537 bra tft_max_depth2 ; Yes, display manual Zero | |
2538 | |
2539 bsf ignore_digit4 ; no 0.1m | |
2540 bsf leftbind | |
2541 output_16 | |
2542 bra tft_max_depth3 | |
2543 | |
2544 tft_max_depth2: | |
0 | 2545 WIN_MEDIUM max_depth_column,max_depth_row |
11 | 2546 STRCAT "0" |
2547 | |
2548 tft_max_depth3: | |
0 | 2549 call TFT_standard_color |
11 | 2550 STRCAT_PRINT "" ; Display full meters |
2551 bcf leftbind | |
2552 | |
2553 ; .1m in SMALL font | |
2554 WIN_SMALL max_depth_dm_column,max_depth_dm_row | |
2555 | |
2556 SAFE_2BYTE_COPY max_pressure, lo | |
2557 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
2558 | |
2559 PUTC "." | |
2560 | |
2561 movlw d'4' | |
2562 movwf ignore_digits | |
2563 bsf ignore_digit5 | |
2564 bsf leftbind | |
2565 output_16dp d'0' | |
2566 STRCAT_PRINT "" ; Display decimeters | |
2567 bcf leftbind | |
2568 return | |
2569 | |
2570 max_depth_greater_99_84mtr: ; Display only in full meters | |
2571 btfss max_depth_greater_100m ; Is max depth>100m already? | |
2572 rcall TFT_clear_max_depth ; No, clear max depth area and set flag | |
2573 ; Max. Depth is already in hi:lo | |
2574 ; Show max. depth in Full meters | |
2575 ; That means ignore figure 4 and 5 | |
2576 lfsr FSR2,buffer | |
2577 bsf ignore_digit4 | |
2578 bsf leftbind | |
0 | 2579 output_16 |
11 | 2580 bcf leftbind |
2581 STRCAT_PRINT "" ; Display full meters only | |
2582 WIN_FONT FT_SMALL | |
0 | 2583 return |
2584 | |
11 | 2585 TFT_clear_max_depth: ; No, clear max. depth area and set flag |
2586 WIN_BOX_BLACK max_depth_row,.49,max_depth_column, max_depth_dm_column+.13 ;top, bottom, left, right | |
2587 bsf max_depth_greater_100m ; Set Flag | |
2588 return | |
2589 | |
2590 | |
0 | 2591 TFT_max_pressure_apnoe: |
2592 btfss FLAG_active_descent ; Are we descending? | |
2593 bra TFT_max_pressure2 ; Yes, show normal max. | |
2594 SAFE_2BYTE_COPY apnoe_max_pressure, lo | |
2595 bra TFT_max_pressure3 ; Show apnoe_max_pressure as max. depth | |
2596 | |
2597 global TFT_display_apnoe_last_max | |
2598 TFT_display_apnoe_last_max: | |
2599 call TFT_divemask_color | |
2600 WIN_TINY last_max_apnoe_text_column,last_max_apnoe_text_row | |
2601 STRCPY_TEXT_PRINT tApnoeMax | |
2602 | |
2603 call TFT_standard_color | |
2604 SAFE_2BYTE_COPY max_pressure, lo | |
2605 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
2606 TSTOSS opt_units ; 0=m, 1=ft | |
2607 bra TFT_display_apnoe_last_m_metric | |
2608 ;TFT_display_apnoe_last_max_imperial | |
2609 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
2610 WIN_MEDIUM apnoe_last_max_depth_column,apnoe_last_max_depth_row | |
2611 output_16 | |
2612 STRCAT_PRINT "" | |
2613 return | |
2614 | |
2615 TFT_display_apnoe_last_m_metric: | |
2616 WIN_MEDIUM apnoe_last_max_depth_column,apnoe_last_max_depth_row | |
2617 bsf ignore_digit5 ; do not display 1cm depth | |
2618 output_16dp d'3' | |
2619 STRCAT_PRINT "" | |
2620 return | |
2621 | |
2622 ;============================================================================= | |
2623 global TFT_divemins | |
2624 TFT_divemins: | |
2625 movff divemins+0,lo | |
2626 movff divemins+1,hi | |
98 | 2627 bcf leftbind |
0 | 2628 |
2629 btfsc no_more_divesecs ; Ignore seconds? | |
2630 bra TFT_divemins2 ; Show minutes only | |
2631 | |
2632 movlw .99 | |
2633 cpfsgt lo ; bigger then 99? | |
2634 bra TFT_divemins1 ; No show mins:secs | |
2635 ; Yes, remove second display for the rest of the dive and clear seconds | |
2636 bsf no_more_divesecs ; Set flag | |
2637 ; Clear rest of seconds | |
2638 WIN_BOX_BLACK divetime_row, warning1_row,divetime_column,.159 ;top, bottom, left, right | |
2639 bra TFT_divemins2 ; Show minutes only | |
2640 | |
2641 TFT_divemins1: | |
2642 WIN_MEDIUM divetime_column, divetime_row | |
2643 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
2644 call TFT_standard_color | |
2645 STRCAT_PRINT "" ; Show minutes in large font | |
2646 | |
2647 WIN_SMALL divetime_secs_column, divetime_secs_row ; left position for two sec figures | |
2648 PUTC ':' | |
2649 bsf leftbind | |
2650 movff divesecs,lo | |
2651 output_99x | |
2652 bcf leftbind | |
2653 STRCAT_PRINT "" ; Show seconds in small font | |
2654 return | |
2655 | |
2656 TFT_divemins2: | |
2657 WIN_MEDIUM divetime_minsonly_column, divetime_row | |
2658 output_16 | |
2659 call TFT_standard_color | |
2660 STRCAT_PRINT "" ; Show minutes in large font | |
2661 return | |
2662 | |
2663 ;============================================================================= | |
2664 global TFT_display_apnoe_surface | |
2665 TFT_display_apnoe_surface: | |
2666 call TFT_divemask_color | |
2667 WIN_TINY surface_apnoe_text_column,surface_apnoe_text_row | |
2668 STRCPY_TEXT_PRINT tApnoeSurface | |
2669 | |
2670 call TFT_standard_color | |
2671 WIN_MEDIUM surface_time_apnoe_column, surface_time_apnoe_row | |
2672 movff apnoe_surface_mins,lo | |
2673 output_8 | |
2674 PUTC ':' | |
2675 movff apnoe_surface_secs,lo | |
2676 output_99x | |
2677 STRCAT_PRINT "" | |
2678 return | |
2679 | |
2680 global TFT_apnoe_clear_surface | |
2681 TFT_apnoe_clear_surface: | |
2682 ; Clear Surface timer.... | |
2683 WIN_BOX_BLACK surface_apnoe_text_row, .239, surface_apnoe_text_column, .159 ;top, bottom, left, right | |
2684 return | |
2685 | |
2686 global TFT_display_apnoe_descent | |
2687 TFT_display_apnoe_descent: ; Descent divetime | |
2688 movff apnoe_mins,lo | |
2689 clrf hi | |
2690 WIN_MEDIUM divetime_column, divetime_row | |
2691 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
2692 call TFT_standard_color | |
2693 STRCAT_PRINT "" ; Show minutes in large font | |
2694 WIN_SMALL divetime_secs_column, divetime_secs_row ; left position for two sec figures | |
2695 PUTC ':' | |
2696 bsf leftbind | |
2697 movff apnoe_secs,lo | |
2698 output_99x | |
2699 bcf leftbind | |
2700 STRCAT_PRINT "" ; Show seconds in small font | |
38 | 2701 |
2702 call TFT_divemask_color | |
2703 WIN_TINY total_apnoe_text_column,total_apnoe_text_row | |
2704 STRCPY_TEXT_PRINT tApnoeTotal | |
2705 call TFT_standard_color | |
2706 movff divemins,lo | |
2707 clrf hi | |
2708 WIN_MEDIUM apnoe_total_divetime_column, apnoe_total_divetime_row | |
2709 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
2710 call TFT_standard_color | |
2711 STRCAT_PRINT "" ; Show minutes in large font | |
2712 WIN_SMALL apnoe_total_divetime_secs_column, apnoe_total_divetime_secs_row ; left position for two sec figures | |
2713 PUTC ':' | |
2714 bsf leftbind | |
2715 movff divesecs,lo | |
2716 output_99x | |
2717 bcf leftbind | |
2718 STRCAT_PRINT "" ; Show seconds in small font | |
0 | 2719 return |
2720 | |
2721 ;============================================================================= | |
2722 ; Writes ostc3 #Serial and Firmware version in splash screen | |
2723 ; | |
2724 global TFT_serial | |
2725 TFT_serial: | |
213 | 2726 WIN_TINY .5,.225 |
200 | 2727 STRCPY "OSTC" ; Won't translate that... |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
2728 btfsc rechargeable |
200 | 2729 bra TFT_serial2 |
2730 STRCAT "3 #" | |
2731 bra TFT_serial3 | |
2732 TFT_serial2: | |
2733 STRCAT " cR #" | |
2734 TFT_serial3: | |
0 | 2735 rcall TFT_cat_serial |
2736 | |
2737 STRCAT " v" | |
180 | 2738 WIN_COLOR color_greenish |
0 | 2739 rcall TFT_cat_firmware |
2740 | |
2741 ifdef __DEBUG | |
2742 movlw color_grey ; Write header in blue when | |
2743 call TFT_set_color ; compiled in DEBUG mode... | |
2744 STRCAT_PRINT "DEBUG" | |
2745 else | |
76 | 2746 STRCAT_PRINT "" |
189
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
2747 bcf win_invert ; Reset invert flag |
0 | 2748 call TFT_standard_color |
76 | 2749 |
0 | 2750 movlw softwareversion_beta ; =1: Beta, =0: Release |
2751 decfsz WREG,F | |
2752 return ; Release version -> Return | |
2753 | |
2754 call TFT_warnings_color | |
2755 WIN_LEFT .160-4*9/2 ; Right pad. | |
2756 STRCPY_TEXT_PRINT tBeta | |
2757 endif | |
76 | 2758 call TFT_standard_color |
0 | 2759 return |
2760 | |
2761 | |
2762 | |
2763 ;============================================================================= | |
2764 ; For the Information menu: append firmware x.yy version. | |
2765 global info_menu_firmware | |
2766 extern tFirmware | |
2767 info_menu_firmware: | |
2768 lfsr FSR1,tFirmware | |
2769 call strcat_text | |
180 | 2770 rcall TFT_cat_firmware |
189
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
2771 bcf win_invert ; Reset invert flag |
180 | 2772 return |
2773 | |
76 | 2774 global TFT_cat_firmware |
0 | 2775 TFT_cat_firmware: |
2776 movlw softwareversion_x | |
2777 movwf lo | |
2778 bsf leftbind | |
2779 output_8 | |
2780 PUTC '.' | |
2781 movlw softwareversion_y | |
2782 movwf lo | |
2783 output_99x | |
2784 bcf leftbind | |
180 | 2785 ; Check firmware date |
2786 movlw firmware_expire_year-.1 | |
2787 cpfsgt year ; > threshold? | |
2788 return | |
2789 movlw firmware_expire_month-.1 | |
2790 cpfsgt month ; > threshold? | |
2791 return | |
2792 movlw firmware_expire_day-.1 | |
2793 cpfsgt day ; > threshold? | |
2794 return | |
2795 | |
2796 ; Show in "change firmware" style | |
2797 movlw color_yellow | |
2798 call TFT_set_color | |
189
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
2799 bsf win_invert ; Set invert flag |
0 | 2800 return |
2801 | |
2802 ;----------------------------------------------------------------------------- | |
2803 ; For the Information menu: append serial number ostc3#42. | |
2804 global info_menu_serial | |
2805 extern tSerial | |
2806 info_menu_serial: | |
2807 lfsr FSR1,tSerial | |
2808 call strcat_text | |
76 | 2809 global TFT_cat_serial |
0 | 2810 TFT_cat_serial: |
2811 clrf EEADRH | |
2812 clrf EEADR ; Get Serial number LOW | |
2813 call read_eeprom ; read byte | |
2814 movff EEDATA,lo | |
2815 incf EEADR,F ; Get Serial number HIGH | |
2816 call read_eeprom ; read byte | |
2817 movff EEDATA,hi | |
2818 | |
2819 bsf leftbind | |
2820 output_16 | |
2821 bcf leftbind | |
2822 return | |
2823 | |
2824 ;----------------------------------------------------------------------------- | |
2825 ; For the Information menu: Append total dives | |
2826 global info_menu_total_dives | |
2827 extern tTotalDives | |
2828 info_menu_total_dives: | |
2829 lfsr FSR1,tTotalDives | |
2830 call strcat_text | |
2831 TFT_cat_total_dives: | |
2832 read_int_eeprom .2 | |
2833 movff EEDATA,lo | |
2834 read_int_eeprom .3 | |
2835 movff EEDATA,hi | |
2836 bsf leftbind | |
2837 output_16 | |
2838 bcf leftbind | |
2839 return | |
2840 | |
62 | 2841 ; For the Information menu: Append battery voltage |
2842 global info_menu_battery_volts | |
2843 extern tBatteryV | |
2844 info_menu_battery_volts: | |
2845 lfsr FSR1,tBatteryV | |
2846 call strcat_text | |
2847 movff batt_voltage+1,hi | |
2848 movff batt_voltage+0,lo | |
2849 bsf leftbind | |
2850 output_16dp .2 ; x.xxx | |
2851 bcf leftbind | |
2852 PUTC "V" | |
2853 return | |
2854 | |
0 | 2855 ;----------------------------------------------------------------------------- |
2856 ; ppO2 menu | |
2857 global divesets_ppo2_max | |
2858 extern tPPO2Max | |
2859 extern tbar | |
2860 divesets_ppo2_max: | |
2861 lfsr FSR1,tPPO2Max | |
2862 call strcat_text | |
2863 movff opt_ppO2_max,lo | |
2864 movlw ppo2_warning_high | |
2865 divesets_ppo2_common: | |
2866 movwf up ; Save default value | |
2867 clrf hi | |
2868 bsf leftbind | |
2869 output_16dp d'3' | |
2870 bcf leftbind | |
2871 lfsr FSR1,tbar | |
2872 call strcat_text | |
2873 | |
2874 movf up,W ; Default value | |
2875 cpfseq lo ; Current value | |
2876 bra divesets_ppo2_common2 ; Not default, add * | |
2877 return ; Default, Done. | |
2878 divesets_ppo2_common2: | |
2879 PUTC "*" | |
2880 return ; Done. | |
2881 | |
2882 global divesets_ppo2_min | |
2883 extern tPPO2Min | |
2884 divesets_ppo2_min: | |
2885 lfsr FSR1,tPPO2Min | |
2886 call strcat_text | |
2887 movff opt_ppO2_min,lo | |
2888 movlw ppo2_warning_low | |
2889 bra divesets_ppo2_common | |
2890 | |
2891 ;============================================================================= | |
2892 | |
2893 global TFT_clear_warning_text | |
2894 TFT_clear_warning_text: | |
2895 btfss divemode ; in divemode? | |
2896 bra TFT_clear_warning_text2 ; No, setup for surface mode | |
2897 WIN_BOX_BLACK warning1_row, divemode_customview_row-3, warning1_column, warning_icon_column-3 ;top, bottom, left, right | |
2898 return | |
2899 TFT_clear_warning_text2: | |
2900 WIN_BOX_BLACK surf_warning1_row, surf_warning2_row+.24, surf_warning1_column, surf_warning1_column+.76 ;top, bottom, left, right | |
2901 return | |
2902 | |
2903 global TFT_clear_warning_text_2nd_row | |
2904 TFT_clear_warning_text_2nd_row: | |
2905 btfss divemode ; in divemode? | |
2906 bra TFT_clear_warning_text_2nd_2 ; No, setup for surface mode | |
2907 WIN_BOX_BLACK warning2_row, divemode_customview_row-3, warning2_column, warning_icon_column-3 ;top, bottom, left, right | |
2908 return | |
2909 TFT_clear_warning_text_2nd_2: | |
2910 WIN_BOX_BLACK surf_warning2_row, surf_warning2_row+.24, surf_warning2_column, surf_warning2_column+.76 ;top, bottom, left, right | |
2911 return | |
2912 | |
2913 global TFT_fillup_with_spaces | |
2914 TFT_fillup_with_spaces: ; Fillup FSR2 with spaces (Total string length in #WREG) | |
2915 movwf lo ; save max. string length into lo | |
2916 movf FSR2L,W ; Get current string length | |
2917 subwf lo,F ; lo-WREG | |
2918 btfsc STATUS,N ; longer then #lo already? | |
2919 return ; Yes, done. | |
2920 tstfsz lo ; Zero? | |
2921 bra TFT_fillup_with_spaces2 ; No. | |
2922 return ; Yes, done. | |
2923 TFT_fillup_with_spaces2: | |
2924 PUTC " " ; Add one space | |
2925 decfsz lo,F ; All done? | |
2926 bra TFT_fillup_with_spaces2 ; No, loop | |
2927 return ; Done. | |
2928 | |
2929 global TFT_desaturation_time | |
2930 TFT_desaturation_time: | |
2931 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
2932 tstfsz WREG ; Is there room for the warning? | |
2933 return ; No | |
2934 STRCPY "Desat:" | |
2935 movff desaturation_time+0,lo ; divide by 60... | |
2936 movff desaturation_time+1,hi | |
2937 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
2938 bsf leftbind | |
2939 movf lo,W | |
2940 movff hi,lo | |
2941 movwf hi ; exchange lo and hi... | |
2942 output_8 ; Hours | |
2943 PUTC ':' | |
2944 movff hi,lo ; Minutes | |
2945 output_99x | |
2946 bcf leftbind | |
2947 movlw surf_warning_length ; Only use surface string length | |
2948 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
60 | 2949 movlw .0 |
2950 movff WREG,buffer+11 | |
0 | 2951 STRCAT_PRINT "" |
2952 return | |
2953 | |
2954 global TFT_nofly_time | |
2955 TFT_nofly_time: | |
2956 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
2957 tstfsz WREG ; Is there room for the warning? | |
2958 return ; No | |
2959 STRCPY "NoFly:" | |
2960 movff nofly_time+0,lo ; divide by 60... | |
2961 movff nofly_time+1,hi | |
2962 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
2963 bsf leftbind | |
2964 movf lo,W | |
2965 movff hi,lo | |
2966 movwf hi ; exchange lo and hi... | |
2967 output_8 ; Hours | |
2968 PUTC ':' | |
2969 movff hi,lo ; Minutes | |
2970 output_99x | |
2971 bcf leftbind | |
2972 movlw surf_warning_length ; Only use surface string length | |
2973 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
60 | 2974 movlw .0 |
2975 movff WREG,buffer+11 | |
0 | 2976 STRCAT_PRINT "" |
2977 return | |
2978 | |
2979 global TFT_warning_agf | |
2980 TFT_warning_agf: | |
2981 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
2982 tstfsz WREG ; Is there room for the warning? | |
2983 return ; No | |
2984 call TFT_warnings_color | |
2985 STRCPY_TEXT tDiveaGF_active ; "aGF!" | |
2986 movlw warning_length ; Divemode string length | |
2987 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
2988 STRCAT_PRINT "" | |
2989 call TFT_standard_color | |
2990 return | |
2991 | |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
2992 global TFT_warning_fallback |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
2993 TFT_warning_fallback: ; Show fallback warning |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
2994 rcall TFT_warning_set_window ; Sets the row and column for the current warning |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
2995 tstfsz WREG ; Is there room for the warning? |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
2996 return ; No |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
2997 call TFT_warnings_color |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
2998 STRCPY_TEXT tDiveFallback ; "Fallback!" |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
2999 movlw warning_length ; Divemode string length |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
3000 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
3001 STRCAT_PRINT "" |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
3002 call TFT_standard_color |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
3003 return |
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
3004 |
0 | 3005 global TFT_warning_gf |
3006 TFT_warning_gf: ;GF | |
3007 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
3008 tstfsz WREG ; Is there room for the warning? | |
3009 return ; No | |
3010 TFT_color_code warn_gf ; Color-code Output | |
3011 STRCPY "GF:" | |
3012 movff char_O_gradient_factor,lo ; gradient factor | |
3013 bsf leftbind | |
3014 output_8 | |
3015 PUTC "%" | |
3016 movlw warning_length ; Divemode string length | |
3017 btfss divemode ; In Divemode? | |
3018 movlw surf_warning_length ; No, use surface string length | |
3019 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
3020 STRCAT_PRINT "" | |
3021 bcf leftbind | |
3022 call TFT_standard_color | |
3023 return | |
3024 | |
3025 TFT_warning_set_window: ; Sets the row and column for the current warning | |
3026 ; ignore warning (now)? | |
3027 decf warning_counter,W ; -1 | |
3028 bcf STATUS,C | |
3029 rrcf WREG,W ; (warning_counter-1)/2 | |
3030 cpfseq warning_page | |
3031 retlw .255 ; WREG <> 0 -> Warning window not defined | |
3032 | |
3033 call TFT_standard_color | |
3034 | |
3035 btfss divemode ; in divemode? | |
3036 bra TFT_warning_set_window3 ; No, setup for surface mode | |
3037 | |
3038 btfss warning_counter,0 ; Toggle with each warning | |
3039 bra TFT_warning_set_window2 | |
3040 WIN_SMALL warning1_column,warning1_row | |
3041 bcf second_row_warning ; =1: The second row contains a warning | |
3042 retlw .0 ; WREG=0 -> Warning window defined | |
3043 TFT_warning_set_window2: | |
3044 WIN_SMALL warning2_column,warning2_row | |
3045 bsf second_row_warning ; =1: The second row contains a warning | |
3046 retlw .0 ; WREG=0 -> Warning window defined | |
3047 | |
3048 TFT_warning_set_window3: | |
3049 btfss warning_counter,0 ; Toggle with each warning | |
3050 bra TFT_warning_set_window4 | |
3051 WIN_SMALL surf_warning1_column,surf_warning1_row | |
3052 bcf second_row_warning ; =1: The second row contains a warning | |
3053 retlw .0 ; WREG=0 -> Warning window defined | |
3054 TFT_warning_set_window4: | |
3055 WIN_SMALL surf_warning2_column,surf_warning2_row | |
3056 bsf second_row_warning ; =1: The second row contains a warning | |
3057 retlw .0 ; WREG=0 -> Warning window defined | |
3058 | |
3059 | |
3060 global TFT_update_batt_percent_divemode | |
3061 TFT_update_batt_percent_divemode: | |
3062 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
3063 tstfsz WREG ; Is there room for the warning? | |
3064 return ; No | |
3065 movff batt_percent,lo ; Get battery percent | |
3066 TFT_color_code warn_battery; Color-code battery percent | |
3067 STRCPY "Batt:" | |
3068 bsf leftbind | |
3069 output_8 | |
3070 bcf leftbind | |
3071 PUTC "%" | |
3072 movlw warning_length ; Divemode string length | |
3073 btfss divemode ; In Divemode? | |
3074 movlw surf_warning_length ; No, use surface string length | |
3075 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
3076 STRCAT_PRINT "" | |
3077 call TFT_standard_color | |
3078 return | |
3079 | |
3080 | |
3081 global TFT_gf_mask ; Setup Mask | |
3082 TFT_gf_mask: | |
3083 ; The mask | |
3084 call TFT_divemask_color | |
3085 WIN_TINY dive_gf_column1,dive_gf_text_row | |
3086 STRCPY_TEXT_PRINT tGFactors | |
3087 WIN_TINY dive_gf_column2,dive_gf_text_row | |
3088 STRCPY_TEXT_PRINT taGFactors | |
3089 WIN_TINY dive_gf_column3,dive_gf_text_row | |
3090 STRCPY_TEXT_PRINT tGFInfo | |
3091 | |
3092 ; Show GF (Static) | |
3093 call TFT_disabled_color | |
3094 btfss use_agf | |
3095 call TFT_standard_color | |
3096 | |
3097 WIN_STD dive_gf_column,dive_gf_row | |
3098 bsf leftbind | |
3099 movff opt_GF_low,lo | |
3100 output_8 | |
3101 PUTC "/" | |
3102 movff opt_GF_high,lo | |
3103 output_8 | |
3104 STRCAT_PRINT "" | |
3105 ; Show aGF (Static) | |
3106 call TFT_standard_color | |
3107 TSTOSS opt_enable_aGF ; =1: aGF can be selected underwater | |
3108 bra TFT_gf_mask2 ; Show "---" instead | |
3109 | |
3110 btfss use_agf | |
3111 call TFT_disabled_color | |
3112 | |
3113 WIN_STD dive_agf_column,dive_agf_row | |
3114 movff opt_aGF_low,lo | |
3115 output_8 | |
3116 PUTC "/" | |
3117 movff opt_aGF_high,lo | |
3118 output_8 | |
3119 STRCAT_PRINT "" | |
3120 bcf leftbind | |
3121 call TFT_standard_color | |
3122 return | |
3123 | |
3124 TFT_gf_mask2: | |
3125 WIN_STD dive_agf_column+.10,dive_agf_row | |
3126 STRCPY_PRINT "---" | |
3127 bcf leftbind | |
3128 return | |
3129 | |
3130 global TFT_gf_info ; Show GF informations | |
3131 TFT_gf_info: | |
3132 ; Show current GF | |
3133 movff char_O_gradient_factor,lo ; gradient factor absolute (Non-GF model) | |
3134 movff char_I_deco_model,hi | |
3135 decfsz hi,F ; jump over next line if char_I_deco_model == 1 | |
3136 movff char_O_relative_gradient_GF,lo ; gradient factor relative (GF model) | |
3137 WIN_STD dive_currentgf_column,dive_currentgf_row | |
3138 output_8 | |
3139 STRCAT_PRINT "%" | |
3140 return | |
3141 | |
3142 global TFT_ead_end_tissues_clock_mask ; Setup Mask | |
3143 TFT_ead_end_tissues_clock_mask: | |
3144 ; The mask | |
3145 call TFT_divemask_color | |
134
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3146 btfsc FLAG_apnoe_mode ; In Apnoe mode? |
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3147 bra TFT_ead_end_tissues_clock_mask2 ; Yes |
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3148 btfsc FLAG_gauge_mode ; In Gauge mode? |
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3149 bra TFT_ead_end_tissues_clock_mask2 ; Yes |
0 | 3150 ; Put three columns at HUD positions |
3151 WIN_TINY dive_custom_hud_column2,dive_custom_hud_row | |
3152 STRCPY_TEXT_PRINT tDiveEAD_END | |
3153 WIN_TINY dive_custom_hud_column3,dive_custom_hud_row | |
3154 STRCPY_TEXT_PRINT tDiveTissues | |
134
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3155 TFT_ead_end_tissues_clock_mask2: ; Show only clock |
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3156 WIN_TINY dive_custom_hud_column1,dive_custom_hud_row |
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3157 STRCPY_TEXT_PRINT tDiveClock |
0 | 3158 call TFT_standard_color |
3159 return | |
3160 | |
3161 global TFT_ead_end_tissues_clock ; Show EAD/END, Tissues and clock | |
3162 TFT_ead_end_tissues_clock: | |
3163 ; Update clock and date | |
3164 WIN_SMALL dive_clock_column,dive_clock_row | |
3165 call TFT_clock2 ; print clock | |
134
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3166 |
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3167 btfsc FLAG_apnoe_mode ; In Apnoe mode? |
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3168 return ; Yes, done. |
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3169 btfsc FLAG_gauge_mode ; In Gauge mode? |
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3170 return ; Yes, done. |
4574aed5cd4c
Show clock in Apnea mode, minor layout changes in Apnea mode
heinrichsweikamp
parents:
131
diff
changeset
|
3171 |
105 | 3172 ; WIN_SMALL dive_endtime_column,dive_endtime_row |
3173 ; | |
3174 ; btfss decostop_active ; Already in nodeco mode ? | |
3175 ; bra TFT_ead_end_tissues_clock2 ; No, overwrite with some spaces | |
3176 ; | |
3177 ; STRCPY 0x94 ; "End of dive" icon | |
3178 ; movff hours,WREG | |
3179 ; mullw .60 | |
3180 ; movf mins,W | |
3181 ; addwf PRODL | |
3182 ; movlw .0 | |
3183 ; addwfc PRODH | |
3184 ; movff PRODL, lo | |
3185 ; movff PRODH, hi | |
3186 ; | |
3187 ; ; Add TTS | |
3188 ; movff int_O_ascenttime+0,WREG ; TTS | |
3189 ; addwf lo,F | |
3190 ; movff int_O_ascenttime+1,WREG ; TTS is 16bits | |
3191 ; addwfc hi,F | |
3192 ; | |
3193 ; call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
3194 ; movf hi,W | |
3195 ; movff lo,hi | |
3196 ; movwf lo ; exchange lo and hi | |
3197 ; output_99x | |
3198 ; PUTC ':' | |
3199 ; movff hi,lo | |
3200 ; output_99x | |
3201 ; STRCAT_PRINT "" | |
3202 ; bra TFT_ead_end_tissues_clock3 | |
3203 ; | |
3204 ;TFT_ead_end_tissues_clock2: | |
3205 ; STRCPY_PRINT " " | |
3206 ;TFT_ead_end_tissues_clock3: | |
0 | 3207 |
3208 ; Show END/EAD | |
3209 WIN_SMALL dive_ead_column,dive_ead_row | |
3210 STRCPY_TEXT tEAD ; EAD: | |
3211 movff char_O_EAD,lo | |
3212 rcall TFT_end_ead_common ; print "lo m" (or ft) and limit to 8 chars | |
3213 WIN_SMALL dive_end_column,dive_end_row | |
3214 STRCPY_TEXT tEND ; END: | |
3215 movff char_O_END,lo | |
3216 rcall TFT_end_ead_common ; print "lo m" (or ft) and limit to 8 chars | |
3217 | |
3218 ; Show tissue diagram | |
3219 call TFT_divemask_color | |
3220 WIN_TINY dive_tissue_N2_column,dive_tissue_N2_row | |
3221 STRCPY_TEXT_PRINT tN2 | |
3222 WIN_TINY dive_tissue_He_column,dive_tissue_He_row | |
3223 STRCPY_TEXT_PRINT tHe | |
3224 call deco_calc_desaturation_time ; calculate desaturation time (and char_O_tissue_N2_saturation and char_O_tissue_He_saturation) | |
3225 movlb b'00000001' ; select ram bank 1 | |
3226 rcall DISP_tissue_saturation_graph ; Show char_O_tissue_N2_saturation and char_O_tissue_He_saturation | |
3227 return | |
3228 | |
3229 TFT_end_ead_common: ; print "lo m" (or ft) and limit to 8 chars | |
3230 bsf leftbind | |
3231 TSTOSS opt_units ; 0=Meters, 1=Feets | |
3232 bra TFT_end_ead_common_metric | |
3233 ;TFT_end_ead_common_imperial: | |
3234 ; With lo in m | |
3235 movf lo,W | |
3236 mullw .100 ; PRODL:PRODH = mbar/min | |
3237 movff PRODL,lo | |
3238 movff PRODH,hi | |
3239 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
3240 output_16_3 | |
3241 STRCAT_TEXT tFeets | |
3242 clrf WREG | |
3243 movff WREG,buffer+.8 ; limit string length to 8 | |
3244 bra TFT_end_ead_common_exit | |
3245 TFT_end_ead_common_metric: | |
3246 output_8 | |
3247 STRCAT_TEXT tMeters | |
3248 TFT_end_ead_common_exit: | |
3249 bcf leftbind | |
3250 movlw .8 | |
3251 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
3252 STRCAT_PRINT "" | |
3253 return | |
3254 | |
3255 global TFT_surface_tissues | |
3256 TFT_surface_tissues: ; Show Tissue diagram in surface mode | |
3257 WIN_SMALL surf_tissue_N2_column,surf_tissue_N2_row | |
3258 STRCPY_TEXT_PRINT tN2 | |
3259 WIN_SMALL surf_tissue_He_column,surf_tissue_He_row | |
3260 STRCPY_TEXT_PRINT tHe | |
3261 | |
3262 call deco_calc_desaturation_time ; calculate desaturation time (and char_O_tissue_N2_saturation and char_O_tissue_He_saturation) | |
3263 movlb b'00000001' ; select ram bank 1 | |
3264 | |
3265 movlw color_deepblue | |
3266 call TFT_set_color ; Make this configurable? | |
3267 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.29,.29 | |
3268 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.37,.37 | |
3269 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.45,.45 | |
3270 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.53,.53 | |
3271 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.61,.61 | |
3272 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.69,.69 | |
3273 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.77,.77 | |
3274 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.85,.85 | |
3275 WIN_FRAME_STD surf_tissue_diagram_top, surf_tissue_diagram_bottom, surf_tissue_diagram_left, surf_tissue_diagram_right ; outer frame | |
3276 | |
3277 movlw .1 | |
3278 movff WREG,win_height ; row bottom (0-239) | |
3279 movlw surf_tissue_diagram_left+.4 ; Surface mode | |
3280 movff WREG,win_leftx2 ; column left (0-159) | |
3281 movlw surf_tissue_diagram_right-surf_tissue_diagram_left-4 ; Width | |
3282 movff WREG,win_width | |
3283 | |
3284 ;---- Draw N2 Tissues | |
3285 lfsr FSR2, char_O_tissue_N2_saturation | |
3286 movlw d'16' | |
3287 movwf wait_temp ; 16 tissues | |
3288 clrf waitms_temp ; Row offset | |
3289 surf_tissue_saturation_graph_N2: | |
3290 movlw surf_tissue_diagram_top+.23 ; surface mode | |
3291 addwf waitms_temp,W | |
3292 movff WREG,win_top ; row top (0-239) | |
3293 rcall surf_tissue_saturation_loop ; Show one tissue | |
3294 decfsz wait_temp,F | |
3295 bra surf_tissue_saturation_graph_N2 | |
3296 | |
3297 ;---- Draw He Tissues ---------------------------------------------------- | |
3298 lfsr FSR2, char_O_tissue_He_saturation | |
3299 movlw d'16' | |
3300 movwf wait_temp ; 16 tissues | |
3301 clrf waitms_temp ; Row offset | |
3302 surf_tissue_saturation_graph_He: | |
3303 movlw surf_tissue_diagram_top+.23+.56 ; surface mode | |
3304 addwf waitms_temp,W | |
3305 movff WREG,win_top ; row top (0-239) | |
3306 rcall surf_tissue_saturation_loop ; Show one tissue | |
3307 decfsz wait_temp,F | |
3308 bra surf_tissue_saturation_graph_He | |
3309 return | |
3310 | |
3311 surf_tissue_saturation_loop: | |
3312 call TFT_standard_color | |
3313 movlw .2 ; row spacing | |
3314 addwf waitms_temp,F | |
3315 movf POSTINC2,W ; Get tissue load | |
3316 bcf STATUS,C | |
3317 rrcf WREG ; And divide by 2 | |
3318 movwf temp1 | |
3319 movlw .20 | |
3320 subwf temp1,F ; Subtract some offset | |
3321 movff win_width,WREG ; Max width. | |
3322 cpfslt temp1 ; skip if WREG < win_width | |
3323 movwf temp1 | |
3324 movff temp1,win_bargraph | |
3325 call TFT_box | |
3326 return | |
3327 | |
3328 ;============================================================================= | |
3329 ; Draw saturation graph, is surface mode or in dive mode. | |
3330 DISP_tissue_saturation_graph: | |
3331 ;---- Draw Frame | |
50 | 3332 call TFT_standard_color |
3333 WIN_FRAME_COLOR16 tissue_diagram_top, tissue_diagram_bottom, tissue_diagram_left, .159 ; outer frame | |
0 | 3334 |
3335 movlw .1 | |
3336 movff WREG,win_height ; row bottom (0-239) | |
3337 movlw tissue_diagram_left+.3 ; divemode | |
3338 movff WREG,win_leftx2 ; column left (0-159) | |
3339 movlw .159-tissue_diagram_left-4 ; Width | |
3340 movff WREG,win_width | |
3341 | |
3342 ;---- Draw N2 Tissues | |
3343 lfsr FSR2, char_O_tissue_N2_saturation | |
3344 movlw d'16' | |
3345 movwf wait_temp ; 16 tissues | |
3346 clrf waitms_temp ; Row offset | |
3347 tissue_saturation_graph_N2: | |
3348 movlw tissue_diagram_top+3 ; divemode | |
3349 addwf waitms_temp,W | |
3350 movff WREG,win_top ; row top (0-239) | |
3351 rcall tissue_saturation_graph_loop ; Show one tissue | |
3352 decfsz wait_temp,F | |
3353 bra tissue_saturation_graph_N2 | |
3354 | |
3355 ;---- Draw He Tissues ---------------------------------------------------- | |
3356 lfsr FSR2, char_O_tissue_He_saturation | |
3357 movlw d'16' | |
3358 movwf wait_temp ; 16 tissues | |
3359 clrf waitms_temp ; Row offset | |
3360 tissue_saturation_graph_He: | |
3361 movlw tissue_diagram_top+3+.22 ; divemode | |
3362 addwf waitms_temp,W | |
3363 movff WREG,win_top ; row top (0-239) | |
3364 | |
3365 rcall tissue_saturation_graph_loop ; Show one tissue | |
3366 | |
3367 decfsz wait_temp,F | |
3368 bra tissue_saturation_graph_He | |
3369 return | |
3370 | |
3371 tissue_saturation_graph_loop: | |
3372 call TFT_standard_color | |
3373 incf waitms_temp,F | |
3374 movf POSTINC2,W | |
3375 bcf STATUS,C | |
3376 rrcf WREG | |
3377 bcf STATUS,C | |
3378 rrcf WREG ; And divide by 4 | |
3379 movwf temp1 | |
3380 movlw .12 | |
3381 subwf temp1,F ; Subtract some offset | |
3382 movff win_width,WREG ; Max width. | |
3383 cpfslt temp1 ; skip if WREG < win_width | |
3384 movwf temp1 | |
3385 movff temp1,win_bargraph | |
3386 call TFT_box | |
3387 return | |
3388 | |
55 | 3389 |
0 | 3390 global TFT_display_cns |
3391 TFT_display_cns: | |
3392 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
3393 tstfsz WREG ; Is there room for the warning? | |
3394 return ; No | |
3395 TFT_color_code warn_cns ; Color-code CNS output | |
3396 STRCPY_TEXT tCNS2 ; CNS: | |
3397 movff int_O_CNS_fraction+0,lo | |
3398 movff int_O_CNS_fraction+1,hi | |
3399 bsf leftbind | |
3400 output_16_3 ;Displays only 0...999 | |
3401 bcf leftbind | |
3402 PUTC "%" | |
3403 movlw warning_length ; Divemode string length | |
3404 btfss divemode ; In Divemode? | |
3405 movlw surf_warning_length ; No, use surface string length | |
3406 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
3407 STRCAT_PRINT "" | |
3408 call TFT_standard_color | |
3409 return | |
3410 | |
3411 global TFT_display_ppo2 | |
3412 TFT_display_ppo2: ; Show ppO2 (ppO2 stored in xC, in mbar!) | |
3413 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
3414 tstfsz WREG ; Is there room for the warning? | |
3415 return ; No | |
3416 TFT_color_code warn_ppo2 ; Color-code output (ppO2 stored in xC) | |
154
afa31c815f24
NEW: Show ppO2 for change depth during gas setup
heinrichsweikamp
parents:
153
diff
changeset
|
3417 STRCPY_TEXT tppO2 ; ppO2: |
0 | 3418 ; Check very high ppO2 manually |
3419 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? | |
3420 bra TFT_show_ppO2_3 ; Yes, display fixed Value! | |
3421 movff xC+0,lo | |
3422 movff xC+1,hi | |
3423 bsf ignore_digit4 | |
3424 output_16dp d'1' | |
3425 TFT_show_ppO2_2: | |
3426 movlw warning_length ; Divemode string length | |
3427 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
3428 STRCAT_PRINT "" | |
3429 call TFT_standard_color | |
3430 return | |
3431 | |
3432 TFT_show_ppO2_3: | |
3433 STRCAT ">6.6" | |
3434 bra TFT_show_ppO2_2 | |
3435 | |
3436 | |
3437 global TFT_LogOffset_Logtitle | |
3438 TFT_LogOffset_Logtitle: | |
3439 STRCPY_TEXT tLogOffset | |
3440 PUTC ":" | |
3441 call do_logoffset_common_read ; Offset into lo:hi | |
3442 bsf leftbind | |
3443 output_16 | |
3444 bcf leftbind | |
3445 PUTC " " | |
3446 return ; No "_PRINT" here... | |
3447 | |
3448 | |
3449 global adjust_depth_with_salinity | |
3450 adjust_depth_with_salinity: ; computes salinity setting into lo:hi [mbar] | |
3451 btfsc simulatormode_active ; Do apply salinity in Simulatormode | |
3452 return | |
3453 | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
3454 global adjust_depth_with_salinity_log |
0 | 3455 movff opt_salinity,WREG ; 0-5% |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
3456 adjust_depth_with_salinity_log: ; computes salinity setting (FROM WREG!) into lo:hi [mbar] |
0 | 3457 addlw d'100' ; 1.00kg/l |
3458 movwf wait_temp | |
3459 | |
3460 movlw d'105' ; 105% ? | |
3461 cpfslt wait_temp ; Salinity higher limit | |
3462 return ; Out of limit, do not adjust lo:hi | |
3463 movlw d'99' ; 99% ? | |
3464 cpfsgt wait_temp ; Salinity lower limit | |
3465 return ; Out of limit, do not adjust lo:hi | |
3466 | |
3467 movff lo,xA+0 | |
3468 movff hi,xA+1 | |
3469 | |
3470 movlw d'102' ; 0,98bar/10m | |
3471 movwf xB+0 | |
3472 clrf xB+1 | |
3473 call mult16x16 ;xA*xB=xC (lo:hi * 100) | |
3474 movff wait_temp,xB+0 ; Salinity | |
3475 clrf xB+1 | |
3476 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3477 movff xC+0,lo | |
3478 movff xC+1,hi ; restore lo and hi with updated value | |
3479 return | |
3480 | |
3481 global convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
3482 convert_mbar_to_feet: ; convert value in lo:hi from mbar to feet | |
3483 movff lo,xA+0 | |
3484 movff hi,xA+1 | |
3485 | |
3486 movlw LOW d'328' ; 328feet/100m | |
3487 movwf xB+0 | |
3488 movlw HIGH d'328' | |
3489 movwf xB+1 | |
3490 | |
3491 call mult16x16 ; xA*xB=xC (lo:hi * 328) | |
3492 | |
3493 movlw d'50' ; round up | |
3494 addwf xC+0,F | |
3495 movlw 0 | |
3496 addwfc xC+1,F | |
3497 addwfc xC+2,F | |
3498 addwfc xC+3,F | |
3499 | |
3500 movlw LOW .10000 | |
3501 movwf xB+0 | |
3502 movlw HIGH .10000 | |
3503 movwf xB+1 | |
3504 | |
3505 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3506 | |
3507 movff xC+0,lo | |
3508 movff xC+1,hi ; restore lo and hi with updated value | |
3509 return | |
3510 | |
3511 global convert_celsius_to_fahrenheit ; convert value in lo:hi from celsius to fahrenheit | |
3512 convert_celsius_to_fahrenheit: ; convert value in lo:hi from celsius to fahrenheit | |
3513 ; Does it work with signed temperature? mH | |
3514 movff lo,xA+0 | |
3515 movff hi,xA+1 | |
3516 | |
3517 movlw d'18' ; 1C = 1.8F | |
3518 movwf xB+0 | |
3519 clrf xB+1 | |
3520 | |
3521 call mult16x16 ;xA*xB=xC (lo:hi * 18) | |
3522 | |
3523 movlw d'10' | |
3524 movwf xB+0 | |
3525 clrf xB+1 | |
3526 | |
3527 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3528 | |
3529 movlw LOW d'320' ; 0C = 32F | |
3530 addwf xC+0,F | |
3531 movlw HIGH d'320' | |
3532 addwfc xC+1,F | |
3533 | |
3534 movff xC+0,lo | |
3535 movff xC+1,hi ; restore lo and hi with updated value | |
3536 return | |
3537 | |
3538 END |