Mercurial > public > hwos_code
annotate src/tft_outputs.asm @ 621:1ad0531e9078
3.01 release
author | heinrichsweikamp |
---|---|
date | Sat, 23 Feb 2019 16:51:14 +0100 |
parents | b87f23fae743 |
children | c40025d8e750 |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
608 | 3 ; File tft_outputs.asm REFACTORED VERSION V2.99f |
0 | 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 | |
604 | 12 #include "hwos.inc" ; mandatory header |
13 #include "shared_definitions.h" ; mailbox from/to p2_deco.c | |
582 | 14 #include "tft.inc" |
15 #include "start.inc" | |
16 #include "wait.inc" | |
17 #include "strings.inc" | |
18 #include "convert.inc" | |
19 #include "varargs.inc" | |
20 #include "math.inc" | |
21 #include "isr.inc" | |
22 #include "eeprom_rs232.inc" | |
23 #include "adc_lightsensor.inc" | |
24 #include "surfmode.inc" | |
25 #include "divemode.inc" | |
26 #include "external_flash.inc" | |
27 #include "ghostwriter.inc" | |
28 #include "customview.inc" | |
29 #include "i2c.inc" | |
30 #include "colorschemes.inc" | |
31 #include "calibrate.inc" | |
604 | 32 #include "gaslist.inc" |
33 | |
34 IFDEF _rx_functions | |
35 #include "rx_ops.inc" | |
36 ENDIF | |
560 | 37 |
0 | 38 extern aa_wordprocessor |
604 | 39 extern get_first_gas_to_WREG |
40 extern get_first_dil_to_WREG | |
41 | |
42 extern tFirmware | |
43 extern tSerial | |
44 extern tTotalDives | |
45 extern tBatteryV | |
46 extern tUptime | |
47 extern tCalX,tCalY,tCalZ | |
48 extern tPPO2MIN | |
49 extern tPPO2MINCC | |
50 extern tPPO2Max | |
51 extern tPPO2DECO | |
52 | |
53 IFDEF _rx_functions | |
54 extern tFirmware_rx | |
55 ENDIF | |
0 | 56 |
57 ;============================================================================= | |
58 | |
604 | 59 tft_out CODE |
582 | 60 |
0 | 61 ;============================================================================= |
62 | |
582 | 63 global TFT_divemask_color |
0 | 64 TFT_divemask_color: |
582 | 65 movlw color_green |
604 | 66 btfsc divemode ; in divemode? |
582 | 67 rcall TFT_divemask_color_dive |
50 | 68 bra TFT_standard_color0 |
69 | |
70 TFT_divemask_color_dive: | |
582 | 71 movff opt_dive_color_scheme,WREG ; 0-3 |
72 incf WREG | |
50 | 73 dcfsnz WREG |
582 | 74 retlw color_scheme_divemode_mask1 ;0 |
50 | 75 dcfsnz WREG |
582 | 76 retlw color_scheme_divemode_mask2 ;1 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
77 dcfsnz WREG |
582 | 78 retlw color_scheme_divemode_mask3 ;2 |
79 retlw color_scheme_divemode_mask4 ;3 | |
80 | |
81 | |
604 | 82 global TFT_memo_color |
83 TFT_memo_color: ; information, values within normal range, things without a need to react upon | |
84 movlw color_white | |
85 bra TFT_standard_color0 | |
605 | 86 TFT_memo_color_dive: |
87 retlw color_white | |
604 | 88 |
89 global TFT_advice_color | |
90 TFT_advice_color: ; advices to do something, but without essential need to actually do it | |
91 movlw color_green | |
92 bra TFT_standard_color0 | |
93 TFT_advice_color_dive: | |
94 retlw color_green | |
95 | |
96 global TFT_attention_color ; important things to be aware of and things that are developing towards a warning | |
50 | 97 TFT_attention_color: |
604 | 98 movlw color_yellow |
0 | 99 bra TFT_standard_color0 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
100 TFT_attention_color_dive: |
604 | 101 retlw color_yellow |
102 | |
103 global TFT_warnings_color ; important things with immediate need to react upon | |
0 | 104 TFT_warnings_color: |
604 | 105 movlw color_red |
0 | 106 bra TFT_standard_color0 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
107 TFT_warnings_color_dive: |
604 | 108 retlw color_red |
582 | 109 |
110 | |
111 global TFT_disabled_color | |
0 | 112 TFT_disabled_color: |
582 | 113 movlw color_lightblue |
604 | 114 btfsc divemode ; in divemode? |
582 | 115 rcall TFT_disabled_color_dive ; YES |
116 bra TFT_standard_color0 | |
87 | 117 TFT_disabled_color_dive: |
582 | 118 movff opt_dive_color_scheme,WREG ; 0-3 |
119 incf WREG | |
87 | 120 dcfsnz WREG |
582 | 121 retlw color_scheme_divemode_dis1 ; 0 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
122 dcfsnz WREG |
582 | 123 retlw color_scheme_divemode_dis2 ; 1 |
50 | 124 dcfsnz WREG |
582 | 125 retlw color_scheme_divemode_dis3 ; 2 |
126 retlw color_scheme_divemode_dis4 ; 3 | |
127 | |
128 | |
129 global TFT_standard_color | |
130 TFT_standard_color: | |
604 | 131 setf WREG ; default white |
132 btfsc divemode ; in divemode? | |
582 | 133 rcall TFT_standard_color_dive |
134 ;bra TFT_standard_color0 | |
135 TFT_standard_color0: | |
136 goto TFT_set_color ; and return... | |
137 | |
138 | |
139 TFT_standard_color_dive: | |
140 movff opt_dive_color_scheme,WREG ; 0-3 | |
141 incf WREG | |
0 | 142 dcfsnz WREG |
582 | 143 retlw color_scheme_divemode_std1 ;0 |
0 | 144 dcfsnz WREG |
582 | 145 retlw color_scheme_divemode_std2 ;1 |
0 | 146 dcfsnz WREG |
582 | 147 retlw color_scheme_divemode_std3 ;2 |
148 retlw color_scheme_divemode_std4 ;3 | |
149 | |
150 | |
604 | 151 global TFT_color_code_tank_pres_sac |
152 TFT_color_code_tank_pres_sac: ; color-code a tank pressure or SAC rate, data in hi:lo | |
153 btfss hi,int_not_avail_flag ; is the not-available flag set? | |
154 bra TFT_color_code_tank_pres_1 ; NO | |
155 bcf hi,int_not_avail_flag ; YES - clear not-available flag | |
156 TFT_color_code_tank_pres_0: ; entry point for outdated flag | |
157 bcf hi,int_outdated_flag ; clear outdated flag (it may be set) | |
158 bcf hi,int_warning_flag ; clear warning flag (it may be set) | |
159 bcf hi,int_attention_flag ; clear attention flag (it may be set) | |
160 bra TFT_disabled_color ; set to disabled color and return | |
161 TFT_color_code_tank_pres_1: | |
162 btfsc hi,int_outdated_flag ; is the outdated flag set? | |
163 bra TFT_color_code_tank_pres_0 ; YES - handle alike with not-available flag | |
164 TFT_color_code_tank_pres_2: | |
165 btfss hi,int_warning_flag ; is the warning flag set? | |
166 bra TFT_color_code_tank_pres_3 ; NO | |
167 bcf hi,int_warning_flag ; YES - clear warning flag | |
168 bcf hi,int_attention_flag ; - clear attention flag (it may be set) | |
169 bra TFT_warnings_color ; - set to warning color and return | |
170 TFT_color_code_tank_pres_3: | |
171 btfss hi,int_attention_flag ; is the attention flag set? | |
172 bra TFT_memo_color ; NO - set to memo color and return | |
173 bcf hi,int_attention_flag ; YES - clear attention flag | |
174 bra TFT_attention_color ; - set to attention color and return | |
175 | |
176 | |
582 | 177 global TFT_color_code_gaslist |
604 | 178 TFT_color_code_gaslist: ; color-code current row in gaslist (%O2 in hi) according to current amb_pressure |
0 | 179 ; Check very high ppO2 manually |
604 | 180 movff amb_press_10+0,xA+0 |
181 movff amb_press_10+1,xA+1 | |
560 | 182 movff hi,xB+0 |
183 clrf xB+1 | |
184 call mult16x16 ; hi * p_amb/10 | |
604 | 185 ; Check if ppO2 > 6.55 bar |
186 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2 > 6.55 bar ? | |
187 bra TFT_warnings_color ; YES - warn in warning color | |
188 ; Check if ppO2 > 3.30 bar | |
560 | 189 btfsc xC+1,7 |
604 | 190 bra TFT_warnings_color ; YES - warn in warning color |
191 ; Check for low ppO2 | |
560 | 192 movff xC+0,sub_a+0 |
193 movff xC+1,sub_a+1 | |
582 | 194 movff char_I_ppO2_min,WREG |
195 mullw d'100' ; char_I_ppO2_min*100 | |
560 | 196 movff PRODL,sub_b+0 |
197 movff PRODH,sub_b+1 | |
198 call subU16 | |
604 | 199 btfsc neg_flag ; lower than ppO2 min? |
200 bra TFT_warnings_color ; YES - set warning color and return | |
201 ; Check for high ppO2 | |
202 movff char_O_deco_info,WREG ; bank-safe copy of deco info vector | |
582 | 203 btfsc WREG,deco_flag ; are we in deco? |
604 | 204 bra TFT_color_code_gaslist_deco ; YES - check against ppO2 max deco only |
205 ; NO - check against ppO2 max travel/normal and deco | |
206 ; Check for ppO2 max travel/normal | |
207 movff char_I_ppO2_max,WREG ; ppo2 max for travel/normal | |
560 | 208 mullw d'100' ; char_I_ppO2_max*100 |
526
0d1cda9f2d43
BUGFIX: Skip MOD Test for CCR in Sensor modes (OSTC cR and OSTC3 only)
heinrichsweikamp
parents:
517
diff
changeset
|
209 movff PRODL,sub_b+0 |
0d1cda9f2d43
BUGFIX: Skip MOD Test for CCR in Sensor modes (OSTC cR and OSTC3 only)
heinrichsweikamp
parents:
517
diff
changeset
|
210 movff PRODH,sub_b+1 |
604 | 211 infsnz sub_b+0,F ; add 1 mbar to avoid warning on equal |
212 incf sub_b+1,F | |
582 | 213 call subU16 ; sub_c = sub_a - sub_b |
604 | 214 btfss neg_flag ; higher than ppO2 max travel/deco? |
215 rcall TFT_attention_color ; YES - set attention color | |
216 ; Check for ppO2 max deco | |
217 TFT_color_code_gaslist_deco: | |
218 movff char_I_ppO2_max_deco,WREG ; ppo2 max for deco | |
219 mullw d'100' ; char_I_ppO2_max_deco*100 | |
220 movff PRODL,sub_b+0 | |
221 movff PRODH,sub_b+1 | |
222 infsnz sub_b+0,F ; add 1 mbar to avoid warning on equal | |
223 incf sub_b+1,F | |
224 call subU16 ; sub_c = sub_a - sub_b | |
225 btfss neg_flag ; higher than ppO2 max deco? | |
226 bra TFT_warnings_color ; YES - set warning color and return | |
227 return ; NO - keep current color | |
560 | 228 |
229 | |
582 | 230 TFT_color_code_ceiling: ; color-code the ceiling depth |
231 btfsc hi,char_invalid_flag ; is the invalid flag set? (bit 7 here) | |
560 | 232 bra TFT_color_code_ceiling_1 ; YES |
233 SAFE_2BYTE_COPY rel_pressure,sub_a ; NO | |
582 | 234 movff lo,sub_b+0 |
235 movff hi,sub_b+1 | |
604 | 236 call subU16 ; sub_c = sub_a - sub_b : sub_c = rel_pressure [mbar] - int_O_ceiling [mbar] |
582 | 237 btfsc neg_flag ; is ceiling > current depth? |
604 | 238 bra TFT_warnings_color ; YES - set to warning color and return |
239 bra TFT_memo_color ; NO - set to memo color and return | |
560 | 240 TFT_color_code_ceiling_1: |
241 bcf hi,char_invalid_flag ; clear the invalid flag (bit 7 here) | |
242 bra TFT_disabled_color ; set to disabled color and return | |
243 | |
244 | |
604 | 245 TFT_color_code_stop: ; color-code the stop depth: memo color if below stop depth, |
246 ; attention color if above stop but below ceiling, | |
247 ; warning color if above stop and ceiling | |
248 ; (ceiling depth is calculated using current GF) | |
560 | 249 movff char_O_deco_gas+0,WREG ; get flag for invalid deco data |
250 btfsc WREG,char_invalid_flag ; is the invalid flag set? | |
604 | 251 bra TFT_disabled_color ; YES - set to disabled color and return |
252 movff char_O_first_deco_depth,WREG; NO - get stop depth in m into WREG | |
253 subwf curr_depth,W ; - compute current depth - stop depth | |
254 btfsc STATUS,C ; - result negative? | |
255 bra TFT_memo_color ; NO - set to memo color and return | |
256 movff int_O_ceiling+0,sub_b+0 ; YES - get ceiling depth in mbar | |
257 movff int_O_ceiling+1,sub_b+1 ; - ... | |
258 btfsc sub_b+1,char_invalid_flag ; - is the invalid flag set? (bit 7 here) | |
259 bra TFT_warnings_color ; YES - set to warning color and return | |
260 SAFE_2BYTE_COPY rel_pressure,sub_a ; NO - get current depth in mbar | |
261 call subU16 ; - sub_c = sub_a - sub_b : sub_c = rel_pressure [cm] - int_O_ceiling [mbar => cm] | |
262 btfsc neg_flag ; - is ceiling > current depth? | |
263 bra TFT_warnings_color ; YES - set to warning color and return | |
264 bra TFT_attention_color ; NO - set to attention color and return | |
265 | |
266 | |
267 TFT_color_code_depth: ; with actual depth as rel_pressure in [mbar] in hi:lo and threshold depth_warn_mbar [mbar] | |
560 | 268 movff lo,sub_a+0 |
269 movff hi,sub_a+1 | |
582 | 270 movlw LOW depth_warn_mbar |
560 | 271 movwf sub_b+0 |
272 movlw HIGH depth_warn_mbar | |
273 movwf sub_b+1 | |
274 call subU16 ; sub_c = sub_a - sub_b | |
582 | 275 TSTOSS opt_modwarning ; 0=standard, 1=blink |
560 | 276 bra TFT_color_code_depth_std |
277 btfss neg_flag | |
278 bra TFT_color_code_depth_warn ; set to warning color | |
279 bra TFT_color_code_depth_ppO2 ; check depth against MOD and return... | |
280 TFT_color_code_depth_std: | |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
281 btfss neg_flag |
604 | 282 bra TFT_warnings_color ; set to warning color and return |
283 bra TFT_memo_color ; set to memo color and return... | |
560 | 284 TFT_color_code_depth_ppO2: |
582 | 285 movff opt_dive_mode,WREG ; 0=OC, 1=CC, 2=Gauge, 3=Apnea, 4=PSCR |
560 | 286 decfsz WREG,F ; are we in CCR mode? |
287 bra TFT_color_code_depth_no_ccr ; NO - continue checking for ppO2 | |
604 | 288 btfss FLAG_bailout_mode ; YES - check if in bailout |
289 bra TFT_color_code_depth_outside; NO - continue checking for outside ZHL16 model | |
560 | 290 TFT_color_code_depth_no_ccr: |
291 movff int_O_breathed_ppO2+1,WREG ; get upper byte of currently breathed ppO2 | |
292 btfsc WREG,int_warning_flag ; is the warning flag set? | |
293 bra TFT_color_code_depth_warn ; YES - animate in warning design | |
604 | 294 TFT_color_code_depth_outside: |
295 movff char_O_deco_warnings,WREG ; bank-safe copy of deco warnings | |
296 btfsc WREG,outside_warning ; are we currently outside of the ZH-L16 model? | |
297 bra TFT_color_code_depth_warn ; YES | |
298 btfsc WREG,outside_attention ; are we near to outside of the ZH-L16 model? | |
299 bra TFT_color_code_depth_att ; YES | |
300 bcf blinking_depth_warning ; NO - terminate warning blinking | |
301 bcf blinking_depth_attention ; - terminate attention blinking | |
302 bra TFT_memo_color ; - set memo color and return | |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
303 TFT_color_code_depth_warn: |
604 | 304 bsf blinking_depth_warning ; activate warning blinking |
582 | 305 bra TFT_warnings_color ; set to warning color and return... |
604 | 306 TFT_color_code_depth_att: |
307 bsf blinking_depth_attention ; activate attention blinking | |
308 bra TFT_attention_color ; set to attention color and return... | |
582 | 309 |
310 | |
311 global TFT_color_code_cns | |
312 TFT_color_code_cns: ; color-code CNS values (CNS in hi:lo [%]) | |
560 | 313 btfss hi,int_invalid_flag ; is the invalid flag set? |
314 bra TFT_color_code_cns_1 ; NO | |
582 | 315 bcf hi,int_invalid_flag ; YES - clear invalid flag |
604 | 316 bcf hi,int_warning_flag ; clear warning flag (it may be set) |
582 | 317 bcf hi,int_attention_flag ; clear attention flag (it may be set) |
318 bra TFT_disabled_color ; set to disabled color and return | |
560 | 319 TFT_color_code_cns_1 |
320 btfss hi,int_warning_flag ; is the warning flag set? | |
321 bra TFT_color_code_cns_2 ; NO | |
604 | 322 bcf hi,int_warning_flag ; YES - clear warning flag |
323 bcf hi,int_attention_flag ; - clear attention flag (it may be set) | |
324 bra TFT_warnings_color ; - set to warning color and return | |
560 | 325 TFT_color_code_cns_2: |
582 | 326 btfss hi,int_attention_flag ; is the attention flag set? |
604 | 327 bra TFT_memo_color ; NO - set to memo color and return |
582 | 328 bcf hi,int_attention_flag ; YES - clear attention flag |
604 | 329 bra TFT_attention_color ; - set to attention color and return |
560 | 330 |
0 | 331 |
332 TFT_color_code_gf: | |
582 | 333 ; with int_O_gradient_factor, the upper byte is solely used for the flags |
334 ; and not for the value, thus there is no need to clear the flags | |
335 btfsc hi,int_invalid_flag ; is the invalid flag set? | |
336 bra TFT_disabled_color ; YES - set to disabled color and return | |
337 btfsc hi,int_warning_flag ; NO - is the warning flag set? | |
338 bra TFT_warnings_color ; YES - set to warning color and return | |
339 btfsc hi,int_attention_flag ; NO - is the attention flag set? | |
340 bra TFT_attention_color ; YES - set to attention color and return | |
604 | 341 bra TFT_memo_color ; NO - set to memo color and return |
582 | 342 |
343 | |
344 TFT_color_code_ppo2: ; color-code ppO2 values (ppO2 in hi:lo [cbar]) by its warning flags | |
560 | 345 btfss hi,int_warning_flag ; is the warning flag set? |
346 bra TFT_color_code_ppo2_1 ; NO | |
582 | 347 bcf hi,int_warning_flag ; YES - clear warning flag |
348 bcf hi,int_attention_flag ; clear attention flag (it may be set) | |
349 bcf hi,int_high_flag ; clear high warning flag (it may be set) | |
350 bcf hi,int_low_flag ; clear low warning flag (it may be set) | |
351 bra TFT_warnings_color ; warn in warning color | |
560 | 352 TFT_color_code_ppo2_1: |
582 | 353 btfss hi,int_attention_flag ; is the attention flag set? |
354 bra TFT_color_code_ppo2_2 ; NO | |
355 bcf hi,int_attention_flag ; YES - clear attention flag (it may be set) | |
356 bcf hi,int_high_flag ; clear high warning flag (it may be set) | |
357 bcf hi,int_low_flag ; clear low warning flag (it may be set) | |
608 | 358 bra TFT_attention_color ; set to attention color and return |
582 | 359 TFT_color_code_ppo2_2: |
360 bcf hi,int_high_flag ; clear high warning flag (it may be set) | |
361 bcf hi,int_low_flag ; clear low warning flag (it may be set) | |
604 | 362 bra TFT_memo_color ; set to memo color and return |
560 | 363 |
364 | |
582 | 365 TFT_color_code_ppo2_hud: ; color-code ppO2 values (ppO2 in --:lo [cbar]) by its value |
604 | 366 movff char_O_deco_info,WREG ; get the deco info vector |
560 | 367 btfss WREG,deco_flag ; are we in deco? |
368 bra TFT_color_code_ppo2_hud_a ; NO - load normal max value as threshold | |
369 movff char_I_ppO2_max_deco,WREG ; YES - load deco value as threshold | |
370 bra TFT_color_code_ppo2_hud_b | |
582 | 371 TFT_color_code_ppo2_hud_a: |
560 | 372 movff char_I_ppO2_max,WREG ; ppO2 max while not in deco |
582 | 373 TFT_color_code_ppo2_hud_b: |
374 cpfsgt lo ; lo > threshold? | |
375 bra TFT_color_code_ppo2_hud1 ; NO - continue with checking for ppO2 low | |
376 bra TFT_warnings_color ; YES - set warning color and return | |
0 | 377 TFT_color_code_ppo2_hud1: |
560 | 378 movff opt_dive_mode,WREG ; 0=OC, 1=CC, 2=Gauge, 3=Apnea, 4=PSCR |
379 decfsz WREG,F ; now: 0=CC, 1=Gauge, 2=Apnea, 3=PSCR | |
380 bra TFT_color_code_ppo2_hud_nocc; not CCR... | |
604 | 381 btfsc FLAG_bailout_mode |
560 | 382 bra TFT_color_code_ppo2_hud_nocc; is bailout, hence not loop mode... |
383 movff char_I_ppO2_min_loop,WREG ; ppO2 min loop mode color coding | |
384 bra TFT_color_code_ppo2_hud_cont | |
385 TFT_color_code_ppo2_hud_nocc: | |
386 movff char_I_ppO2_min,WREG ; PPO2 min for all other modes | |
387 TFT_color_code_ppo2_hud_cont: | |
582 | 388 cpfslt lo ; lo < char_I_ppO2_min? |
604 | 389 bra TFT_memo_color ; NO - set memo color and return... |
390 bra TFT_warnings_color ; Yes - set warning color and return | |
582 | 391 |
392 | |
393 TFT_color_code_battery: ; color-code the battery display, with battery percent in lo | |
394 movlw color_code_battery_low ; get warning threshold | |
395 cpfsgt lo ; is battery percent < threshold? | |
604 | 396 bra TFT_warnings_color ; YES - set to warning color and return |
397 bra TFT_memo_color ; NO - set to memo color and return | |
582 | 398 |
399 | |
400 global TFT_color_code_gas | |
401 TFT_color_code_gas: ; color-code the output according to gas number (1-6) in WREG | |
402 movwf up ; copy gas number (1-6) to up | |
403 movlw color_white ; Default color | |
404 dcfsnz up,F | |
604 | 405 movlw color_white ; color for gas 1 |
582 | 406 dcfsnz up,F |
604 | 407 movlw color_green ; color for gas 2 |
582 | 408 dcfsnz up,F |
604 | 409 movlw color_red ; color for gas 3 |
582 | 410 dcfsnz up,F |
604 | 411 movlw color_yellow ; color for gas 4 |
582 | 412 dcfsnz up,F |
604 | 413 movlw color_cyan ; color for gas 5 |
582 | 414 dcfsnz up,F |
604 | 415 movlw color_pink ; color for gas 6 |
416 goto TFT_set_color ; set color... | |
582 | 417 |
0 | 418 |
419 ; **************************************************************************** | |
420 | |
582 | 421 global TFT_show_OC_startgas_surface |
604 | 422 TFT_show_OC_startgas_surface: ; show first gas and "OSTC2-like" active gases |
582 | 423 ; Show first gas |
424 WIN_SMALL surf_decotype_column+.1,surf_decotype_row+.30 | |
604 | 425 call get_first_gas_to_WREG ; get first gas (1-5) into WREG |
560 | 426 decf WREG,W ; 1-5 -> 0-4 |
582 | 427 movwf PRODL |
604 | 428 call gaslist_strcat_gas ; input: PRODL : gas number (0..4), Output: Text appended into buffer pointed by FSR2. |
582 | 429 STRCAT_PRINT "" |
430 ; Show boxes | |
431 WIN_TOP surf_decotype_row+.30+.25 | |
432 WIN_LEFT surf_decotype_boxes_left1+.1 | |
433 rcall TFT_disabled_color | |
434 movff opt_gas_type+0,hi ; 0=Disabled, 1=First, 2=Travel, 3=Deco | |
435 tstfsz hi | |
436 rcall TFT_standard_color | |
437 STRCPY_PRINT "1" | |
438 decfsz hi,F ; Type = 1 (First)? | |
604 | 439 bra DISP_active_gas_surfmode3 ; NO - skip box |
582 | 440 WIN_FRAME_STD surf_decotype_boxes_top, surf_decotype_boxes_bottom, surf_decotype_boxes_left1, surf_decotype_boxes_left1+.8 ;top, bottom, left, right |
234
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
441 DISP_active_gas_surfmode3: |
582 | 442 rcall TFT_disabled_color |
443 movff opt_gas_type+1,hi ; 0=Disabled, 1=First, 2=Travel, 3=Deco | |
444 tstfsz hi | |
445 rcall TFT_standard_color | |
446 WIN_LEFT surf_decotype_boxes_left2+.1 | |
447 STRCPY_PRINT "2" | |
448 decfsz hi,F ; Type = 1 (First)? | |
604 | 449 bra DISP_active_gas_surfmode4 ; NO - skip box |
582 | 450 WIN_FRAME_STD surf_decotype_boxes_top, surf_decotype_boxes_bottom, surf_decotype_boxes_left2, surf_decotype_boxes_left2+.8 ;top, bottom, left, right |
234
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
451 DISP_active_gas_surfmode4: |
582 | 452 rcall TFT_disabled_color |
453 movff opt_gas_type+2,hi ; 0=Disabled, 1=First, 2=Travel, 3=Deco | |
454 tstfsz hi | |
455 rcall TFT_standard_color | |
456 WIN_LEFT surf_decotype_boxes_left3+.1 | |
457 STRCPY_PRINT "3" | |
458 decfsz hi,F ; Type = 1 (First)? | |
604 | 459 bra DISP_active_gas_surfmode5 ; NO - skip box |
582 | 460 WIN_FRAME_STD surf_decotype_boxes_top, surf_decotype_boxes_bottom, surf_decotype_boxes_left3, surf_decotype_boxes_left3+.8 ;top, bottom, left, right |
234
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
461 DISP_active_gas_surfmode5: |
582 | 462 rcall TFT_disabled_color |
463 movff opt_gas_type+3,hi ; 0=Disabled, 1=First, 2=Travel, 3=Deco | |
464 tstfsz hi | |
465 rcall TFT_standard_color | |
466 WIN_LEFT surf_decotype_boxes_left4+.1 | |
467 STRCPY_PRINT "4" | |
468 decfsz hi,F ; Type = 1 (First)? | |
604 | 469 bra DISP_active_gas_surfmode6 ; NO - skip box |
582 | 470 WIN_FRAME_STD surf_decotype_boxes_top, surf_decotype_boxes_bottom, surf_decotype_boxes_left4, surf_decotype_boxes_left4+.8 ;top, bottom, left, right |
234
57155164faad
Show OSTC2-like active gas boxes in surface mode
heinrichsweikamp
parents:
231
diff
changeset
|
471 DISP_active_gas_surfmode6: |
582 | 472 rcall TFT_disabled_color |
473 movff opt_gas_type+4,hi ; 0=Disabled, 1=First, 2=Travel, 3=Deco | |
474 tstfsz hi | |
475 rcall TFT_standard_color | |
476 WIN_LEFT surf_decotype_boxes_left5+.1 | |
477 STRCPY_PRINT "5" | |
604 | 478 rcall TFT_standard_color ; reset color |
479 decfsz hi,F ; type = 1 (First)? | |
480 bra DISP_active_gas_surfmode7 ; NO - done | |
582 | 481 WIN_FRAME_STD surf_decotype_boxes_top, surf_decotype_boxes_bottom, surf_decotype_boxes_left5, surf_decotype_boxes_left5+.8 ;top, bottom, left, right |
604 | 482 DISP_active_gas_surfmode7: |
483 return ; done | |
582 | 484 |
485 | |
486 global TFT_show_color_schemes | |
560 | 487 TFT_show_color_schemes: ; update the color schemes |
582 | 488 bsf divemode ; put in divemode |
489 call TFT_divemask_color | |
490 WIN_TINY .12,.40 | |
491 STRCAT_TEXT_PRINT tDepth | |
492 WIN_TINY .62,.40 | |
493 STRCAT_TEXT_PRINT tMaxDepth | |
494 WIN_TINY .122,.40 | |
495 STRCAT_TEXT_PRINT tDivetime | |
496 | |
497 ; Show some demo screen | |
498 | |
499 ; Depth demo | |
604 | 500 call TFT_memo_color |
501 WIN_MEDIUM .3,.54 | |
582 | 502 movlw LOW .5172 |
503 movwf lo | |
504 movlw HIGH .5172 | |
505 movwf hi | |
50 | 506 bsf leftbind |
507 bsf ignore_digit4 | |
604 | 508 output_16 ; full meters in big font |
50 | 509 bcf leftbind |
604 | 510 STRCAT_PRINT "" ; display full meters |
511 WIN_SMALL .25,.66 | |
512 movlw LOW .5172 | |
582 | 513 movwf lo |
604 | 514 movlw HIGH .5172 |
582 | 515 movwf hi |
516 PUTC "." | |
50 | 517 movlw d'4' |
518 movwf ignore_digits | |
604 | 519 bsf ignore_digit5 ; (flag will be cleared by output_16) |
582 | 520 output_16dp d'0' ; .1m in SMALL font |
604 | 521 STRCAT_PRINT "" ; display decimeters |
582 | 522 WIN_FONT FT_SMALL |
523 | |
524 ; Max. Depth demo | |
604 | 525 WIN_MEDIUM .64,.54 |
582 | 526 bsf ignore_digit4 ; no 0.1m |
527 bsf leftbind | |
604 | 528 movlw LOW .6349 |
582 | 529 movwf lo |
604 | 530 movlw HIGH .6349 |
582 | 531 movwf hi |
50 | 532 output_16 |
604 | 533 STRCAT_PRINT "" ; display full meters |
582 | 534 bcf leftbind |
50 | 535 ; .1m in SMALL font |
582 | 536 WIN_SMALL .87,.66 |
537 PUTC "." | |
50 | 538 movlw d'4' |
539 movwf ignore_digits | |
604 | 540 bsf ignore_digit5 ; (flag will be cleared by output_16) |
582 | 541 bsf leftbind |
604 | 542 movlw LOW .6349 |
582 | 543 movwf lo |
604 | 544 movlw HIGH .6349 |
582 | 545 movwf hi |
50 | 546 output_16dp d'0' |
604 | 547 STRCAT_PRINT "" ; display decimeters |
582 | 548 bcf leftbind |
549 | |
550 ; Divetime demo | |
551 movff mins,lo | |
552 clrf hi | |
553 WIN_MEDIUM .103, .54 | |
554 output_16_3 ; limit to 999 and display only (0-999) | |
604 | 555 STRCAT_PRINT "" ; show minutes in large font |
582 | 556 WIN_SMALL .139, .66 ; left position for two sec figures |
557 PUTC ':' | |
50 | 558 bsf leftbind |
582 | 559 movff secs,lo |
50 | 560 output_99x |
582 | 561 bcf leftbind |
604 | 562 STRCAT_PRINT "" ; show seconds in small font |
582 | 563 |
564 bcf divemode ; don't stay in divemode | |
50 | 565 return |
566 | |
604 | 567 |
0 | 568 global TFT_divemode_mask |
604 | 569 TFT_divemode_mask: ; displays mask in divemode |
582 | 570 bcf FLAG_TFT_divemode_mask |
571 call TFT_divemask_color | |
560 | 572 WIN_TINY dm_mask_depth_column,dm_mask_depth_row |
582 | 573 STRCAT_TEXT_PRINT tDepth |
560 | 574 WIN_TINY dm_mask_maxdepth_column_nvsi,dm_mask_maxdepth_row |
604 | 575 TSTOSS opt_vsigraph ; graphical VSI bar enabled? |
576 bra TFT_divemode_mask_1 ; NO | |
577 WIN_TINY dm_mask_maxdepth_column,dm_mask_maxdepth_row ; YES - adopt position | |
578 TFT_divemode_mask_1: | |
579 btfsc FLAG_apnoe_mode ; in Apnea mode? | |
580 bra TFT_divemode_mask_2 ; YES - draw max depth | |
581 TSTOSS opt_2ndDepthDisp ; draw avg depth? | |
582 bra TFT_divemode_mask_2 ; NO - draw max depth | |
583 STRCAT_TEXT_PRINT tAvgDepth ; YES | |
584 bra TFT_divemode_mask_3 | |
585 TFT_divemode_mask_2: | |
582 | 586 STRCAT_TEXT_PRINT tMaxDepth |
604 | 587 TFT_divemode_mask_3: |
560 | 588 WIN_TINY dm_mask_divetime_column,dm_mask_divetime_row |
582 | 589 STRCAT_TEXT_PRINT tDivetime |
590 bra TFT_standard_color ; and return... | |
591 | |
592 global TFT_divemode_mask_alternative | |
604 | 593 TFT_divemode_mask_alternative: ; alt. mask for divemode |
582 | 594 bcf FLAG_TFT_divemode_mask_alt |
595 call TFT_divemask_color | |
596 WIN_TINY dm_mask_depth_column,dm_mask_depth_row | |
597 STRCAT_TEXT_PRINT tDepth | |
598 WIN_TINY dm_mask_divetime_column-.30,dm_mask_divetime_row | |
599 STRCAT_TEXT_PRINT tDivetime | |
600 bra TFT_standard_color ; and return... | |
601 | |
602 global TFT_draw_gassep_line | |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
603 TFT_draw_gassep_line: |
604 | 604 btfsc FLAG_apnoe_mode ; ignore in Apnoe mode |
582 | 605 return |
604 | 606 btfsc divemode_menu ; is the dive mode menu shown? |
607 return ; YES - return | |
608 bra TFT_standard_color ; NO - set standard color and return | |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
609 |
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
610 ;========================================================================= |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
611 |
0 | 612 global TFT_display_velocity |
604 | 613 TFT_display_velocity: ; with divA+0 = m/min, neg_flag_velocity: ascend=1, descend=0 |
582 | 614 bcf STATUS,C |
615 movlw velocity_display_threshold_1; lowest threshold for display vertical velocity | |
616 subwf divA+0,W | |
617 btfss STATUS,C | |
618 bra TFT_velocity_clear ; lower then threshold. Clear text and graph (If active) | |
619 | |
620 ; We have something to display | |
604 | 621 bsf display_velocity ; set flag |
582 | 622 ; check if descending: no warning color if descending |
604 | 623 rcall TFT_memo_color |
624 btfsc neg_flag_velocity ; ignore for descent | |
625 rcall TFT_velocity_set_color ; set color for text and set threshold for graph | |
626 | |
627 rcall TFT_velocity_disp ; show the text | |
628 | |
629 TSTOSS opt_vsigraph ; graphical VSI bar enabled? | |
630 bra TFT_display_velocity_done ; NO | |
631 | |
632 btfsc alternative_divelayout ; alternative layout? | |
633 bra TFT_display_velocity_done ; YES - no graph! (no room when divetime minutes is three digits) | |
634 | |
635 btfsc neg_flag_velocity ; ignore for descent | |
636 rcall TFT_velocity_graph ; show the graph | |
637 btfss neg_flag_velocity ; ignore for descent | |
638 rcall TFT_velocity_clear_graph ; clear the graph for descent | |
582 | 639 |
640 TFT_display_velocity_done: | |
641 bra TFT_standard_color ; and return! | |
398
1f2e35f5a5aa
BUGFIX: Make sure SP1 is always selected on start in Auto-SP mode
heinrichsweikamp
parents:
394
diff
changeset
|
642 |
1f2e35f5a5aa
BUGFIX: Make sure SP1 is always selected on start in Auto-SP mode
heinrichsweikamp
parents:
394
diff
changeset
|
643 TFT_speed_table: |
582 | 644 ; use a depth-dependent ascent rate warning |
645 ; depth(ft): <20 >20 >40 >60 >75 >88 >101 >115 >128 >144 >164 | |
646 ; speed(ft/min): 23 26 29 33 36 43 49 56 59 62 66 | |
647 ; depth(m): <=6 >6 >12 >18 >23 >27 >31 >35 >39 >44 >50 | |
648 ; speed(m/min): 7 8 9 10 11 13 15 17 18 19 20 (warning) | |
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
649 ; speed(m/min): 5 6 7 8 8 10 12 13 14 15 15 (attention) |
398
1f2e35f5a5aa
BUGFIX: Make sure SP1 is always selected on start in Auto-SP mode
heinrichsweikamp
parents:
394
diff
changeset
|
650 |
582 | 651 ; <xx m, warning speed, attention speed, unused |
652 DB .6,.7,.5,.0 | |
653 DB .12,.8,.6,.0 | |
654 DB .18,.9,.7,.0 | |
655 DB .23,.10,.8,.0 | |
656 DB .27,.11,.8,.0 | |
657 DB .31,.13,.10,.0 | |
658 DB .35,.15,.12,.0 | |
659 DB .39,.17,.13,.0 | |
660 DB .44,.18,.14,.0 | |
661 DB .50,.19,.15,.0 | |
662 DB .200,.20,.15,.0 | |
663 | |
664 TFT_velocity_set_color: ; Set color based on speed table or use static thresholds, with divA+0 = m/min | |
665 ; check if old/new ascend logic is used | |
666 TSTOSS opt_vsitextv2 ; 0=standard, 1=dynamic | |
667 bra TFT_velocity_set_color_static ; static ascend rate limit | |
668 | |
669 ; point to speed table | |
670 movlw LOW (TFT_speed_table-.3) | |
671 movwf TBLPTRL | |
672 movlw HIGH (TFT_speed_table-.3) | |
673 movwf TBLPTRH | |
674 movlw UPPER (TFT_speed_table-.3) | |
675 movwf TBLPTRU | |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
676 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
677 TFT_velocity_set_color_skip: |
582 | 678 TBLRD*+ ; 3 dummy reads |
679 TBLRD*+ | |
680 TBLRD*+ | |
604 | 681 TBLRD*+ ; get speed threshold |
682 movf curr_depth,W ; current depth in m | |
683 cpfsgt TABLAT ; threshold > current depth ? | |
684 bra TFT_velocity_set_color_skip ; NO - loop | |
685 | |
686 TBLRD*+ ; get warning speed threshold | |
582 | 687 movf TABLAT,W |
604 | 688 movwf divA+1 ; copy for graph routine |
582 | 689 cpfslt divA+0 ; smaller then actual value (in m/min)? |
604 | 690 bra TFT_warnings_color ; set Warning color (And return) |
691 TBLRD*+ ; get attention speed threshold | |
582 | 692 movf TABLAT,W |
693 cpfslt divA+0 ; smaller then actual value (in m/min)? | |
604 | 694 bra TFT_attention_color ; NO - set attention color and return |
695 bra TFT_memo_color ; YES - set memo color and return | |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
696 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
697 TFT_velocity_set_color_static: |
582 | 698 movlw color_code_velocity_warn_high ; in m/min |
604 | 699 movwf divA+1 ; copy for graph routine |
582 | 700 cpfslt divA+0 ; smaller then actual value (in m/min)? |
604 | 701 bra TFT_warnings_color ; set Warning color (And return) |
582 | 702 movlw color_code_velocity_attn_high ; in m/min |
703 cpfslt divA+0 ; smaller then actual value (in m/min)? | |
604 | 704 bra TFT_attention_color ; NO - set attention color and return |
705 bra TFT_memo_color ; YES - set memo color and return | |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
706 |
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
707 TFT_velocity_disp: |
604 | 708 WIN_SMALL dm_velocity_text_column, dm_velocity_text_row |
582 | 709 TSTOSS opt_units ; 0=Meters, 1=Feets |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
710 bra TFT_velocity_metric |
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
711 ;TFT_velocity_imperial: |
0 | 712 movff divA+0,WREG ; divA+0 = m/min |
713 mullw .100 ; PRODL:PRODH = mbar/min | |
714 movff PRODL,lo | |
715 movff PRODH,hi | |
604 | 716 call convert_mbar_to_feet ; convert value in hi:lo from mbar to feet |
0 | 717 movlw '-' |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
718 btfsc neg_flag_velocity |
0 | 719 movlw '+' |
720 movwf POSTINC2 | |
721 bsf leftbind | |
722 output_16 | |
723 bcf leftbind | |
604 | 724 STRCAT_TEXT_PRINT tVelImperial ; unit switch |
582 | 725 return |
0 | 726 |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
727 TFT_velocity_metric: |
0 | 728 movff divA+0,lo ; divA+0 = m/min |
729 movlw '-' | |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
730 btfsc neg_flag_velocity |
0 | 731 movlw '+' |
732 movwf POSTINC2 | |
733 output_99 | |
604 | 734 STRCAT_TEXT_PRINT tVelMetric ; unit switch |
582 | 735 return |
736 | |
737 TFT_velocity_graph: ; divA+0 = m/min | |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
738 ; divA+0 holding the ascend speed in m/min |
604 | 739 movff divA+0,hi ; copy |
582 | 740 WIN_BOX_BLACK dm_velobar_top, dm_velobar_bot, dm_velobar_lft, dm_velobar_rgt ;top, bottom, left, right -> outer frame |
604 | 741 rcall TFT_divemask_color_dive ; color -> WREG |
582 | 742 WIN_FRAME_COLOR dm_velobar_top, dm_velobar_bot, dm_velobar_lft, dm_velobar_rgt ;inner frame |
604 | 743 rcall TFT_divemask_color_dive ; color -> WREG |
582 | 744 WIN_FRAME_COLOR dm_velobar_top+.10, dm_velobar_bot-.10, dm_velobar_lft, dm_velobar_rgt ;inner frame |
604 | 745 rcall TFT_divemask_color_dive ; color -> WREG |
582 | 746 WIN_FRAME_COLOR dm_velobar_top+.20, dm_velobar_bot-.20, dm_velobar_lft, dm_velobar_rgt ;inner frame |
604 | 747 rcall TFT_divemask_color_dive ; color -> WREG |
582 | 748 WIN_FRAME_COLOR dm_velobar_top+.30, dm_velobar_bot-.30, dm_velobar_lft, dm_velobar_rgt ;inner frame |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
749 |
582 | 750 movff divA+1,xA+0 ; m/min for warning level (upper two blocks) |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
751 clrf xA+1 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
752 movlw .5 |
604 | 753 movwf xB+0 ; threshold for color warning (5 color normal + 2 color warning) |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
754 clrf xB+1 |
604 | 755 call div16x16 ; xC = xA / xB with xA as remainder |
582 | 756 ; xC+0 holds step size in m/min (e.g. =3 for 15m/min warning threshold) |
604 | 757 movff hi,xA+0 ; velocity in m/min |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
758 clrf xA+1 |
604 | 759 movff xC+0,xB+0 ; step size |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
760 clrf xB+1 |
604 | 761 call div16x16 ; xC = xA / xB with xA as remainder |
762 ; xC+0 now holds amount of segments to show | |
763 movff hi,divA+0 ; copy back for numeric output | |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
764 movlw d'7' |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
765 cpfslt xC+0 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
766 bra DISP_graph_vel_7 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
767 movlw d'6' |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
768 cpfslt xC+0 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
769 bra DISP_graph_vel_6 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
770 movlw d'5' |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
771 cpfslt xC+0 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
772 bra DISP_graph_vel_5 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
773 movlw d'4' |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
774 cpfslt xC+0 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
775 bra DISP_graph_vel_4 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
776 movlw d'3' |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
777 cpfslt xC+0 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
778 bra DISP_graph_vel_3 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
779 movlw d'2' |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
780 cpfslt xC+0 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
781 bra DISP_graph_vel_2 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
782 movlw d'1' |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
783 cpfslt xC+0 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
784 bra DISP_graph_vel_1 |
604 | 785 bra DISP_graph_vel_0 ; should not happen... |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
786 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
787 DISP_graph_vel_7: |
604 | 788 rcall TFT_warnings_color_dive ; color -> WREG |
582 | 789 WIN_BOX_COLOR dm_velobar_top+.2, dm_velobar_top+.8, dm_velobar_lft+.2, dm_velobar_rgt-.2 ;top, bottom, left, right |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
790 DISP_graph_vel_6: |
604 | 791 rcall TFT_warnings_color_dive ; color -> WREG |
582 | 792 WIN_BOX_COLOR dm_velobar_top+.12, dm_velobar_top+.18, dm_velobar_lft+.2, dm_velobar_rgt-.2 ;top, bottom, left, right |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
793 DISP_graph_vel_5: |
604 | 794 rcall TFT_attention_color_dive ; color -> WREG |
582 | 795 WIN_BOX_COLOR dm_velobar_top+.22, dm_velobar_top+.28, dm_velobar_lft+.2, dm_velobar_rgt-.2 ;top, bottom, left, right |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
796 DISP_graph_vel_4: |
604 | 797 rcall TFT_standard_color_dive ; color -> WREG |
582 | 798 WIN_BOX_COLOR dm_velobar_top+.32, dm_velobar_top+.38, dm_velobar_lft+.2, dm_velobar_rgt-.2 ;top, bottom, left, right |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
799 DISP_graph_vel_3: |
604 | 800 rcall TFT_standard_color_dive ; color -> WREG |
582 | 801 WIN_BOX_COLOR dm_velobar_top+.42, dm_velobar_top+.48, dm_velobar_lft+.2, dm_velobar_rgt-.2 ;top, bottom, left, right |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
802 DISP_graph_vel_2: |
604 | 803 rcall TFT_standard_color_dive ; color -> WREG |
582 | 804 WIN_BOX_COLOR dm_velobar_top+.52, dm_velobar_top+.58, dm_velobar_lft+.2, dm_velobar_rgt-.2 ;top, bottom, left, right |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
805 DISP_graph_vel_1: |
604 | 806 rcall TFT_standard_color_dive ; color -> WREG |
582 | 807 WIN_BOX_COLOR dm_velobar_top+.62, dm_velobar_top+.68, dm_velobar_lft+.2, dm_velobar_rgt-.2 ;top, bottom, left, right |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
808 DISP_graph_vel_0: |
604 | 809 return ; done |
810 | |
326
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
321
diff
changeset
|
811 |
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
812 global TFT_velocity_clear |
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
813 TFT_velocity_clear: |
604 | 814 btfss display_velocity ; velocity was not displayed, do not delete |
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
815 return |
604 | 816 bcf display_velocity ; velocity was displayed, delete velocity now |
0 | 817 ; Clear Text |
582 | 818 WIN_BOX_BLACK dm_velocity_text_row, dm_velocity_text_bot, dm_velocity_text_column, dm_velocity_text_rgt ; top, bottom, left, right |
819 | |
604 | 820 TSTOSS opt_vsigraph ; graphical VSI bar enabled? |
821 return ; NO - no graph to clear | |
398
1f2e35f5a5aa
BUGFIX: Make sure SP1 is always selected on start in Auto-SP mode
heinrichsweikamp
parents:
394
diff
changeset
|
822 TFT_velocity_clear_graph: |
582 | 823 ; Clear Graph |
604 | 824 WIN_BOX_BLACK dm_velobar_top, dm_velobar_bot, dm_velobar_lft, dm_velobar_rgt ; top, bottom, left, right |
0 | 825 return |
826 | |
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
827 ;========================================================================= |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
828 |
582 | 829 global TFT_clear_decoarea |
0 | 830 TFT_clear_decoarea: |
604 | 831 WIN_BOX_BLACK dm_decostop_1st_stop_row, .239, dm_decostop_1st_stop_column, .159 ; top, bottom, left, right |
0 | 832 return |
833 | |
560 | 834 |
582 | 835 global TFT_clear_divemode_menu |
0 | 836 TFT_clear_divemode_menu: |
604 | 837 WIN_BOX_BLACK dm_menu_row-.2, dm_menu_lower, dm_menu_left, dm_menu_right ; top, bottom, left, right - starts 2 pixel higher to completely wipe away the temperature display |
0 | 838 return |
839 | |
560 | 840 |
0 | 841 global TFT_display_ndl_mask |
842 TFT_display_ndl_mask: | |
582 | 843 bcf FLAG_TFT_display_ndl_mask |
604 | 844 btfsc divemode_menu ; is the dive mode menu shown? |
845 return ; YES - return | |
846 btfsc FLAG_gauge_mode ; in gauge mode? | |
847 return ; YES - return | |
848 call TFT_clear_decoarea ; NO - clear stop depth and TTS | |
582 | 849 call TFT_divemask_color |
850 WIN_STD dm_ndl_text_column, dm_ndl_text_row | |
851 STRCPY_TEXT_PRINT tNDL ; NDL | |
852 bra TFT_standard_color ; and return... | |
560 | 853 |
854 | |
855 global TFT_display_tts | |
856 TFT_display_tts: | |
582 | 857 bcf FLAG_TFT_display_tts |
604 | 858 btfsc divemode_menu ; is the dive mode menu shown? |
859 return ; YES - return | |
860 call TFT_memo_color ; NO - set memo color | |
861 movff int_O_ascenttime+0,lo ; - TTS | |
862 movff int_O_ascenttime+1,hi ; - on 16 bits | |
863 btfss hi,int_invalid_flag ; - is the invalid flag set? | |
864 bra TFT_display_tts_1 ; - NO | |
865 bcf hi,int_invalid_flag ; - YES - clear flag | |
866 call TFT_disabled_color ; - switch to disabled color | |
560 | 867 TFT_display_tts_1: |
582 | 868 WIN_MEDIUM dm_tts_value_column, dm_tts_value_row |
604 | 869 output_16_3 ; display only 0...999 |
0 | 870 STRCAT_PRINT "'" |
871 return | |
872 | |
560 | 873 |
0 | 874 global TFT_display_ndl |
875 TFT_display_ndl: | |
582 | 876 bcf FLAG_TFT_display_ndl |
604 | 877 btfsc divemode_menu ; is the dive mode menu shown? |
878 return ; YES - return | |
582 | 879 WIN_MEDIUM dm_ndl_value_column, dm_ndl_value_row |
604 | 880 call TFT_memo_color |
881 movff char_O_nullzeit,lo ; get NDL from C-code | |
582 | 882 output_8 |
883 STRCAT_PRINT "'" | |
884 return | |
885 | |
886 | |
604 | 887 global TFT_big_deco_alt ; the big deco |
560 | 888 TFT_big_deco_alt: |
582 | 889 bcf FLAG_TFT_big_deco_alt |
890 | |
604 | 891 btfss decostop_active ; deco stop shown? |
892 bra TFT_big_deco_ndl_alt ; NO - show NDL | |
582 | 893 |
894 ; Deco | |
895 bcf FLAG_TFT_display_deko | |
896 call TFT_divemask_color | |
897 WIN_STD .70,.165 | |
898 STRCPY_TEXT_PRINT tTTS ; TTS | |
604 | 899 rcall TFT_memo_color |
582 | 900 |
901 ; TTS | |
902 WIN_LARGE .97,.170 | |
604 | 903 movff int_O_ascenttime+0,lo ; get the TTS |
904 movff int_O_ascenttime+1,hi ; | |
582 | 905 btfss hi,int_invalid_flag ; is the invalid flag set? |
906 bra TFT_display_tts_alt_1 ; NO | |
907 bcf hi,int_invalid_flag ; YES - clear flag | |
604 | 908 call TFT_disabled_color ; - switch to disabled color |
560 | 909 TFT_display_tts_alt_1: |
604 | 910 output_16_3 ; display only 0...999 |
582 | 911 STRCAT_PRINT "" |
912 | |
913 ; 1st Stop | |
914 call TFT_divemask_color | |
915 WIN_STD .25,dm_customview_row | |
916 STRCPY_TEXT_PRINT tDiveSafetyStop ; "Stop" | |
917 | |
918 WIN_LARGE .60,.95 | |
604 | 919 call TFT_color_code_stop ; color-code output |
920 movff char_O_first_deco_depth,lo ; stop depth in m | |
921 rcall TFT_display_deko_output_depth ; output depth (stored in lo) to POSTINC2 with "m" or w/o (for ft) | |
582 | 922 STRCAT_PRINT "" |
923 | |
924 ; m or ft after the stop depth | |
925 WIN_MEDIUM .100,.118 | |
926 TSTOSS opt_units ; 0=m, 1=ft | |
927 bra TFT_display_tts_alt_1_metric | |
928 STRCAT_TEXT_PRINT tFeets1 | |
929 bra TFT_display_tts_alt_1_com | |
560 | 930 TFT_display_tts_alt_1_metric: |
582 | 931 STRCAT_TEXT_PRINT tMeters |
560 | 932 TFT_display_tts_alt_1_com: |
582 | 933 WIN_LARGE .117,.95 |
604 | 934 movff char_O_first_deco_time,lo ; get stop time in minutes |
935 tstfsz lo ; stop time = 0 ? | |
936 bra TFT_display_tts_alt_2 ; NO - print time | |
937 STRCAT_PRINT ".." ; YES - special treatment | |
938 bra TFT_display_tts_alt_exit | |
939 TFT_display_tts_alt_2: | |
582 | 940 bcf leftbind |
941 output_99 | |
942 STRCAT_PRINT "" | |
604 | 943 TFT_display_tts_alt_exit: |
582 | 944 goto TFT_standard_color ; and return... |
604 | 945 |
946 | |
560 | 947 TFT_big_deco_ndl_alt: |
582 | 948 ; NDL |
949 bcf FLAG_TFT_display_ndl | |
950 bcf decostop_active ; clear flag (again) | |
604 | 951 btfsc FLAG_gauge_mode ; in gauge mode? |
952 bra TFT_big_deco_ndl_alt_1 ; YES - skip NDL | |
582 | 953 call TFT_divemask_color |
954 WIN_STD .70,.165 | |
955 STRCPY_TEXT_PRINT tNDL ; NDL | |
604 | 956 call TFT_memo_color |
582 | 957 WIN_LARGE .97,.170 |
604 | 958 movff char_O_nullzeit,lo ; get NDL from C-code |
582 | 959 output_8 |
960 STRCAT_PRINT "" | |
604 | 961 TFT_big_deco_ndl_alt_1: |
582 | 962 btfsc FLAG_TFT_show_safety_stop |
604 | 963 bra TFT_show_safety_stop_alt ; show safety stop (and return) |
582 | 964 ; Clear any safety stop or Decostop |
560 | 965 TFT_no_more_safety_stop_alt: |
582 | 966 WIN_BOX_BLACK dm_customview_row, .150, .0, .159 ; top, bottom, left, right |
967 WIN_BOX_BLACK dm_customview_row, .164, .60, .159 ; top, bottom, left, right | |
968 return | |
560 | 969 |
970 TFT_show_safety_stop_alt: | |
582 | 971 bcf FLAG_TFT_show_safety_stop |
604 | 972 tstfsz safety_stop_countdown ; countdown at zero? |
973 bra TFT_show_safety_stop_alt2 ; NO - show stop | |
974 bcf show_safety_stop ; clear flag | |
975 btfss safety_stop_active ; displayed? | |
976 return ; NO | |
977 bcf safety_stop_active ; YES - clear flag | |
978 bra TFT_no_more_safety_stop_alt ; - clear stop and return | |
560 | 979 |
980 TFT_show_safety_stop_alt2: | |
604 | 981 bsf safety_stop_active ; set flag |
982 decf safety_stop_countdown,F ; reduce countdown | |
582 | 983 |
984 call TFT_divemask_color | |
985 WIN_STD .50,dm_customview_row | |
560 | 986 STRCPY_TEXT_PRINT tDiveSafetyStop |
582 | 987 call TFT_attention_color ; show in yellow |
560 | 988 WIN_LARGE .90,.95 |
989 movff safety_stop_countdown,lo | |
990 clrf hi | |
604 | 991 call convert_time ; converts hi:lo in seconds to mins (up:hi) and seconds (lo) |
560 | 992 movf hi,W |
993 movff lo,hi | |
994 movwf lo ; exchange lo and hi | |
582 | 995 bsf leftbind |
0 | 996 output_8 |
560 | 997 STRCAT_PRINT "" |
582 | 998 WIN_MEDIUM .112,.120 |
560 | 999 STRCAT_PRINT ":" |
582 | 1000 WIN_LARGE .117,.95 |
1001 bcf leftbind | |
560 | 1002 movff hi,lo |
1003 output_99x | |
1004 STRCAT_PRINT "" | |
582 | 1005 WIN_FONT FT_SMALL |
604 | 1006 bra TFT_display_exit_1 |
560 | 1007 |
0 | 1008 |
1009 global TFT_divemode_warning | |
1010 TFT_divemode_warning: | |
604 | 1011 bcf FLAG_TFT_divemode_warning ; clear job flag |
1012 bsf dive_warning_displayed ; set advice/attention/warning sign is shown flag | |
560 | 1013 WIN_TOP dm_warning_icon_row |
1014 WIN_LEFT dm_warning_icon_column | |
604 | 1015 btfsc message_warning ; do we have a warning? |
1016 bra TFT_divemode_warning_1 ; YES - show warning sign | |
1017 btfsc message_attention ; NO - do we have an attention? | |
1018 bra TFT_divemode_warning_2 ; YES - show attention sign | |
1019 bra TFT_divemode_warning_3 ; NO to both - must be an advice then | |
1020 | |
1021 dive_warning2_warning_colors: ; custom colors table for dive_warning2 icon - warning | |
1022 db .4, 0 ; #colors, spare | |
1023 dw 0x0000 ; color 0x00: outside black | |
1024 dw 0xff80 ; color 0x01: triangle yellow | |
1025 dw 0xff80 ; color 0x02: excl.mark yellow | |
1026 dw 0xf800 ; color 0x03: inside red | |
1027 | |
1028 dive_warning2_advice_colors: ; custom colors table for dive_warning2 icon - advice | |
1029 db .4, 0 ; #colors, spare | |
1030 dw 0x0000 ; color 0x00: outside black | |
1031 dw 0xffff ; color 0x01: triangle white | |
1032 dw 0xffff ; color 0x02: excl.mark white | |
1033 dw 0x0780 ; color 0x03: inside green | |
1034 | |
1035 TFT_divemode_warning_1: | |
1036 TFT_WRITE_PROM_IMAGE_CUST_COLOR dive_warning2_warning_colors | |
1037 TFT_WRITE_PROM_IMAGE_BY_LABEL dive_warning2_block ; output warning sign (with custom colors) | |
560 | 1038 return |
604 | 1039 TFT_divemode_warning_2: |
1040 TFT_WRITE_PROM_IMAGE_BY_LABEL dive_warning2_block ; output attention sign (with default colors) | |
1041 return | |
1042 TFT_divemode_warning_3: | |
1043 TFT_WRITE_PROM_IMAGE_CUST_COLOR dive_warning2_advice_colors | |
1044 TFT_WRITE_PROM_IMAGE_BY_LABEL dive_warning2_block ; output advice sign (with custom colors) | |
1045 return | |
1046 | |
0 | 1047 |
1048 global TFT_divemode_warning_clear | |
1049 TFT_divemode_warning_clear: | |
604 | 1050 bcf FLAG_TFT_divemode_warning_clear ; clear job flag |
1051 btfss dive_warning_displayed ; advice/attention/warning sign is shown? | |
1052 return ; NO | |
1053 bcf dive_warning_displayed ; YES - clear advice/attention/warning sign and its flag | |
582 | 1054 WIN_BOX_BLACK dm_warning_icon_row, dm_warning_icon_bot, dm_warning_icon_column, dm_warning_icon_rgt ; top, bottom, left, right |
560 | 1055 return |
1056 | |
604 | 1057 |
0 | 1058 global TFT_display_deko_mask |
1059 TFT_display_deko_mask: | |
582 | 1060 bcf FLAG_TFT_display_deko_mask |
604 | 1061 btfsc divemode_menu ; is the dive mode menu shown? |
1062 return ; YES - return | |
1063 rcall TFT_clear_decoarea ; clear decostop and decosum (and NDL in this case) | |
582 | 1064 WIN_STD dm_tts_text_column, dm_tts_text_row |
1065 call TFT_divemask_color | |
1066 STRCPY_TEXT_PRINT tTTS ; TTS | |
604 | 1067 bcf show_safety_stop ; clear safety stop flag |
1068 bra TFT_display_exit_1 | |
1069 | |
1070 | |
1071 TFT_display_deko_output_depth: ; output depth (stored in lo) to POSTINC2 with "m" or w/o (for ft) | |
0 | 1072 TSTOSS opt_units ; 0=m, 1=ft |
604 | 1073 bra TFT_display_deko_output_metric |
0 | 1074 ;TFT_display_deko_output_imperial: |
1075 movf lo,W ; lo = m | |
1076 mullw .100 ; PRODL:PRODH = mbar | |
1077 movff PRODL,lo | |
1078 movff PRODH,hi | |
604 | 1079 ; Convert with 334feet/100m to have 10ft, 20ft, 30ft stops... |
0 | 1080 movff lo,xA+0 |
1081 movff hi,xA+1 | |
582 | 1082 movlw LOW d'334' ; 334feet/100m |
0 | 1083 movwf xB+0 |
582 | 1084 movlw HIGH d'334' |
0 | 1085 movwf xB+1 |
582 | 1086 call mult16x16 ; xA*xB=xC (lo:hi * 328) |
1087 movlw d'50' ; round up | |
0 | 1088 addwf xC+0,F |
1089 movlw 0 | |
1090 addwfc xC+1,F | |
1091 addwfc xC+2,F | |
1092 addwfc xC+3,F | |
582 | 1093 movlw d'100' |
0 | 1094 movwf xB+0 |
1095 clrf xB+1 | |
582 | 1096 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
0 | 1097 movff xC+0,lo |
582 | 1098 movff xC+1,hi ; restore lo and hi with updated value |
0 | 1099 bcf leftbind |
560 | 1100 btfsc alternative_divelayout |
582 | 1101 bsf leftbind ; left for alternative layout mode |
604 | 1102 bsf ignore_digit4 ; only full feet |
0 | 1103 output_16 |
560 | 1104 btfsc alternative_divelayout |
604 | 1105 return ; not for alternative layout mode |
1106 STRCAT_TEXT tFeets1 | |
0 | 1107 return |
1108 | |
1109 TFT_display_deko_output_metric: | |
1110 output_99 | |
560 | 1111 btfsc alternative_divelayout |
604 | 1112 return ; not for alternative layout mode |
1113 STRCAT_TEXT tMeters | |
0 | 1114 PUTC ' ' |
1115 return | |
1116 | |
560 | 1117 |
0 | 1118 global TFT_display_deko |
1119 TFT_display_deko: | |
582 | 1120 bcf FLAG_TFT_display_deko |
604 | 1121 btfsc divemode_menu ; is the dive mode menu shown? |
1122 return ; YES - return | |
560 | 1123 WIN_MEDIUM dm_decostop_1st_stop_column, dm_decostop_1st_stop_row |
604 | 1124 call TFT_color_code_stop ; color-code output |
1125 movff char_O_first_deco_depth,lo ; stop depth in m | |
1126 rcall TFT_display_deko_output_depth ; output depth (stored in lo) to POSTINC2 with "m" or w/o (for ft) | |
1127 movff char_O_first_deco_time,lo ; get stop time in minutes | |
1128 tstfsz lo ; stop time = 0 ? | |
1129 bra TFT_display_deko_1 ; NO - print minutes | |
1130 STRCAT_PRINT " ..'" ; YES - special treatment | |
1131 bra TFT_display_exit_1 | |
1132 TFT_display_deko_1: | |
1133 output_99 ; output lo | |
0 | 1134 STRCAT_PRINT "'" |
604 | 1135 TFT_display_exit_1 |
1136 goto TFT_standard_color ; and return... | |
1137 | |
1138 | |
1139 global TFT_decoplan_mask ; mask for deco plan | |
1140 TFT_decoplan_mask: | |
582 | 1141 call TFT_divemask_color |
604 | 1142 WIN_TINY dm_custom_decoplan_title_column, dm_custom_decoplan_title_row |
582 | 1143 STRCPY_TEXT_PRINT tDiveDecoplan |
604 | 1144 return |
1145 | |
1146 global TFT_decoplan ; data for deco plan - stops 2 - 7 (stop 1 is shown in the main screen) | |
1147 TFT_decoplan: | |
1148 lfsr FSR0,char_O_deco_depth ; load base address of stops table | |
1149 clrf ex ; will be used for auxiliary flags | |
1150 call TFT_memo_color ; set default output color | |
560 | 1151 movff char_O_deco_gas+0,lo ; get flag for invalid deco data |
1152 btfsc lo,char_invalid_flag ; is the invalid flag set? | |
1153 call TFT_disabled_color ; YES - set to disabled color | |
604 | 1154 ; 2nd stop |
1155 WIN_SMALL dm_cust_dstop_2nd_stop_column, dm_cust_dstop_2nd_stop_row | |
1156 rcall TFT_decoplan_helper | |
1157 ; 3rd stop | |
1158 WIN_SMALL dm_cust_dstop_3rd_stop_column, dm_cust_dstop_3rd_stop_row | |
1159 rcall TFT_decoplan_helper | |
1160 ; 4th stop | |
1161 bsf ex,4 ; flag we are on 4th screen position | |
1162 WIN_SMALL dm_cust_dstop_4th_stop_column, dm_cust_dstop_4th_stop_row | |
1163 rcall TFT_decoplan_helper | |
1164 bcf ex,4 ; clear 4th position flag again | |
1165 ; 5th stop | |
1166 WIN_SMALL dm_cust_dstop_5th_stop_column, dm_cust_dstop_5th_stop_row | |
1167 rcall TFT_decoplan_helper | |
1168 ; 6th stop | |
1169 WIN_SMALL dm_cust_dstop_6th_stop_column, dm_cust_dstop_6th_stop_row | |
1170 rcall TFT_decoplan_helper | |
1171 ; 7th stop | |
1172 WIN_SMALL dm_cust_dstop_7th_stop_column, dm_cust_dstop_7th_stop_row | |
1173 rcall TFT_decoplan_helper | |
1174 bra TFT_display_exit_1 ; set standard color and return... | |
1175 | |
1176 TFT_decoplan_helper: | |
1177 btfsc ex,0 ; no more stops to show? | |
1178 bra TFT_decoplan_helper_1 ; YES - skip checking next entry - it will be empty, too | |
1179 movff PREINC0,lo ; NO - advance pointer to get the depth of the 2nd, 3rd, 4th, ... stop | |
1180 tstfsz lo ; is the stop depth = 0, i.e. no stop entry? | |
1181 bra TFT_decoplan_helper_3 ; NO - show stop data | |
1182 TFT_decoplan_helper_1: ; no more stop table entries | |
1183 bsf ex,0 ; flag that there are no more stop table entries | |
1184 btfss ex,4 ; are we on the 4th screen position? | |
1185 bra TFT_decoplan_helper_2 ; NO - normal handling on this position | |
1186 btfsc ex,1 ; YES - special handling, has any stop been shown? | |
1187 bra TFT_decoplan_helper_2 ; YES - print normal blanking | |
1188 STRCPY_PRINT " ---- " ; NO - print a "no stops" indication (blanking potential previous content, too) | |
1189 return | |
1190 TFT_decoplan_helper_2: ; no more stop table entries, blank potential previous content | |
1191 STRCPY_PRINT " " ; wipe screen position by printing 7 spaces | |
1192 return | |
1193 TFT_decoplan_helper_3: | |
1194 rcall TFT_display_deko_output_depth ; output depth (stored in lo) to POSTINC2 with "m" or w/o (for ft) | |
1195 movlw NUM_STOPS ; offset between arrays holding depths and durations | |
1196 movff PLUSW0,lo ; get duration of the current stop | |
1197 output_99 ; output duration to POSTINC2 | |
1198 STRCAT_PRINT "'" ; append symbol for minutes and print to screen | |
1199 bsf ex,1 ; flag that a stop was shown | |
1200 return | |
560 | 1201 |
0 | 1202 |
582 | 1203 global TFT_clear_safety_stop |
131 | 1204 TFT_clear_safety_stop: |
604 | 1205 bcf FLAG_TFT_clear_safety_stop ; clear flag |
582 | 1206 WIN_BOX_BLACK dm_safetystop_row, dm_safetystop_bot, dm_safetystop_text_column, .159 ; top, bottom, left, right |
1207 return | |
1208 | |
1209 global TFT_show_safety_stop | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1210 TFT_show_safety_stop: |
582 | 1211 bcf FLAG_TFT_show_safety_stop |
604 | 1212 tstfsz safety_stop_countdown ; countdown at zero? |
1213 bra TFT_show_safety_stop2 ; NO - show stop | |
1214 bcf show_safety_stop ; clear flag | |
1215 btfss safety_stop_active ; displayed? | |
1216 return ; NO | |
1217 bcf safety_stop_active ; clear flag | |
1218 btfsc divemode_menu ; is the dive mode menu shown? | |
1219 return ; YES - return | |
1220 bra TFT_clear_safety_stop ; NO - clear stop and return... | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1221 TFT_show_safety_stop2: |
604 | 1222 bsf safety_stop_active ; set flag |
1223 decf safety_stop_countdown,F ; reduce countdown | |
1224 btfsc divemode_menu ; is the dive mode menu shown? | |
1225 return ; YES - return | |
582 | 1226 ;btfsc menuview |
604 | 1227 ;bra TFT_show_safety_stop3 ; no room when menuview=1... |
582 | 1228 call TFT_divemask_color |
604 | 1229 WIN_STD dm_safetystop_text_column, dm_safetystop_text_row |
582 | 1230 STRCPY_TEXT_PRINT tDiveSafetyStop |
131 | 1231 TFT_show_safety_stop3: |
604 | 1232 call TFT_attention_color ; show in yellow |
582 | 1233 WIN_MEDIUM dm_safetystop_column, dm_safetystop_row |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1234 movff safety_stop_countdown,lo |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1235 clrf hi |
604 | 1236 call convert_time ; converts hi:lo in seconds to mins (up:hi) and seconds (lo) |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1237 movf hi,W |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1238 movff lo,hi |
604 | 1239 movwf lo ; exchange lo and hi |
582 | 1240 bsf leftbind |
131 | 1241 output_8 |
582 | 1242 bcf leftbind |
1243 PUTC ':' | |
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1244 movff hi,lo |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1245 output_99x |
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
102
diff
changeset
|
1246 STRCAT_PRINT "" |
582 | 1247 WIN_FONT FT_SMALL |
604 | 1248 bra TFT_display_exit_1 |
1249 | |
1250 | |
1251 global TFT_avr_stopwatch_mask ; mask for average depth and stopwatch | |
1252 TFT_avr_stopwatch_mask: | |
582 | 1253 call TFT_divemask_color |
604 | 1254 WIN_TINY dm_custom_avr_stop_column1+.2,dm_custom_avr_stop_title_row |
1255 TSTOSS opt_2ndDepthDisp ; draw avg depth instead of max depth in main screen? | |
1256 bra TFT_avr_stopwatch_mask_1 ; NO - draw avg depth in custom view then | |
1257 STRCAT_TEXT_PRINT tMaxDepth ; YES - draw max depth in custom view then | |
1258 bra TFT_avr_stopwatch_mask_2 | |
1259 TFT_avr_stopwatch_mask_1: | |
582 | 1260 STRCPY_TEXT_PRINT tDiveTotalAvg |
604 | 1261 TFT_avr_stopwatch_mask_2: |
1262 WIN_TINY dm_custom_avr_stop_column2+.3,dm_custom_avr_stop_title_row | |
582 | 1263 STRCPY_TEXT_PRINT tDiveStopwatch |
604 | 1264 WIN_TINY dm_custom_avr_stop_column3-.8,dm_custom_avr_stop_title_row |
582 | 1265 STRCPY_TEXT_PRINT tDiveStopAvg |
604 | 1266 bra TFT_display_exit_1 |
1267 | |
1268 | |
1269 global TFT_avr_stopwatch ; data for average depth and stopwatch | |
1270 TFT_avr_stopwatch: | |
1271 call TFT_memo_color | |
582 | 1272 bsf leftbind |
604 | 1273 |
1274 ; total average depth or max depth | |
1275 WIN_MEDIUM dm_custom_avr_stop_column1,dm_custom_avr_stop_row | |
1276 TSTOSS opt_2ndDepthDisp ; draw avg depth instead of max depth in main screen? | |
1277 bra TFT_avr_stopwatch_01 ; NO - draw avg depth in custom view then | |
1278 SAFE_2BYTE_COPY max_pressure,lo ; YES - draw max depth in custom view then | |
1279 bra TFT_avr_stopwatch_02 | |
1280 TFT_avr_stopwatch_01: | |
582 | 1281 movff avg_rel_pressure_total+0,lo |
1282 movff avg_rel_pressure_total+1,hi | |
604 | 1283 TFT_avr_stopwatch_02: |
582 | 1284 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] |
604 | 1285 TSTOSS opt_units ; 0=m, 1=ft |
1286 bra TFT_update_avr_stopwatch1_metric ; 0 - metric | |
1287 ;bra TFT_update_avr_stopwatch1_imp ; 1 - imperial | |
1288 TFT_update_avr_stopwatch1_imp: | |
1289 call convert_mbar_to_feet ; convert value in hi:lo from mbar to feet | |
582 | 1290 output_16 ; yxz |
604 | 1291 STRCAT " " ; wipe out remains from last output |
1292 clrf WREG | |
1293 movff WREG,buffer+.3 ; limit string length to 3 digits | |
1294 bra TFT_update_avr_stopwatch2 | |
1295 TFT_update_avr_stopwatch1_metric: | |
1296 bsf ignore_digit5 ; no cm (flag will be cleared by output_16) | |
1297 output_16dp .3 ; yxz.a | |
1298 PUTC " " ; wipe out remains from last output | |
1299 clrf WREG | |
1300 movff WREG,buffer+.4 ; limit string length to 4 = 3 digits + 1 half-size decimal dot | |
1301 TFT_update_avr_stopwatch2: | |
1302 STRCAT_PRINT "" | |
1303 | |
1304 ; stopped average depth | |
1305 WIN_MEDIUM dm_custom_avr_stop_column3,dm_custom_avr_stop_row | |
582 | 1306 movff avg_rel_pressure+0,lo |
1307 movff avg_rel_pressure+1,hi | |
1308 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
604 | 1309 TSTOSS opt_units ; 0=m, 1=ft |
1310 bra TFT_update_avr_stopwatch2_metric ; 0 - metric | |
1311 ;bra TFT_update_avr_stopwatch2_imp ; 1 - imperial | |
1312 TFT_update_avr_stopwatch2_imp: | |
1313 call convert_mbar_to_feet ; convert value in hi:lo from mbar to feet | |
582 | 1314 output_16 ; yxz |
604 | 1315 STRCAT " " ; wipe out remains from last output |
582 | 1316 clrf WREG |
604 | 1317 movff WREG,buffer+.3 ; limit string length to 3 digits/characters |
1318 bra TFT_update_avr_stopwatch3 | |
1319 TFT_update_avr_stopwatch2_metric: | |
1320 bsf ignore_digit5 ; no cm (flag will be cleared by output_16) | |
582 | 1321 output_16dp .3 ; yxz.a |
604 | 1322 PUTC " " ; wipe out remains from last output |
589
8a7d2d8bcd33
limit string length to 4 digits/chars in average depth
heinrichsweikamp
parents:
587
diff
changeset
|
1323 clrf WREG |
604 | 1324 movff WREG,buffer+.4 ; limit string length to 4 = 3 digits + 1 half-size decimal dot |
1325 TFT_update_avr_stopwatch3: | |
582 | 1326 STRCAT_PRINT "" |
604 | 1327 |
1328 ; stopped dive time | |
1329 WIN_MEDIUM dm_custom_avr_stop_column2,dm_custom_avr_stop_row | |
1330 TFT_update_stopwatch: ; jump-in point for stopped dive time in compass custom view | |
608 | 1331 bsf leftbind ; print numbers without leading spaces |
604 | 1332 movff average_divesecs+0,lo ; average_divesecs is incremented outside ISR |
1333 movff average_divesecs+1,hi | |
1334 call convert_time ; converts hi:lo in seconds to minutes (up:hi) and seconds (lo) | |
1335 movlw .100 ; display layout will change if minutes become >= 100 | |
1336 cpfslt hi ; minutes < 100 ? | |
1337 bra TFT_update_stopwatch_2 ; NO - display hours:minutes | |
1338 ;bra TFT_update_stopwatch_1 ; YES - display minutes:seconds | |
1339 TFT_update_stopwatch_1: | |
1340 movf hi,W ; exchange lo and hi | |
1341 movff lo,hi ; ... | |
1342 movwf lo ; ... | |
1343 output_8 ; output minutes or hours | |
1344 PUTC ':' | |
1345 movff hi,lo ; restore lo | |
1346 output_99x ; output seconds or minutes | |
1347 movlw .5 | |
1348 call TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
1349 clrf WREG | |
1350 movff WREG,buffer+.5 ; limit to 5 chars | |
1351 STRCAT_PRINT "" | |
1352 bra TFT_display_exit_2 | |
1353 TFT_update_stopwatch_2: | |
1354 movff hi,lo ; transfer minutes (low byte) to lo | |
1355 movff up,hi ; transfer minutes (high byte) to hi | |
1356 call convert_time ; converts hi:lo in minutes to hours (up:hi) and minutes (lo) | |
1357 bra TFT_update_stopwatch_1 | |
560 | 1358 |
1359 | |
1360 global TFT_CNS_mask | |
1361 TFT_CNS_mask: | |
582 | 1362 call TFT_divemask_color |
604 | 1363 WIN_TINY dm_custom_cns3_column1, dm_custom_cns3_title_row |
582 | 1364 STRCPY_TEXT_PRINT tCNSsurf |
604 | 1365 WIN_TINY dm_custom_cns3_column2, dm_custom_cns3_title_row |
1366 btfsc FLAG_oc_mode ; in OC mode? | |
1367 bra TFT_CNS_mask_1 ; YES - print fTTS label | |
1368 btfsc FLAG_bailout_mode ; in bailout? | |
1369 bra TFT_CNS_mask_1 ; YES - print fTTS label (label will be printed, but a fTTS will actually not be calculated) | |
1370 TSTOSS opt_calc_asc_gasvolume ; bailout volume calculation requested? | |
1371 bra TFT_CNS_mask_1 ; NO - print fTTS label | |
1372 STRCPY_TEXT_PRINT tCNSBO ; YES - print bailout label | |
1373 bra TFT_CNS_mask_2 | |
1374 TFT_CNS_mask_1: ; OC or bailout | |
1375 STRCPY_TEXT_PRINT tCNSfTTS ; print fTTS label | |
1376 TFT_CNS_mask_2: | |
1377 WIN_TINY dm_custom_cns3_column3, dm_custom_cns3_title_row | |
582 | 1378 STRCPY_TEXT_PRINT tCNSnow |
604 | 1379 bra TFT_display_exit_2 |
1380 | |
582 | 1381 |
560 | 1382 global TFT_CNS |
1383 TFT_CNS: | |
604 | 1384 bsf leftbind |
560 | 1385 ; CNS at end of normal dive |
604 | 1386 WIN_STD dm_custom_cns3_column1+.3,dm_custom_cns3_row |
582 | 1387 movff int_O_normal_CNS_fraction+0,lo |
1388 movff int_O_normal_CNS_fraction+1,hi | |
1389 call TFT_color_code_cns | |
604 | 1390 output_16_3 ; output as xxx |
582 | 1391 STRCAT_PRINT "% " |
560 | 1392 ; fTTS / Bailout CNS, if enabled |
604 | 1393 WIN_STD dm_custom_cns3_column2+.2,dm_custom_cns3_row |
1394 btfsc FLAG_bailout_mode ; in bailout? | |
1395 bra TFT_CNS_3 ; YES - show "---" | |
1396 TSTOSS opt_calc_asc_gasvolume ; NO - bailout volume calculation requested? | |
1397 bra TFT_CNS_1 ; NO - continue checking fTTS extra time | |
1398 btfss FLAG_oc_mode ; YES - in OC mode? | |
1399 bra TFT_CNS_2 ; NO - show CNS% | |
1400 TFT_CNS_1: ; not in bailout, no volume calculation, and/or in OC mode | |
1401 TSTOSS char_I_extra_time ; fTTS extra time configured? | |
1402 bra TFT_CNS_3 ; NO - show "---" | |
560 | 1403 TFT_CNS_2: |
582 | 1404 movff int_O_alternate_CNS_fraction+0,lo ; YES - show CNS% |
1405 movff int_O_alternate_CNS_fraction+1,hi | |
1406 call TFT_color_code_cns | |
604 | 1407 output_16_3 ; output as xxx |
582 | 1408 STRCAT_PRINT "% " |
560 | 1409 bra TFT_CNS_4 |
1410 TFT_CNS_3: | |
604 | 1411 call TFT_memo_color |
582 | 1412 STRCPY_PRINT "--- " |
560 | 1413 TFT_CNS_4: |
1414 ; current CNS | |
604 | 1415 WIN_STD dm_custom_cns3_column3+.3,dm_custom_cns3_row |
582 | 1416 movff int_O_CNS_fraction+0,lo |
1417 movff int_O_CNS_fraction+1,hi | |
1418 call TFT_color_code_cns | |
604 | 1419 output_16_3 ; output as xxx |
582 | 1420 STRCAT_PRINT "%" |
604 | 1421 TFT_display_exit_2: |
1422 bcf leftbind | |
1423 goto TFT_standard_color ; and return... | |
1424 | |
1425 | |
1426 global TFT_ppo2_sensors_mask ; mask for ppO2 sensors | |
1427 TFT_ppo2_sensors_mask: | |
582 | 1428 call TFT_divemask_color |
604 | 1429 WIN_TINY dm_custom_hud_sensor1_column+.4,dm_custom_hud_title_row |
582 | 1430 STRCPY_TEXT_PRINT tDiveHudMask1 |
604 | 1431 WIN_TINY dm_custom_hud_sensor2_column+.3,dm_custom_hud_title_row |
582 | 1432 STRCPY_TEXT_PRINT tDiveHudMask2 |
604 | 1433 WIN_TINY dm_custom_hud_sensor3_column+.2,dm_custom_hud_title_row |
582 | 1434 STRCPY_TEXT_PRINT tDiveHudMask3 |
604 | 1435 bra TFT_display_exit_2 |
1436 | |
1437 | |
1438 global TFT_ppo2_sensors ; data for ppO2 sensors | |
1439 TFT_ppo2_sensors: | |
560 | 1440 ; |
1441 ; Definition of the output: | |
1442 ; | |
582 | 1443 ; sensorX use voting o2 |
1444 ; _calibrated _O2 _logic _ppo2 Output Color | |
1445 ; _ok _sensorX _sensorX _sensorX | |
560 | 1446 ;----------------------------------------------------------------------------------------------- |
604 | 1447 ; 0 -/- -/- -/- "----" TFT_memo_color |
582 | 1448 ; 1 0 -/- = 0 o2_ppo2_sensorX TFT_attention_color |
1449 ; 1 0 -/- > 0 o2_ppo2_sensorX TFT_disabled_color | |
1450 ; 1 1 0 -/- o2_ppo2_sensorX TFT_color_code_ppo2_hud + win_invert | |
1451 ; 1 1 1 -/- o2_ppo2_sensorX TFT_color_code_ppo2_hud | |
560 | 1452 ; |
582 | 1453 bsf leftbind |
560 | 1454 ; sensor 1 |
582 | 1455 btfsc sensor1_calibrated_ok ; valid calibration? |
604 | 1456 bra TFT_update_hud1b ; YES |
1457 btfsc sensor1_active ; valid HUD data for this sensor | |
1458 bra TFT_update_hud1b ; YES | |
1459 | |
560 | 1460 ; no valid calibration |
604 | 1461 WIN_STD dm_custom_hud_sensor1_column+.7, dm_custom_hud_row+.5 |
1462 call TFT_memo_color | |
582 | 1463 STRCPY_PRINT "---" |
1464 bra TFT_update_hud2a ; continue with sensor 2 | |
560 | 1465 TFT_update_hud1b: |
1466 ; sensor has a valid calibration | |
604 | 1467 WIN_MEDIUM dm_custom_hud_sensor1_column,dm_custom_hud_row |
582 | 1468 movff o2_ppo2_sensor1,lo ; load ppO2 value into transfer storage for output |
1469 clrf hi ; | |
560 | 1470 btfsc use_O2_sensor1 ; in use? |
604 | 1471 bra TFT_update_hud1d ; YES |
560 | 1472 ; valid calibration, but not in use |
1473 tstfsz o2_ppo2_sensor1 ; sensor value = 0? | |
1474 bra TFT_update_hud1c ; no | |
1475 ; valid calibration, not in use and value = 0 | |
582 | 1476 call TFT_attention_color ; output in yellow |
560 | 1477 bra TFT_update_hud1e |
1478 TFT_update_hud1c: | |
1479 ; sensor has valid calibration, is not in use and has a value > 0 | |
582 | 1480 call TFT_disabled_color ; output in light blue |
560 | 1481 bra TFT_update_hud1e |
1482 TFT_update_hud1d: | |
1483 ; sensor has valid calibration and is in use | |
582 | 1484 call TFT_color_code_ppo2_hud ; With ppO2 [cbar] in lo |
560 | 1485 btfsc voting_logic_sensor1 ; sensor value agrees with other sensor's values? |
604 | 1486 bra TFT_update_hud1e ; YES |
560 | 1487 ; valid calibration, in use, but value does not agree with other sensors |
582 | 1488 bsf win_invert ; invert output |
1489 TFT_update_hud1e: | |
560 | 1490 ; all coloring is set up now, let's write the value to the display! |
582 | 1491 output_16dp .3 ; x.xx bar |
1492 STRCAT_PRINT "" | |
1493 bcf win_invert | |
560 | 1494 |
1495 TFT_update_hud2a: ; sensor 2 | |
582 | 1496 btfsc sensor2_calibrated_ok ; valid calibration? |
604 | 1497 bra TFT_update_hud2b ; YES |
1498 btfsc sensor2_active ; valid HUD data for this sensor | |
1499 bra TFT_update_hud2b ; YES | |
560 | 1500 ; no valid calibration |
604 | 1501 WIN_STD dm_custom_hud_sensor2_column+.7, dm_custom_hud_row+.5 |
1502 call TFT_memo_color | |
582 | 1503 STRCPY_PRINT "---" |
1504 bra TFT_update_hud3a ; continue with sensor 3 | |
560 | 1505 TFT_update_hud2b: |
1506 ; sensor has a valid calibration | |
604 | 1507 WIN_MEDIUM dm_custom_hud_sensor2_column,dm_custom_hud_row |
582 | 1508 movff o2_ppo2_sensor2,lo ; load ppO2 value into transfer storage for output |
1509 clrf hi ; | |
560 | 1510 btfsc use_O2_sensor2 ; in use? |
604 | 1511 bra TFT_update_hud2d ; YES |
560 | 1512 ; valid calibration, but not in use |
1513 tstfsz o2_ppo2_sensor2 ; sensor value = 0? | |
604 | 1514 bra TFT_update_hud2c ; NO |
560 | 1515 ; valid calibration, not in use and value = 0 |
582 | 1516 call TFT_attention_color ; output in yellow |
560 | 1517 bra TFT_update_hud2e |
1518 TFT_update_hud2c: | |
1519 ; sensor has valid calibration, is not in use and has a value > 0 | |
582 | 1520 call TFT_disabled_color ; output in light blue |
560 | 1521 bra TFT_update_hud2e |
1522 TFT_update_hud2d: | |
1523 ; sensor has valid calibration and is in use | |
582 | 1524 call TFT_color_code_ppo2_hud ; With ppO2 [cbar] in lo |
560 | 1525 btfsc voting_logic_sensor2 ; sensor value agrees with other sensor's vlaues? |
604 | 1526 bra TFT_update_hud2e ; YES |
560 | 1527 ; valid calibration, in use, but value does not agree with other sensors |
582 | 1528 bsf win_invert ; invert output |
1529 TFT_update_hud2e: | |
560 | 1530 ; all coloring is set up now, let's write the value to the display! |
582 | 1531 output_16dp .3 ; x.xx bar |
1532 STRCAT_PRINT "" | |
1533 bcf win_invert | |
560 | 1534 |
1535 TFT_update_hud3a: ; sensor 3 | |
582 | 1536 btfsc sensor3_calibrated_ok ; valid calibration? |
604 | 1537 bra TFT_update_hud3b ; YES |
1538 btfsc sensor3_active ; valid HUD data for this sensor | |
1539 bra TFT_update_hud3b ; YES | |
560 | 1540 ; no valid calibration |
604 | 1541 WIN_STD dm_custom_hud_sensor3_column+.7, dm_custom_hud_row+.5 |
1542 call TFT_memo_color | |
582 | 1543 STRCPY_PRINT "---" |
1544 bra TFT_update_hud4 ; done | |
560 | 1545 TFT_update_hud3b: |
1546 ; sensor has a valid calibration | |
604 | 1547 WIN_MEDIUM dm_custom_hud_sensor3_column,dm_custom_hud_row |
582 | 1548 movff o2_ppo2_sensor3,lo ; load ppO2 value into transfer storage for output |
1549 clrf hi ; | |
560 | 1550 btfsc use_O2_sensor3 ; in use? |
604 | 1551 bra TFT_update_hud3d ; YES |
560 | 1552 ; valid calibration, but not in use |
1553 tstfsz o2_ppo2_sensor3 ; sensor value = 0? | |
604 | 1554 bra TFT_update_hud3c ; NO |
560 | 1555 ; valid calibration, not in use and value = 0 |
582 | 1556 call TFT_attention_color ; output in yellow |
560 | 1557 bra TFT_update_hud3e |
1558 TFT_update_hud3c: | |
1559 ; sensor has valid calibration, is not in use and has a value > 0 | |
582 | 1560 call TFT_disabled_color ; output in light blue |
560 | 1561 bra TFT_update_hud3e |
1562 TFT_update_hud3d: | |
1563 ; sensor has valid calibration and is in use | |
582 | 1564 call TFT_color_code_ppo2_hud ; With ppO2 [cbar] in lo |
604 | 1565 btfsc voting_logic_sensor3 ; sensor value agrees with other sensor's values? |
1566 bra TFT_update_hud3e ; YES | |
560 | 1567 ; valid calibration, in use, but value does not agree with other sensors |
582 | 1568 bsf win_invert ; invert output |
1569 TFT_update_hud3e: | |
560 | 1570 ; all coloring is set up now, let's write the value to the display! |
582 | 1571 output_16dp .3 ; x.xx bar |
1572 STRCAT_PRINT "" | |
1573 bcf win_invert | |
1574 | |
560 | 1575 TFT_update_hud4: ; closure |
604 | 1576 bra TFT_display_exit_3 |
1577 | |
1578 | |
1579 global TFT_surface_sensor ; update sensor data in surface mode | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1580 TFT_surface_sensor: |
604 | 1581 movf hardware_flag1,W |
582 | 1582 sublw 0x11 ; 2 with BLE |
1583 btfsc STATUS,Z | |
604 | 1584 return ; ignore for 0x11 |
582 | 1585 ; show three sensors |
1586 bsf leftbind | |
1587 WIN_SMALL surf_hud_sensor1_column,surf_hud_sensor1_row | |
560 | 1588 btfsc sensor1_calibrated_ok |
604 | 1589 bra TFT_surface_sensor1 ; YES |
1590 btfsc sensor1_active ; valid HUD data for this sensor | |
1591 bra TFT_surface_sensor1 ; YES | |
582 | 1592 call TFT_standard_color |
1593 STRCPY_PRINT "--- " | |
604 | 1594 bra TFT_surface_sensor2 ; skip sensor 1 |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1595 TFT_surface_sensor1: |
582 | 1596 movff o2_ppo2_sensor1,lo |
604 | 1597 call TFT_color_code_ppo2_hud ; with ppO2 [cbar] in lo |
582 | 1598 clrf hi |
560 | 1599 bsf leftbind |
582 | 1600 output_16dp .3 ; x.xx bar |
1601 bcf leftbind | |
1602 STRCAT_PRINT "" | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1603 TFT_surface_sensor2: |
582 | 1604 WIN_SMALL surf_hud_sensor2_column,surf_hud_sensor2_row |
560 | 1605 btfsc sensor2_calibrated_ok |
604 | 1606 bra TFT_surface_sensor3 ; YES |
1607 btfsc sensor2_active ; valid HUD data for this sensor | |
1608 bra TFT_surface_sensor3 ; YES | |
582 | 1609 call TFT_standard_color |
1610 STRCPY_PRINT "--- " | |
604 | 1611 bra TFT_surface_sensor4 ; skip sensor 2 |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1612 TFT_surface_sensor3: |
582 | 1613 movff o2_ppo2_sensor2,lo |
604 | 1614 call TFT_color_code_ppo2_hud ; with ppO2 [cbar] in lo |
582 | 1615 clrf hi |
560 | 1616 bsf leftbind |
582 | 1617 output_16dp .3 ; x.xx bar |
1618 bcf leftbind | |
1619 STRCAT_PRINT "" | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1620 TFT_surface_sensor4: |
582 | 1621 WIN_SMALL surf_hud_sensor3_column,surf_hud_sensor3_row |
560 | 1622 btfsc sensor3_calibrated_ok |
604 | 1623 bra TFT_surface_sensor5 ; YES |
1624 btfsc sensor3_active ; valid HUD data for this sensor | |
1625 bra TFT_surface_sensor5 ; YES | |
582 | 1626 call TFT_standard_color |
1627 STRCPY_PRINT "--- " | |
604 | 1628 bra TFT_surface_sensor6 ; skip sensor 3 |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1629 TFT_surface_sensor5: |
582 | 1630 movff o2_ppo2_sensor3,lo |
604 | 1631 call TFT_color_code_ppo2_hud ; with ppO2 [cbar] in lo |
582 | 1632 clrf hi |
560 | 1633 bsf leftbind |
582 | 1634 output_16dp .3 ; x.xx bar |
1635 bcf leftbind | |
1636 STRCAT_PRINT "" | |
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
1637 TFT_surface_sensor6: |
604 | 1638 TFT_display_exit_3: |
582 | 1639 bcf leftbind |
1640 goto TFT_standard_color ; and return... | |
1641 | |
1642 | |
604 | 1643 global TFT_sensor_mV |
1644 TFT_sensor_mV: | |
1645 call TFT_standard_color | |
582 | 1646 bsf leftbind |
604 | 1647 |
582 | 1648 WIN_SMALL surf_mV_sensor_column,surf_mV_sensor1_row |
1649 movff o2_mv_sensor1+0,lo ; in 0.1mV steps | |
1650 movff o2_mv_sensor1+1,hi ; in 0.1mV steps | |
1651 STRCAT "1: " | |
604 | 1652 rcall TFT_sensor_mV_helper |
1653 | |
582 | 1654 WIN_SMALL surf_mV_sensor_column,surf_mV_sensor2_row |
1655 movff o2_mv_sensor2+0,lo ; in 0.1mV steps | |
1656 movff o2_mv_sensor2+1,hi ; in 0.1mV steps | |
1657 STRCAT "2: " | |
604 | 1658 rcall TFT_sensor_mV_helper |
582 | 1659 |
1660 WIN_SMALL surf_mV_sensor_column,surf_mV_sensor3_row | |
1661 movff o2_mv_sensor3+0,lo ; in 0.1mV steps | |
1662 movff o2_mv_sensor3+1,hi ; in 0.1mV steps | |
1663 STRCAT "3: " | |
604 | 1664 rcall TFT_sensor_mV_helper |
1665 bra TFT_display_exit_3 | |
1666 | |
1667 TFT_sensor_mV_helper: | |
582 | 1668 output_16dp .4 ; xxx.y mV |
1669 STRCAT_PRINT "mV " | |
604 | 1670 return |
582 | 1671 |
1672 | |
1673 global TFT_sensor_surface_warning | |
535
cf68fe0c3002
NEW: Show a warning for each sensor if the sensor is end-of-life after calibration (Less then 8mV in Air at sea level)
heinrichsweikamp
parents:
533
diff
changeset
|
1674 TFT_sensor_surface_warning: |
582 | 1675 call TFT_warnings_color |
560 | 1676 btfss sensor1_calibrated_ok ; do not show end of lifetime arrow if sensor failed calibration at all |
1677 bra TFT_sensor_mV2 | |
582 | 1678 movff opt_x_s1+1,lo ; into bank1 |
604 | 1679 movf lo,W ; when opt_x_s1 > 255 the sensor will just give 8 mV at a ppO2 of 0.21 any more |
582 | 1680 bz TFT_sensor_mV2 ; the sensor is not too bad yet for a warning |
1681 WIN_SMALL surf_mV_sensor_status_column,surf_mV_sensor1_row-.5 | |
1682 STRCPY_PRINT "\xb8" ; mark sensor as being at end of lifetime | |
535
cf68fe0c3002
NEW: Show a warning for each sensor if the sensor is end-of-life after calibration (Less then 8mV in Air at sea level)
heinrichsweikamp
parents:
533
diff
changeset
|
1683 TFT_sensor_mV2: |
560 | 1684 btfss sensor2_calibrated_ok ; do not show end of lifetime arrow if sensor failed calibration at all |
1685 bra TFT_sensor_mV3 | |
582 | 1686 movff opt_x_s2+1,lo ; into bank1 |
604 | 1687 movf lo,W ; when opt_x_s2 > 255 the sensor will just give 8 mV at a ppO2 of 0.21 any more |
582 | 1688 bz TFT_sensor_mV3 ; the sensor is not too bad yet for a warning |
1689 WIN_SMALL surf_mV_sensor_status_column,surf_mV_sensor2_row-.5 | |
1690 STRCPY_PRINT "\xb8" ; mark sensor as being at end of lifetime | |
535
cf68fe0c3002
NEW: Show a warning for each sensor if the sensor is end-of-life after calibration (Less then 8mV in Air at sea level)
heinrichsweikamp
parents:
533
diff
changeset
|
1691 TFT_sensor_mV3: |
560 | 1692 btfss sensor3_calibrated_ok ; do not show end of lifetime arrow if sensor failed calibration at all |
1693 bra TFT_sensor_mV4 | |
582 | 1694 movff opt_x_s3+1,lo ; into bank1 |
604 | 1695 movf lo,W ; when opt_x_s3 > 255 the sensor will just give 8 mV at a ppO2 of 0.21 any more |
582 | 1696 bz TFT_sensor_mV4 ; the sensor is not too bad yet for a warning |
1697 WIN_SMALL surf_mV_sensor_status_column,surf_mV_sensor3_row-.5 | |
1698 STRCPY_PRINT "\xb8" ; mark sensor as being at end of lifetime | |
535
cf68fe0c3002
NEW: Show a warning for each sensor if the sensor is end-of-life after calibration (Less then 8mV in Air at sea level)
heinrichsweikamp
parents:
533
diff
changeset
|
1699 TFT_sensor_mV4: |
604 | 1700 bra TFT_display_exit_3 |
582 | 1701 |
1702 | |
1703 global TFT_menu_calibrate | |
1704 TFT_menu_calibrate: ; update mV data in calibration menu | |
1705 btfss s8_digital ; =1: Digital I/O | |
1706 bra TFT_menu_calibrate_analog ; use analog | |
1707 btfss new_s8_data_available ; new data frame received? | |
1708 bra TFT_menu_calibrate_common ; NO - use old values... | |
1709 ; YES - update the values | |
560 | 1710 call compute_mvolts_for_all_sensors |
582 | 1711 bra TFT_menu_calibrate_common |
560 | 1712 TFT_menu_calibrate_analog: |
582 | 1713 call get_analog_inputs |
560 | 1714 TFT_menu_calibrate_common: |
582 | 1715 call TFT_attention_color ; show in yellow |
1716 bsf leftbind | |
1717 WIN_SMALL surf_menu_sensor1_column,surf_menu2_sensor1_row | |
1718 movff o2_mv_sensor1+0,lo ; in 0.1mV steps | |
1719 movff o2_mv_sensor1+1,hi ; in 0.1mV steps | |
1720 output_16dp .4 ; xxx.y mV | |
1721 STRCAT_PRINT "mV " | |
1722 WIN_SMALL surf_menu_sensor2_column,surf_menu2_sensor2_row | |
1723 movff o2_mv_sensor2+0,lo ; in 0.1mV steps | |
1724 movff o2_mv_sensor2+1,hi ; in 0.1mV steps | |
1725 output_16dp .4 ; xxx.y mV | |
1726 STRCAT_PRINT "mV " | |
1727 WIN_SMALL surf_menu_sensor3_column,surf_menu2_sensor3_row | |
1728 movff o2_mv_sensor3+0,lo ; in 0.1mV steps | |
1729 movff o2_mv_sensor3+1,hi ; in 0.1mV steps | |
1730 output_16dp .4 ; xxx.y mV | |
1731 STRCAT_PRINT "mV " | |
604 | 1732 bra TFT_display_exit_3 |
582 | 1733 |
1734 | |
1735 global TFT_clock | |
0 | 1736 TFT_clock: |
604 | 1737 IFDEF _ostc_logo |
582 | 1738 WIN_SMALL surf_clock_column,surf_clock_row |
604 | 1739 ELSE |
1740 WIN_SMALL surf_clock_column+.7,surf_clock_row | |
1741 ENDIF | |
582 | 1742 TFT_clock2: ; called from divemode clock |
1743 call TFT_standard_color | |
0 | 1744 movff hours,lo |
1745 output_99 | |
1746 movlw ':' | |
582 | 1747 btfss secs,0 ; blinking every second |
0 | 1748 movlw ' ' |
1749 movwf POSTINC2 | |
1750 movff mins,lo | |
1751 output_99x | |
1752 STRCAT_PRINT "" | |
1753 return | |
1754 | |
1755 global TFT_show_time_date_menu | |
1756 TFT_show_time_date_menu: | |
582 | 1757 call speed_fastest |
1758 WIN_SMALL .15,.30 | |
1759 call TFT_standard_color | |
0 | 1760 movff hours,lo |
1761 output_99 | |
1762 PUTC ':' | |
1763 movff mins,lo | |
1764 output_99x | |
1765 PUTC ':' | |
1766 movff secs,lo | |
1767 output_99x | |
582 | 1768 STRCAT " - " |
1769 movff day,lo | |
1770 movff month,hi | |
1771 movff year,up | |
1772 call TFT_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
0 | 1773 STRCAT_PRINT " " |
1774 return | |
560 | 1775 |
0 | 1776 ;============================================================================= |
1777 | |
604 | 1778 global TFT_surface_decosettings ; show all deco settings |
41 | 1779 TFT_surface_decosettings: |
560 | 1780 ; Deco Mode |
41 | 1781 call TFT_standard_color |
560 | 1782 WIN_SMALL surf_gaslist_column,surf_gaslist_row |
582 | 1783 STRCAT_PRINT "ZH-L16" |
1784 movff char_I_deco_model,WREG | |
1785 iorwf WREG | |
1786 bnz TFT_surface_decosettings1 | |
560 | 1787 ; Display ZH-L16 sat/desat model |
582 | 1788 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.1) |
1789 lfsr FSR2,buffer | |
1790 movff char_I_desaturation_multiplier,lo | |
1791 bsf leftbind | |
1792 output_8 | |
1793 STRCAT "%/" | |
1794 movff char_I_saturation_multiplier,lo | |
1795 output_8 | |
1796 STRCAT_PRINT "%" | |
1797 bra TFT_surface_decosettings2 | |
1798 ; Display ZH-L16-GF low/high model | |
41 | 1799 TFT_surface_decosettings1: |
582 | 1800 TEXT_SMALL surf_gaslist_column+.43,surf_gaslist_row,tZHL16GF |
1801 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.1) | |
1802 STRCPY_TEXT tGF ; GF: | |
560 | 1803 movff opt_GF_low,lo |
582 | 1804 output_99x |
1805 STRCAT "/" | |
560 | 1806 movff opt_GF_high,lo |
582 | 1807 output_99x |
1808 STRCAT_PRINT "" | |
1809 TFT_surface_decosettings2: ; fTTS | |
1810 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.2) | |
1811 STRCPY_TEXT tFTTSMenu | |
1812 movff char_I_extra_time,lo | |
1813 bsf leftbind | |
1814 output_8 | |
1815 STRCAT_TEXT_PRINT tMinutes | |
1816 ; Last Stop | |
1817 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.3) | |
604 | 1818 STRCPY_TEXT tLastDecostopSurf |
560 | 1819 movff opt_last_stop,lo |
582 | 1820 output_8 |
1821 STRCAT_TEXT_PRINT tMeters | |
1822 ; Salinity | |
1823 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.4) | |
1824 STRCPY_TEXT tDvSalinity | |
1825 movff opt_salinity,lo | |
1826 output_8 | |
1827 bcf leftbind | |
1828 STRCAT_TEXT_PRINT tPercent | |
1829 return | |
0 | 1830 |
1831 global TFT_debug_output | |
1832 TFT_debug_output: | |
582 | 1833 WIN_TINY .80,.0 |
1834 call TFT_standard_color | |
1835 lfsr FSR2,buffer | |
1836 movff analog_sw1,lo | |
1837 output_8 | |
1838 PUTC "," | |
1839 movff analog_sw2,lo | |
1840 output_8 | |
1841 STRCAT_PRINT "" | |
1842 return | |
1843 | |
604 | 1844 global TFT_divetimeout ; show timeout counter |
55 | 1845 TFT_divetimeout: |
604 | 1846 call TFT_warning_set_window ; set the row and column for the current message |
1847 tstfsz WREG ; is there room for the message? | |
1848 return ; NO | |
1849 call TFT_memo_color | |
1850 STRCPY 0x94 ; "End of dive" symbol | |
582 | 1851 movff opt_diveTimeout,WREG ; in [min] |
1852 mullw .60 | |
1853 movff PRODL,sub_a+0 | |
1854 movff PRODH,sub_a+1 ; in [s] | |
1855 movff timeout_counter1+0,sub_b+0 | |
1856 movff timeout_counter1+1,sub_b+1 | |
1857 call subU16 ; sub_c = sub_a - sub_b (with UNSIGNED values) | |
1858 movff sub_c+0,lo | |
1859 movff sub_c+1,hi | |
604 | 1860 call convert_time ; converts hi:lo in minutes to hours (up:hi) and minutes (lo) |
55 | 1861 movf hi,W |
1862 movff lo,hi | |
1863 movwf lo ; exchange lo and hi | |
1864 output_99x | |
582 | 1865 PUTC ':' |
55 | 1866 movff hi,lo |
1867 output_99x | |
604 | 1868 movlw dm_warning_length ; divemode string length |
1869 call TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
55 | 1870 STRCAT_PRINT "" |
582 | 1871 bcf win_invert |
55 | 1872 return |
1873 | |
560 | 1874 global TFT_display_ftts |
1875 TFT_display_ftts: | |
582 | 1876 call TFT_warning_set_window ; sets the row and column for the current warning |
604 | 1877 tstfsz WREG ; is there room for the message? |
1878 return ; NO - done | |
1879 btfsc FLAG_oc_mode ; YES - in OC mode? | |
582 | 1880 bra TFT_display_ftts_1 ; YES - print fTTS label |
604 | 1881 TSTOSS opt_calc_asc_gasvolume ; NO - bailout volume calculation requested? |
1882 bra TFT_display_ftts_1 ; NO - print fTTS label | |
1883 STRCPY "B/O" ; YES - print bailout label | |
1884 bra TFT_display_ftts_2 | |
1885 TFT_display_ftts_1: ; OC or CCR/pSCR but no bailout volume calculation | |
582 | 1886 STRCPY "@+" ; print fTTS label |
604 | 1887 TFT_display_ftts_2: |
1888 movff char_I_extra_time,lo ; get fTTS delay time | |
1889 bsf leftbind ; print with alignment to the left | |
1890 output_8 ; print fTTS delay time | |
1891 PUTC ":" ; ":" | |
582 | 1892 movff int_O_alternate_ascenttime+0,lo |
1893 movff int_O_alternate_ascenttime+1,hi | |
604 | 1894 call TFT_memo_color ; set memo color |
1895 btfss hi,int_invalid_flag ; is the invalid flag set? | |
1896 bra TFT_display_ftts_3 ; NO - keep memo color | |
1897 bcf hi,int_invalid_flag ; YES - clear flag | |
1898 call TFT_disabled_color ; - switch to disabled color | |
1899 TFT_display_ftts_3: | |
1900 btfsc hi,int_not_yet_computed ; is the not-computed-yet flag set? | |
1901 bra TFT_display_ftts_4 ; YES - show dashes | |
582 | 1902 movf lo,W |
604 | 1903 iorwf hi,W ; extra_ascenttime = 0 ? |
1904 bz TFT_display_ftts_5 ; YES - show "NDL" | |
1905 movff char_O_deco_info,up ; get deco info vector | |
1906 btfsc up,deco_steady ; fTTS = TTS ? | |
1907 call TFT_advice_color ; YES - set to advice color (green) | |
1908 btfsc up,deco_decreasing ; fTTS < TTS ? | |
1909 call TFT_advice_color ; YES - set to advice color (green) | |
1910 output_16 ; NO - show ascent time | |
1911 PUTC "'" ; - minutes symbol | |
1912 bra TFT_display_ftts_6 | |
1913 TFT_display_ftts_4: | |
1914 STRCAT "---" ; "---" for not computed | |
1915 bra TFT_display_ftts_6 | |
1916 TFT_display_ftts_5: | |
1917 STRCAT_TEXT tNDL ; "NDL" | |
1918 TFT_display_ftts_6: | |
1919 movlw dm_warning_length ; dive mode string length | |
1920 call TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
0 | 1921 STRCAT_PRINT "" |
604 | 1922 bcf leftbind ; clear left alignment |
1923 goto TFT_standard_color ; ...and return | |
0 | 1924 |
1925 | |
1926 ;============================================================================= | |
560 | 1927 |
1928 global TFT_temp_surfmode | |
0 | 1929 TFT_temp_surfmode: |
582 | 1930 call TFT_divemask_color |
1931 WIN_SMALL surf_temp_column+3*8,surf_temp_row | |
1932 TSTOSS opt_units ; 0=°C, 1=°F | |
560 | 1933 bra TFT_temp_surfmode_metric |
582 | 1934 STRCAT_TEXT tLogTunitF ; °F |
560 | 1935 bra TFT_temp_surfmode_common |
0 | 1936 TFT_temp_surfmode_metric: |
582 | 1937 STRCAT_TEXT tLogTunitC ; °C |
552
af84c45429fd
BUGFIX: Display of negative (?C) water temperatures
heinrichsweikamp
parents:
551
diff
changeset
|
1938 TFT_temp_surfmode_common: |
560 | 1939 STRCAT_PRINT "" |
582 | 1940 WIN_SMALL surf_temp_column,surf_temp_row |
604 | 1941 call TFT_memo_color |
560 | 1942 bra TFT_temp_common |
582 | 1943 |
1944 | |
560 | 1945 global TFT_temp_divemode |
552
af84c45429fd
BUGFIX: Display of negative (?C) water temperatures
heinrichsweikamp
parents:
551
diff
changeset
|
1946 TFT_temp_divemode: |
582 | 1947 bcf FLAG_TFT_temp_divemode |
604 | 1948 btfsc divemode_menu ; is the dive mode menu shown? |
1949 return ; YES - no update of temperature now | |
1950 btfsc blinking_better_gas ; blinking better gas? | |
1951 return ; YES - no update of temperature now | |
1952 btfsc blinking_better_dil ; blinking better diluent? | |
1953 return ; YES - no update of temperature now | |
1954 WIN_SMALL dm_temp_column,dm_temp_row | |
1955 call TFT_memo_color | |
1956 btfsc alternative_divelayout ; in alternative layout? | |
1957 bra TFT_temp_common ; YES - proceed with temperature | |
1958 movlw index_compass_dm ; NO - index of compass custom view | |
1959 cpfseq menupos3 ; - compass shown in custom view? | |
1960 bra TFT_temp_common ; NO - proceed with temperature | |
1961 bra TFT_update_stopwatch ; YES - show resettable dive time instead of temperature | |
552
af84c45429fd
BUGFIX: Display of negative (?C) water temperatures
heinrichsweikamp
parents:
551
diff
changeset
|
1962 TFT_temp_common: |
560 | 1963 SAFE_2BYTE_COPY temperature,lo ; get current temperature |
582 | 1964 TSTOSS opt_units ; 0=°C, 1=°F |
560 | 1965 bra TFT_temp_common_1 |
1966 call convert_celsius_to_fahrenheit ; convert value in lo:hi from celsius to fahrenheit | |
552
af84c45429fd
BUGFIX: Display of negative (?C) water temperatures
heinrichsweikamp
parents:
551
diff
changeset
|
1967 TFT_temp_common_1: |
560 | 1968 rcall TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
1969 btfsc neg_flag ; is the temperature negative? | |
1970 bra TFT_temp_common_2 ; YES - the minus sign has already been written | |
604 | 1971 ; temp is positive, is it less than 10°C ? |
582 | 1972 tstfsz hi |
560 | 1973 bra TFT_temp_common_1a ; >25.5°C, skip here |
1974 movlw .100 | |
1975 cpfslt lo | |
1976 bra TFT_temp_common_1a ; >10.0°C, skip here | |
1977 bsf leftbind | |
1978 output_16dp d'4' ; x.y°C | |
1979 bcf leftbind | |
604 | 1980 bra TFT_temp_common_3 ; done |
553
2e70700774b9
Display dezimal for temperatures between 10 and 0?C
heinrichsweikamp
parents:
552
diff
changeset
|
1981 TFT_temp_common_1a: |
560 | 1982 PUTC " " ; NO - write a space instead of the minus sign |
552
af84c45429fd
BUGFIX: Display of negative (?C) water temperatures
heinrichsweikamp
parents:
551
diff
changeset
|
1983 TFT_temp_common_2: |
604 | 1984 bsf ignore_digit5 ; ignore decimal (flag will be cleared by output_16) |
560 | 1985 output_16_3 ; output 0-999 without decimal -> writes ' ' - 99 |
582 | 1986 movff buffer+2,lo ; get output from unit position |
1987 movlw " " ; load code of the space character | |
560 | 1988 cpfseq lo ; is there a space sign on the unit position? (happens between +1 and -1) |
1989 bra TFT_temp_common_3 ; NO | |
1990 movff WREG,buffer+0 ; YES - replace potential minus sign with a space (temps from -0.9° to -0.1° else would appear as '- 0') | |
1991 movlw "0" ; load code of the zero character | |
1992 movff WREG,buffer+2 ; replace space with a zero | |
552
af84c45429fd
BUGFIX: Display of negative (?C) water temperatures
heinrichsweikamp
parents:
551
diff
changeset
|
1993 TFT_temp_common_3: |
560 | 1994 btfss divemode ; are we in dive mode? |
1995 bra TFT_temp_common_5 ; NO - no unit to append | |
1996 TSTOSS opt_units ; YES - check unit type: 0=°C, 1=°F | |
1997 bra TFT_temp_common_4 ; go metric | |
1998 STRCAT_TEXT tLogTunitF ; append °F | |
1999 bra TFT_temp_common_5 | |
552
af84c45429fd
BUGFIX: Display of negative (?C) water temperatures
heinrichsweikamp
parents:
551
diff
changeset
|
2000 TFT_temp_common_4: |
582 | 2001 STRCAT_TEXT tLogTunitC ; append °C |
552
af84c45429fd
BUGFIX: Display of negative (?C) water temperatures
heinrichsweikamp
parents:
551
diff
changeset
|
2002 TFT_temp_common_5: |
560 | 2003 STRCAT_PRINT "" ; output to screen |
582 | 2004 return |
2005 | |
0 | 2006 ;============================================================================= |
560 | 2007 |
582 | 2008 global TFT_divemode_menu_cursor |
0 | 2009 TFT_divemode_menu_cursor: |
582 | 2010 WIN_BOX_BLACK dm_menu_row+.1, dm_menu_lower-.1, dm_menu_item1_column-.8, dm_menu_item1_column-.1 |
2011 WIN_BOX_BLACK dm_menu_row+.1, dm_menu_lower-.1, dm_menu_item4_column-.8, dm_menu_item4_column-.1 | |
2012 call TFT_standard_color | |
2013 | |
2014 movlw dm_menu_item1_column-.8 | |
604 | 2015 btfsc menupos1,2 ; > 3 ? |
2016 movlw dm_menu_item4_column-.8 ; YES | |
2017 movwf win_leftx2 | |
2018 | |
2019 movff menupos1,lo ; copy menu position | |
582 | 2020 movlw dm_menu_item6_row |
2021 dcfsnz lo,F | |
2022 movlw dm_menu_item1_row | |
2023 dcfsnz lo,F | |
2024 movlw dm_menu_item2_row | |
2025 dcfsnz lo,F | |
2026 movlw dm_menu_item3_row | |
2027 dcfsnz lo,F | |
2028 movlw dm_menu_item4_row | |
2029 dcfsnz lo,F | |
2030 movlw dm_menu_item5_row | |
604 | 2031 movwf win_top |
582 | 2032 movlw FT_SMALL |
604 | 2033 movwf win_font |
582 | 2034 STRCPY_PRINT "\xb7" ; print cursor |
2035 return | |
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
139
diff
changeset
|
2036 |
604 | 2037 |
0 | 2038 global TFT_active_gas_divemode |
604 | 2039 TFT_active_gas_divemode: ; display gas/setpoint |
582 | 2040 bcf FLAG_TFT_active_gas_divemode |
604 | 2041 btfsc divemode_menu ; is the dive mode menu shown? |
2042 return ; YES - return | |
2043 btfsc FLAG_apnoe_mode ; in apnoe mode? | |
2044 return ; YES - return | |
2045 btfsc FLAG_gauge_mode ; in gauge mode? | |
2046 return ; YES - return | |
2047 btfss FLAG_oc_mode ; in OC mode? | |
2048 bra TFT_active_setpoint ; NO - show setpoint and gas mix | |
2049 bra TFT_active_gas_divemode_oc ; YES - show OC gas | |
2050 | |
2051 TFT_active_setpoint_bail: ; bailout case | |
2052 tstfsz menupos2 ; any option shown? | |
2053 bra TFT_active_gas_divemode_oc ; YES - do not overwrite with bailout text | |
2054 WIN_SMALL dm_active_dil_column, dm_active_dil_row | |
605 | 2055 call TFT_attention_color ; print in yellow |
604 | 2056 STRCPY_TEXT_PRINT tDiveBailout ; "Bailout" |
2057 TFT_active_gas_divemode_oc: ; common part for OC and bailout | |
2058 movff int_O_breathed_ppO2+0,lo ; color-code the output of the gas by the ppO2 it yields | |
2059 movff int_O_breathed_ppO2+1,hi ; | |
2060 call TFT_color_code_ppo2 ; with ppO2 [cbar] in hi:lo | |
2061 btfss better_gas_available ; check if a better gas is available and a gas change shall be advised | |
2062 bra TFT_active_gas_print ; NO - print in normal rendering | |
582 | 2063 btg blinking_better_gas ; YES - toggle blink bit |
2064 btfss blinking_better_gas ; blink now? | |
604 | 2065 bra TFT_active_gas_print ; NO - print in normal rendering |
582 | 2066 call TFT_attention_color ; YES - blink in yellow |
2067 bsf win_invert ; set invert flag | |
604 | 2068 TFT_active_gas_print: |
2069 WIN_STD dm_active_gas_column, dm_active_gas_row | |
582 | 2070 movff char_I_O2_ratio,lo ; lo now stores O2 in % |
2071 movff char_I_He_ratio,hi ; hi now stores He in % | |
2072 call customview_show_mix ; put "Nxlo", "Txlo/hi", "Air" or "O2" into Postinc2 | |
560 | 2073 STRCAT_PRINT "" |
582 | 2074 bcf win_invert ; reset invert flag |
560 | 2075 goto TFT_standard_color ; ...and return |
2076 | |
604 | 2077 ; in CCR / pSCR mode - and maybe in bailout |
2078 TFT_active_setpoint: ; | |
2079 btfsc FLAG_bailout_mode ; in bailout? | |
582 | 2080 bra TFT_active_setpoint_bail ; YES - show "Bailout" instead of setpoint |
604 | 2081 |
2082 ; on the loop | |
2083 movff int_O_breathed_ppO2+0,lo ; color-code the output by the ppO2 of the loop gas mixture | |
560 | 2084 movff int_O_breathed_ppO2+1,hi |
582 | 2085 call TFT_color_code_ppo2 ; with ppO2 [cbar] in hi:lo |
604 | 2086 btfss secs,0 ; timebase for blinking effect: on even second? |
2087 bra TFT_active_setpoint_print ; YES - print ppO2 with normal rendering | |
2088 btfsc setpoint_fallback ; NO - check if we are in fallback condition | |
582 | 2089 bra TFT_active_setpoint_fallb ; YES - process fallback case |
2090 movff int_O_breathed_ppO2+1,WREG ; NO - get flags again (have been cleared in hi:lo by TFT_color_code_ppo2 meanwhile) | |
2091 btfss WREG,int_warning_flag ; warning flag set? | |
2092 bra TFT_active_setpoint_print ; NO - ppO2 is ok, print ppO2 with normal rendering | |
2093 bra TFT_active_setpoint_com ; YES - continue with blinking common part | |
560 | 2094 TFT_active_setpoint_fallb: ; set up fallback case |
604 | 2095 call TFT_attention_color ; text in yellow |
582 | 2096 TFT_active_setpoint_com: ; blinking common part |
2097 bsf win_invert ; set invert flag | |
560 | 2098 TFT_active_setpoint_print: |
2099 WIN_STD dm_active_gas_column, dm_active_gas_row | |
2100 bsf leftbind | |
582 | 2101 output_16dp .3 ; x.xx bar |
2102 bcf leftbind | |
2103 STRCAT_TEXT tbar | |
2104 movff opt_ccr_mode,WREG ; =0: Fixed SP, =1: Sensor, =2: Auto SP | |
2105 sublw .1 ; opt_ccr_mode = 1 (Sensor)? | |
2106 bnz TFT_active_setpoint2_a ; NO - skip | |
2107 PUTC "*" ; YES - add an astrix | |
560 | 2108 TFT_active_setpoint2_a: |
2109 STRCAT_PRINT "" | |
582 | 2110 bcf win_invert ; reset invert flag |
604 | 2111 call TFT_memo_color ; revert to memo color |
2112 TFT_active_setpoint_diluent: ; diluent gas | |
2113 movff int_O_pure_ppO2+0,lo ; color-code the output | |
2114 movff int_O_pure_ppO2+1,hi | |
2115 call TFT_color_code_ppo2 ; with ppO2 [cbar] in hi:lo | |
2116 btfss better_dil_available ; check if a better diluent is available and a diluent change shall be advised | |
560 | 2117 bra TFT_active_setpoint_diluent_show ; NO - print in normal rendering |
604 | 2118 btg blinking_better_dil ; YES - toggle blink bit... |
2119 btfss blinking_better_dil ; blink now? | |
560 | 2120 bra TFT_active_setpoint_diluent_show ; NO - print in normal rendering |
604 | 2121 call TFT_attention_color ; YES - print in yellow color |
2122 bsf win_invert ; - set invert flag | |
560 | 2123 TFT_active_setpoint_diluent_show: |
2124 WIN_SMALL dm_active_dil_column, dm_active_dil_row | |
582 | 2125 movff char_I_O2_ratio,lo ; lo now stores O2 in % |
2126 movff char_I_He_ratio,hi ; hi now stores He in % | |
2127 call customview_show_mix ; put "Nxlo", "Txlo/hi", "Air" or "O2" into Postinc2 | |
0 | 2128 STRCAT_PRINT "" |
582 | 2129 bcf win_invert ; reset invert flag |
604 | 2130 call TFT_memo_color ; set memo color |
2131 btfsc menuview ; is the dive options menu shown? | |
2132 return ; YES - do not overwrite it | |
560 | 2133 WIN_TINY dm_active_dil_column+.45, dm_active_dil_row+.3 |
604 | 2134 btfsc FLAG_ccr_mode ; in CCR mode? |
2135 bra TFT_active_setpoint_ccr ; YES - write CCR label | |
2136 btfsc FLAG_pscr_mode ; in pSCR mode? | |
2137 bra TFT_active_setpoint_pscr ; YES - write pSCR label | |
2138 return ; NO to both - should not happen, anyhow: done | |
2139 TFT_active_setpoint_ccr: | |
560 | 2140 STRCPY_TEXT_PRINT tDvCCR ; print "CCR" |
2141 return ; done | |
604 | 2142 TFT_active_setpoint_pscr: |
560 | 2143 STRCPY_TEXT_PRINT tDvPSCR ; print "PSCR" |
604 | 2144 return ; done |
582 | 2145 |
0 | 2146 |
2147 global TFT_display_decotype_surface | |
2148 TFT_display_decotype_surface: | |
582 | 2149 WIN_STD surf_decotype_column,surf_decotype_row |
2150 WIN_COLOR color_lightblue | |
604 | 2151 movff opt_dive_mode,lo ; 0=OC, 1=CC, 2=Gauge, 3=Apnoe, 4=PSCR |
582 | 2152 tstfsz lo |
2153 bra TFT_display_decotype_surface2 | |
116
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
2154 TFT_display_decotype_surface0: |
604 | 2155 STRCAT_TEXT_PRINT tDvOC ; OC |
582 | 2156 bra TFT_display_decotype_exit |
0 | 2157 TFT_display_decotype_surface2: |
582 | 2158 decfsz lo,F |
2159 bra TFT_display_decotype_surface3 | |
604 | 2160 STRCAT_TEXT_PRINT tDvCC ; CC |
582 | 2161 call TFT_standard_color |
113 | 2162 WIN_TINY surf_decotype_column+.18,surf_decotype_row+.12 |
604 | 2163 TSTOSS opt_ccr_mode ; =0: Fixed SP, =1: Sensor, =2: Auto SP |
2164 bra TFT_display_decotype_cc_fixed | |
582 | 2165 ; Sensor mode or Auto |
2166 movff opt_ccr_mode,WREG | |
2167 sublw .2 | |
2168 bz TFT_display_decotype_cc_auto | |
604 | 2169 STRCPY_TEXT tCCRModeSensor ; sensor |
582 | 2170 bra TFT_display_decotype_cc_common |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
333
diff
changeset
|
2171 TFT_display_decotype_cc_auto: |
582 | 2172 STRCPY_TEXT tCCRModeAutoSP ; Auto SP |
2173 bra TFT_display_decotype_cc_common | |
113 | 2174 TFT_display_decotype_cc_fixed: |
604 | 2175 STRCPY_TEXT tCCRModeFixedSP ; fixed SP |
113 | 2176 TFT_display_decotype_cc_common: |
582 | 2177 clrf WREG |
2178 movff WREG,buffer+.8 ; limit string length to 8 | |
2179 STRCAT_PRINT "" | |
2180 bra TFT_display_decotype_exit | |
0 | 2181 TFT_display_decotype_surface3: |
582 | 2182 decfsz lo,F |
2183 bra TFT_display_decotype_surface4 | |
116
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
2184 TFT_display_decotype_surface3_1: |
582 | 2185 STRCAT_TEXT_PRINT tDvGauge ; Gauge |
2186 bra TFT_display_decotype_exit | |
0 | 2187 TFT_display_decotype_surface4: |
582 | 2188 decfsz lo,F |
2189 bra TFT_display_decotype_surface5 | |
2190 TFT_display_decotype_surface4_1: | |
2191 STRCAT_TEXT_PRINT tDvApnea ; Apnea | |
2192 bra TFT_display_decotype_exit | |
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
2193 TFT_display_decotype_surface5: |
604 | 2194 STRCAT_TEXT_PRINT tDvPSCR ; pSCR |
0 | 2195 TFT_display_decotype_exit: |
582 | 2196 goto TFT_standard_color ; and return... |
2197 | |
2198 | |
604 | 2199 global TFT_display_decotype_surface1 |
2200 TFT_display_decotype_surface1: ; used from logbook and from deco calculator (simulator.asm) | |
2201 tstfsz lo ; lo holds 0=OC, 1=CC, 2=Gauge, 3=Apnea, 4=pSCR | |
582 | 2202 bra TFT_display_decotype_surface1_2 |
604 | 2203 bra TFT_display_decotype_surface0 ; OC |
116
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
2204 TFT_display_decotype_surface1_2: |
582 | 2205 decfsz lo,F |
2206 bra TFT_display_decotype_surface1_3 | |
604 | 2207 STRCAT_TEXT_PRINT tDvCC ; CC |
2208 bra TFT_display_decotype_exit | |
116
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
2209 TFT_display_decotype_surface1_3: |
582 | 2210 decfsz lo,F |
2211 bra TFT_display_decotype_surface1_4 | |
604 | 2212 bra TFT_display_decotype_surface3_1 ; Gauge |
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
2213 TFT_display_decotype_surface1_4: |
582 | 2214 decfsz lo,F |
604 | 2215 bra TFT_display_decotype_surface5 ; pSCR |
2216 bra TFT_display_decotype_surface4_1 ; Apnea | |
116
737d6f488729
show decomode in logbook and simulator w/o sensor type
heinrichsweikamp
parents:
113
diff
changeset
|
2217 |
0 | 2218 ;============================================================================= |
2219 | |
604 | 2220 global TFT_splist_surfmode ; show setpoint list |
0 | 2221 TFT_splist_surfmode: |
604 | 2222 bsf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_cd and gaslist_strcat_setpoint |
2223 bcf better_gas_hint ; do not mark the best gas/diluent (to be used in dive mode only) | |
582 | 2224 ;SP 1 |
2225 WIN_SMALL surf_gaslist_column,surf_gaslist_row | |
2226 clrf PRODL | |
604 | 2227 call gaslist_strcat_setpoint ; show SP#+1 of PRODL# |
582 | 2228 STRCAT_PRINT "" |
2229 ;SP 2 | |
2230 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.1) | |
2231 movlw .1 | |
2232 movwf PRODL | |
604 | 2233 call gaslist_strcat_setpoint ; show SP#+1 of PRODL# |
582 | 2234 STRCAT_PRINT "" |
2235 ;SP 3 | |
2236 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.2) | |
2237 movlw .2 | |
2238 movwf PRODL | |
604 | 2239 call gaslist_strcat_setpoint ; show SP#+1 of PRODL# |
582 | 2240 STRCAT_PRINT "" |
2241 ;SP 4 | |
2242 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.3) | |
2243 movlw .3 | |
2244 movwf PRODL | |
604 | 2245 call gaslist_strcat_setpoint ; show SP#+1 of PRODL# |
582 | 2246 STRCAT_PRINT "" |
2247 ;SP 5 | |
2248 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.4) | |
2249 movlw .4 | |
2250 movwf PRODL | |
604 | 2251 call gaslist_strcat_setpoint ; show SP#+1 of PRODL# |
582 | 2252 STRCAT_PRINT "" |
2253 bcf leftbind | |
2254 return | |
0 | 2255 |
2256 global TFT_gaslist_surfmode | |
604 | 2257 TFT_gaslist_surfmode: ; displays gas list |
2258 bsf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_cd and gaslist_strcat_setpoint | |
2259 bcf better_gas_hint ; do not mark the best gas/diluent (to be used in dive mode only) | |
582 | 2260 ;Gas 1 |
2261 WIN_SMALL surf_gaslist_column,surf_gaslist_row | |
2262 clrf PRODL | |
604 | 2263 call gaslist_strcat_gas_cd ; append gas description of gas #PRODL (0-4) to current string |
582 | 2264 STRCAT_PRINT "" |
2265 ;Gas 2 | |
2266 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.1) | |
2267 movlw .1 | |
2268 movwf PRODL | |
604 | 2269 call gaslist_strcat_gas_cd ; append gas description of gas #PRODL (0-4) to current string |
582 | 2270 STRCAT_PRINT "" |
2271 ;Gas 3 | |
2272 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.2) | |
2273 movlw .2 | |
2274 movwf PRODL | |
604 | 2275 call gaslist_strcat_gas_cd ; append gas description of gas #PRODL (0-4) to current string |
582 | 2276 STRCAT_PRINT "" |
2277 ;Gas 4 | |
2278 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.3) | |
2279 movlw .3 | |
2280 movwf PRODL | |
604 | 2281 call gaslist_strcat_gas_cd ; append gas description of gas #PRODL (0-4) to current string |
582 | 2282 STRCAT_PRINT "" |
2283 ;Gas 5 | |
2284 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.4) | |
2285 movlw .4 | |
2286 movwf PRODL | |
604 | 2287 call gaslist_strcat_gas_cd ; append gas description of gas #PRODL (0-4) to current string |
582 | 2288 STRCAT_PRINT "" |
2289 bcf leftbind | |
604 | 2290 bcf win_invert ; clear flag for inverted output |
582 | 2291 return |
0 | 2292 |
2293 global TFT_dillist_surfmode | |
604 | 2294 TFT_dillist_surfmode: ; displays diluent list |
2295 bsf FLAG_diluent_setup ; use CCR diluents... | |
2296 rcall TFT_gaslist_surfmode ; use OC/BAIL routine | |
2297 bcf FLAG_diluent_setup ; clear flag | |
582 | 2298 return |
0 | 2299 |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2300 ;================================================================== |
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2301 |
0 | 2302 global TFT_depth |
2303 TFT_depth: | |
582 | 2304 bcf FLAG_TFT_depth |
2305 SAFE_2BYTE_COPY rel_pressure, lo | |
2306 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
604 | 2307 call TFT_color_code_depth ; color-code the output |
582 | 2308 rcall TFT_depth_blink |
2309 WIN_LARGE dm_depth_column, dm_depth_row | |
2310 TSTOSS opt_units ; 0=m, 1=ft | |
2311 bra TFT_depth_metric | |
0 | 2312 ;TFT_depth_imperial |
604 | 2313 clrf sub_a+1 ; display 0ft if lower then 30cm |
0 | 2314 movlw d'30' |
2315 movwf sub_a+0 | |
2316 movff hi,sub_b+1 | |
2317 movff lo,sub_b+0 | |
582 | 2318 call subU16 ; sub_c = sub_a - sub_b |
604 | 2319 btfss neg_flag ; depth lower then 0.4m? |
2320 bra depth_less_0.3mtr_feet ; YES - show 0ft manually | |
2321 call convert_mbar_to_feet ; convert value in hi:lo from mbar to feet | |
0 | 2322 bsf leftbind |
582 | 2323 output_16 ; feet in Big font |
2324 bcf leftbind | |
2325 movlw .3 ; limit to three chars | |
604 | 2326 call TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) |
2327 STRCAT_PRINT "" ; display feet | |
2328 bcf win_invert ; reset invert flag | |
582 | 2329 return |
126 | 2330 |
0 | 2331 depth_less_0.3mtr_feet: |
582 | 2332 STRCAT_PRINT "0 " ; manual zero |
604 | 2333 bcf win_invert ; reset invert flag |
0 | 2334 return |
2335 | |
2336 TFT_depth_metric: | |
2337 movlw .039 | |
2338 cpfslt hi | |
582 | 2339 bra depth_greater_99_84mtr |
2340 | |
604 | 2341 btfsc depth_greater_100m ; was depth > 100m during last call? |
2342 rcall TFT_clear_depth ; YES - clear depth area | |
2343 bcf depth_greater_100m ; do this once only... | |
0 | 2344 |
11 | 2345 movlw .039 |
2346 cpfslt hi | |
582 | 2347 bra depth_greater_99_84mtr |
11 | 2348 |
0 | 2349 movlw HIGH d'1000' |
2350 movwf sub_a+1 | |
2351 movlw LOW d'1000' | |
2352 movwf sub_a+0 | |
2353 movff hi,sub_b+1 | |
2354 movff lo,sub_b+0 | |
2355 incf sub_b+0,F | |
2356 movlw d'0' | |
604 | 2357 addwfc sub_b+1,F ; add 1mbar offset |
0 | 2358 call sub16 ; sub_c = sub_a - sub_b |
582 | 2359 movlw ' ' |
604 | 2360 btfss neg_flag ; depth lower then 10m? |
2361 movwf POSTINC2 ; YES - add extra space | |
582 | 2362 |
2363 clrf sub_a+1 | |
0 | 2364 movlw d'99' |
2365 movwf sub_a+0 | |
2366 movff hi,sub_b+1 | |
2367 movff lo,sub_b+0 | |
2368 call subU16 ; sub_c = sub_a - sub_b | |
604 | 2369 btfss neg_flag ; depth lower then 1m? |
2370 bra tft_depth2 ; YES - display manual Zero | |
0 | 2371 |
2372 bsf leftbind | |
2373 bsf ignore_digit4 | |
604 | 2374 output_16 ; full meters in big font |
0 | 2375 bcf leftbind |
2376 bra tft_depth3 | |
2377 | |
2378 tft_depth2: | |
582 | 2379 STRCAT "0" ; manual zero |
0 | 2380 |
2381 tft_depth3: | |
604 | 2382 STRCAT_PRINT "" ; display full meters |
0 | 2383 |
2384 ; .1m in MEDIUM font | |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2385 WIN_MEDIUM dm_depth_dm_column, dm_depth_dm_row |
560 | 2386 |
582 | 2387 SAFE_2BYTE_COPY rel_pressure, lo |
2388 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
604 | 2389 ;call TFT_color_code_depth ; color-code the output - not needed, furthermore: seems to cause problems if not commented out... |
582 | 2390 |
2391 PUTC "." | |
604 | 2392 movlw HIGH d'30' ; display 0.0m if lower then 30cm |
0 | 2393 movwf sub_a+1 |
582 | 2394 movlw LOW d'30' |
0 | 2395 movwf sub_a+0 |
2396 movff hi,sub_b+1 | |
2397 movff lo,sub_b+0 | |
2398 call subU16 ; sub_c = sub_a - sub_b | |
604 | 2399 btfss neg_flag ; depth lower then 0.3m? |
2400 bra depth_less_0.3mtr ; YES - show ".0" manually | |
0 | 2401 |
2402 movlw d'4' | |
2403 movwf ignore_digits | |
604 | 2404 bsf ignore_digit5 ; (flag will be cleared by output_16) |
2405 output_16dp d'0' | |
2406 STRCAT_PRINT "" ; display decimeters | |
2407 bcf win_invert ; reset invert flag | |
582 | 2408 WIN_FONT FT_SMALL |
0 | 2409 return |
2410 | |
2411 depth_less_0.3mtr: | |
604 | 2412 STRCAT_PRINT "0" ; display 0.0m manually |
2413 bcf win_invert ; reset invert flag | |
582 | 2414 WIN_FONT FT_SMALL |
0 | 2415 return |
2416 | |
604 | 2417 depth_greater_99_84mtr: ; display only in full meters |
2418 btfss depth_greater_100m ; is depth > 100m already? | |
2419 rcall TFT_clear_depth ; NO - clear depth area and set flag | |
582 | 2420 call TFT_color_code_depth |
0 | 2421 ; Depth is already in hi:lo |
2422 ; Show depth in Full meters | |
560 | 2423 ; That means ignore digit 4 and 5 |
582 | 2424 lfsr FSR2,buffer |
0 | 2425 bsf ignore_digit4 |
2426 bsf leftbind | |
2427 output_16 | |
2428 bcf leftbind | |
604 | 2429 STRCAT_PRINT "" ; display full meters only |
2430 bcf win_invert ; reset invert flag | |
582 | 2431 WIN_FONT FT_SMALL |
0 | 2432 return |
2433 | |
604 | 2434 TFT_clear_depth: ; NO - clear depth area and set flag |
582 | 2435 WIN_BOX_BLACK dm_depth_row, dm_depth_bot, dm_depth_column, dm_depth_rgt ;top, bottom, left, right |
604 | 2436 bsf depth_greater_100m ; set flag |
0 | 2437 return |
2438 | |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2439 TFT_depth_blink: |
582 | 2440 TSTOSS opt_modwarning ; 0=standard, 1=blink |
2441 return | |
2442 | |
2443 ; check if previous cycle had the blinking warning or not | |
604 | 2444 btfsc blinking_depth_prev ; did we have warning previously? |
2445 bra TFT_depth_blink_prevwarn; YES | |
2446 | |
2447 ; NO - check if it's set now | |
582 | 2448 btfsc blinking_depth_warning ; do we have warning set now? |
608 | 2449 bra TFT_depth_blink_warn ; YES - so we have warning now but not previously |
604 | 2450 btfsc blinking_depth_attention; do we have attention set now? |
608 | 2451 bra TFT_depth_blink_warn ; YES - so we have attention now but not previously |
582 | 2452 |
2453 ; no warning in previous cycle, no warning now, reset all flags | |
604 | 2454 bcf blinking_depth_prev ; reset previous flag |
582 | 2455 bcf blinking_depth_toggle ; reset toggle |
2456 bcf win_invert | |
604 | 2457 return ; all done |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2458 |
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2459 TFT_depth_blink_prevwarn: |
582 | 2460 ; ...we had warning in previous cycle, check if we still have the warning set |
604 | 2461 btfsc blinking_depth_warning ; do we still have the warning? |
2462 bra TFT_depth_blink_prevwarn_1 ; YES | |
2463 btfss blinking_depth_attention ; do we still have the attention? | |
2464 bra TFT_depth_blink_prevwarn_nowarn ; NO - clear the depth area | |
2465 TFT_depth_blink_prevwarn_1: | |
582 | 2466 ; we still have the warning, set previous flag for next cycle... |
2467 bsf blinking_depth_prev ; set prev flag | |
2468 ; and set toggle and invert if required | |
2469 btfss blinking_depth_toggle ; do we have the toggle set? | |
604 | 2470 bra TFT_depth_blink_set ; NO - set inverse, do color_box, set flag |
2471 bra TFT_depth_blink_reset ; Yes - clear inverse, do black box, reset flag | |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2472 |
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2473 TFT_depth_blink_prevwarn_nowarn: |
582 | 2474 ; we had warning, but not now... (e.g. ascended or switched to better gas) |
2475 ; reset the previous cycle flag for the next cycle... | |
2476 bcf blinking_depth_prev ; reset prev flag | |
2477 ; clear it - just in case if we had a blinked before | |
604 | 2478 bra TFT_depth_blink_reset ; clear inverse, do black box, reset flag |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2479 |
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2480 TFT_depth_blink_warn: |
582 | 2481 ; new blinking warning activated (had no warning in previous cycle) |
2482 bsf blinking_depth_prev ; set prev flag | |
608 | 2483 ;bra TFT_depth_blink_set ; set toggle and invert |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2484 |
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2485 TFT_depth_blink_set: |
582 | 2486 ; clear the area with color |
608 | 2487 call TFT_attention_color_dive ; default background to attention color |
604 | 2488 btfsc blinking_depth_warning ; in warning mode? |
608 | 2489 call TFT_warnings_color_dive ; overwrite background color with warning color |
582 | 2490 WIN_BOX_COLOR dm_depth_row, dm_depth_bot, dm_depth_column, dm_depth_rgt ;top, bottom, left, right |
608 | 2491 bsf win_invert ;set the invert color |
2492 bsf blinking_depth_toggle ; set the toggle | |
2493 return ; all done | |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2494 |
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2495 TFT_depth_blink_reset: |
582 | 2496 ; clear the area with black |
2497 WIN_BOX_BLACK dm_depth_row, dm_depth_bot, dm_depth_column, dm_depth_rgt ;top, bottom, left, right | |
608 | 2498 bcf win_invert ; reset the invert color |
2499 bcf blinking_depth_toggle ; reset the toggle | |
2500 call TFT_attention_color ; default to attention color | |
2501 btfsc blinking_depth_warning ; do we have a warning? | |
2502 call TFT_warnings_color ; YES - overwrite with warning color | |
2503 return ; all done | |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2504 |
0 | 2505 ;============================================================================= |
2506 | |
582 | 2507 global TFT_custom_text |
604 | 2508 TFT_custom_text: ; show the custom text |
2509 call TFT_standard_color | |
2510 lfsr FSR0, opt_name ; source | |
2511 WIN_SMALL surf_customtext_column,surf_customtext_row1 ; 1st row | |
2512 rcall TFT_custom_text_2 ; show up to 12 chars and print | |
2513 incfsz lo,F ; was lo=255? | |
2514 return ; NO - all done | |
2515 lfsr FSR0, opt_name+.12 ; source | |
2516 WIN_SMALL surf_customtext_column,surf_customtext_row2 ; 2nd row | |
2517 rcall TFT_custom_text_2 ; show up to 12 chars and print | |
2518 incfsz lo,F ; was lo=255? | |
2519 return ; NO - all done | |
2520 lfsr FSR0, opt_name+.24 ; source | |
2521 WIN_SMALL surf_customtext_column,surf_customtext_row3 ; 3rd row | |
2522 rcall TFT_custom_text_2 ; show up to 12 chars and print | |
2523 incfsz lo,F ; was lo=255? | |
2524 return ; NO - all done | |
2525 lfsr FSR0, opt_name+.36 ; source | |
2526 WIN_SMALL surf_customtext_column,surf_customtext_row4 ; 4th row | |
2527 rcall TFT_custom_text_2 ; show up to 12 chars and print | |
2528 incfsz lo,F ; was lo=255? | |
2529 return ; NO - all done | |
2530 lfsr FSR0, opt_name+.48 ; source | |
2531 WIN_SMALL surf_customtext_column,surf_customtext_row5 ; 5th row | |
2532 bra TFT_custom_text_2 ; show up to 12 chars, print and return... | |
560 | 2533 |
0 | 2534 |
2535 TFT_custom_text_2: | |
582 | 2536 lfsr FSR2, buffer ; destination |
2537 movlw .12 | |
2538 movwf lo ; length/line | |
0 | 2539 TFT_custom_text_3: |
604 | 2540 movf POSTINC0,W ; get byte |
2541 bz TFT_custom_text_4 ; end if NULL | |
2542 movwf POSTINC2 ; NO - copy | |
2543 decfsz lo,F ; max length reached ? | |
2544 bra TFT_custom_text_3 ; NO - loop | |
582 | 2545 setf lo ; lo=255 -> more to come |
0 | 2546 TFT_custom_text_4: |
604 | 2547 clrf POSTINC2 ; mark end of string |
582 | 2548 goto aa_wordprocessor ; print and return |
0 | 2549 |
2550 | |
2551 ;============================================================================= | |
560 | 2552 |
0 | 2553 global TFT_update_surf_press |
2554 TFT_update_surf_press: | |
604 | 2555 WIN_SMALL surf_press_column+.8,surf_press_row |
0 | 2556 call TFT_standard_color |
582 | 2557 SAFE_2BYTE_COPY amb_pressure, lo |
0 | 2558 movff lo,sub_a+0 |
2559 movff hi,sub_a+1 | |
2560 movff last_surfpressure_30min+0,sub_b+0 | |
2561 movff last_surfpressure_30min+1,sub_b+1 | |
560 | 2562 call subU16 ; sub_c = sub_a - sub_b |
604 | 2563 btfsc neg_flag ; pressure lower? |
2564 rcall update_surf_press2 ; YES - test threshold | |
2565 tstfsz sub_c+1 ; >255 mbar difference? | |
2566 bra update_surf_press_common ; YES - display | |
560 | 2567 movlw d'11' ; 10mbar noise suppression |
0 | 2568 subwf sub_c+0,W |
2569 btfsc STATUS,C | |
604 | 2570 bra update_surf_press_common ; YES - display |
2571 SAFE_2BYTE_COPY last_surfpressure_30min, lo ; overwrite with stable value... | |
0 | 2572 update_surf_press_common: |
560 | 2573 movff lo,int_I_pres_surface+0 ; copy displayed value to C code to have pressure displayed |
2574 movff hi,int_I_pres_surface+1 ; and pressure used for desaturation & no-fly time in sync | |
0 | 2575 output_16 |
560 | 2576 ; Show only 4 digits |
0 | 2577 movff buffer+1,buffer+0 |
2578 movff buffer+2,buffer+1 | |
2579 movff buffer+3,buffer+2 | |
2580 movff buffer+4,buffer+3 | |
2581 movlw 0x00 | |
2582 movff WREG,buffer+4 | |
582 | 2583 STRCAT_PRINT "" |
2584 call TFT_divemask_color | |
604 | 2585 WIN_SMALL surf_press_column+(4+1)*8,surf_press_row |
2586 STRCPY_TEXT_PRINT tMBAR ; mbar (hPa) | |
0 | 2587 return |
2588 | |
2589 update_surf_press2: | |
2590 movff lo,sub_b+0 | |
2591 movff hi,sub_b+1 | |
2592 movff last_surfpressure_30min+0,sub_a+0 | |
2593 movff last_surfpressure_30min+1,sub_a+1 | |
604 | 2594 goto subU16 ; sub_c = sub_a - sub_b and return... |
0 | 2595 |
2596 ;============================================================================= | |
2597 | |
2598 global TFT_update_batt_voltage | |
2599 TFT_update_batt_voltage: | |
604 | 2600 movff batt_percent,lo ; get battery percent |
2601 clrf hi | |
2602 call TFT_color_code_battery ; color-code battery percent | |
582 | 2603 ; Setup charge indicator |
2604 btfsc cc_active | |
2605 bsf win_invert | |
2606 btfsc cc_active | |
2607 movlw color_yellow | |
2608 btfsc cv_active | |
2609 movlw color_green | |
2610 btfsc cc_active | |
2611 call TFT_set_color | |
604 | 2612 |
615 | 2613 ; Setup Temperature warning |
2614 btfsc battery_overtemp | |
2615 bsf win_invert | |
2616 btfsc battery_overtemp | |
2617 movlw color_red | |
2618 btfsc battery_overtemp | |
2619 call TFT_set_color | |
2620 | |
604 | 2621 IFDEF _ostc_logo |
2622 WIN_TINY batt_percent_column,batt_percent_row | |
2623 ELSE | |
2624 WIN_SMALL batt_percent_column+.2,batt_percent_row | |
2625 ENDIF | |
2626 | |
2627 output_16_3 ; display only last three digits from a 16 bit value (0-999) | |
2628 STRCAT_PRINT "% " | |
582 | 2629 bcf win_invert |
0 | 2630 call TFT_standard_color |
604 | 2631 |
2632 IFDEF _ostc_logo | |
0 | 2633 WIN_TINY batt_voltage_column,batt_voltage_row |
604 | 2634 ELSE |
2635 WIN_TINY batt_voltage_column+.15,batt_voltage_row | |
2636 ENDIF | |
2637 | |
2638 movff battery_type,lo ; =0: 1.5V, =1: 3.6V Saft, =2: LiIon 3.7V/0.8Ah, =3: LiIon 3.7V/3.1Ah, =4: LiIon 3.7V/2.3Ah | |
477
44b8a826b314
NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents:
475
diff
changeset
|
2639 PUTC "T" |
582 | 2640 bsf leftbind |
2641 output_8 | |
2642 PUTC ":" | |
0 | 2643 movff batt_voltage+0,lo |
2644 movff batt_voltage+1,hi | |
582 | 2645 output_16dp .2 |
0 | 2646 bcf leftbind |
2647 PUTC 'V' | |
477
44b8a826b314
NEW: Show battery type in surface mode next to battery voltage
heinrichsweikamp
parents:
475
diff
changeset
|
2648 movff buffer+8,buffer+6 |
0 | 2649 movlw 0x00 |
604 | 2650 movff WREG,buffer+7 ; only "x.yV" |
582 | 2651 STRCAT_PRINT "" |
0 | 2652 return |
2653 | |
2654 ;update_battery_debug: | |
2655 ; call TFT_standard_color | |
2656 ; WIN_TINY .70,.0 | |
2657 ; movff battery_gauge+5,xC+3 | |
2658 ; movff battery_gauge+4,xC+2 | |
2659 ; movff battery_gauge+3,xC+1 | |
2660 ; movff battery_gauge+2,xC+0 | |
2661 ; ; battery_gauge:6 is nAs | |
2662 ; ; devide through 65536 | |
2663 ; ; devide through 152 | |
2664 ; ; Result is 0.01Ah in xC+1:xC+0 | |
2665 ; movlw LOW .152 | |
2666 ; movwf xB+0 | |
2667 ; movlw HIGH .152 | |
2668 ; movwf xB+1 | |
604 | 2669 ; call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
0 | 2670 ; bsf leftbind |
2671 ; movff xC+0,lo | |
2672 ; movff xC+1,hi | |
2673 ; output_16 | |
2674 ; STRCAT_PRINT "x.01Ah" | |
2675 ; WIN_FONT FT_SMALL | |
2676 ; bcf leftbind | |
2677 ; return | |
582 | 2678 |
0 | 2679 ;============================================================================= |
2680 | |
2681 global TFT_convert_signed_16bit | |
2682 TFT_convert_signed_16bit: | |
604 | 2683 bcf neg_flag ; positive temperature |
2684 btfss hi,7 ; negative temperature ? | |
2685 return ; NO - return | |
2686 ; YES - negative temperature | |
2687 bsf neg_flag ; negative temperature | |
2688 PUTC '-' ; display "-" | |
2689 comf hi ; 16 bit sign change | |
582 | 2690 negf lo |
2691 btfsc STATUS,C | |
2692 incf hi | |
604 | 2693 return ; done |
0 | 2694 |
2695 ;============================================================================= | |
2696 | |
2697 global TFT_convert_date | |
604 | 2698 TFT_convert_date: ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 |
2699 movff opt_dateformat,WREG ; =0:MMDDYY, =1:DDMMYY, =2:YYMMDD | |
2700 movwf EEDATA ; used as temp here | |
0 | 2701 tstfsz EEDATA |
604 | 2702 bra TFT_convert_date_1 ; opt_dateformat is 1 or 2 |
2703 ; opt_dateformat is 0 | |
2704 ; use MMDDYY | |
2705 movff lo,lo_temp ; incoming: lo = day, hi = month | |
2706 movff hi,lo ; swap | |
2707 movff lo_temp,hi ; now: lo = month, hi = day | |
582 | 2708 bra TFT_convert_date_common |
2709 | |
2710 TFT_convert_date_1: | |
2711 decfsz EEDATA,F | |
604 | 2712 bra TFT_convert_date_2 ; opt_dateformat is 2 |
2713 ; opt_dateformat is 1 | |
2714 ; use DDMMYY | |
582 | 2715 TFT_convert_date_common: |
0 | 2716 bsf leftbind |
604 | 2717 output_99x ; with lo = month or day or year |
582 | 2718 PUTC '.' |
604 | 2719 movff hi,lo ; now lo = day or month or month |
0 | 2720 output_99x |
582 | 2721 PUTC '.' |
604 | 2722 movff up,lo ; now lo = year or year or day |
0 | 2723 output_99x |
2724 bcf leftbind | |
2725 return | |
2726 | |
582 | 2727 TFT_convert_date_2: |
604 | 2728 ; opt_dateformat is 2 |
2729 ; use YYMMDD | |
2730 movff lo,lo_temp ; incoming: lo = day, up = year | |
2731 movff up,lo ; swap | |
2732 movff lo_temp,up ; now : lo = year, up = day | |
582 | 2733 bra TFT_convert_date_common |
0 | 2734 |
2735 ;============================================================================= | |
2736 | |
2737 global TFT_convert_date_short | |
604 | 2738 TFT_convert_date_short: ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2 |
2739 movff opt_dateformat,WREG ; =0:MMDDYY, =1:DDMMYY, =2:YYMMDD | |
2740 movwf EEDATA ; used as temp here | |
0 | 2741 tstfsz EEDATA |
582 | 2742 bra TFT_convert_date_short_1 |
604 | 2743 ; opt_dateformat is 0 |
2744 ; use MMDD(YY) | |
582 | 2745 TFT_convert_date_short_0: |
604 | 2746 movff lo,lo_temp ; incoming: lo = day, hi = month |
2747 movff hi,lo ; swap | |
2748 movff lo_temp,hi ; now: lo = month, hi = day | |
582 | 2749 bra TFT_convert_date_short_common |
2750 | |
2751 TFT_convert_date_short_1: | |
2752 decfsz EEDATA,F | |
604 | 2753 bra TFT_convert_date_short_0 ; opt_dateformat is 2 -> use (YY)MMDD |
2754 ; opt_dateformat is 1 | |
2755 ; use DDMM(YY) | |
0 | 2756 TFT_convert_date_short_common: |
2757 bsf leftbind | |
604 | 2758 output_99x ; with lo = month or day |
582 | 2759 PUTC '.' |
604 | 2760 movff hi,lo ; now lo = day or month |
0 | 2761 output_99x |
2762 bcf leftbind | |
2763 return | |
2764 | |
2765 ;============================================================================= | |
2766 | |
2767 global TFT_date | |
2768 TFT_date: | |
604 | 2769 WIN_SMALL surf_date_column,surf_date_row ; init new wordprocessor |
0 | 2770 call TFT_standard_color |
582 | 2771 movff day,lo |
2772 movff month,hi | |
2773 movff year,up | |
560 | 2774 call TFT_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 |
0 | 2775 STRCAT_PRINT "" |
2776 return | |
2777 | |
2778 ;============================================================================= | |
2779 | |
560 | 2780 global TFT_max_depth_alternative |
582 | 2781 TFT_max_depth_alternative: |
604 | 2782 bcf FLAG_TFT_max_depth |
560 | 2783 ; The "mask" |
582 | 2784 call TFT_divemask_color |
2785 WIN_TINY dm_mask_depth_column, dm_max_alt_row-.14 | |
604 | 2786 btfsc FLAG_apnoe_mode ; in Apnea mode? |
2787 bra TFT_max_depth_alternative2 ; YES - always draw max depth | |
2788 TSTOSS opt_2ndDepthDisp ; draw avg depth instead of max depth? | |
2789 bra TFT_max_depth_alternative2 ; NO - draw max depth | |
2790 STRCAT_TEXT_PRINT tAvgDepth ; YES - print avg depth mask | |
2791 movff avg_rel_pressure_total+0,lo ; - get avg depth, low byte | |
2792 movff avg_rel_pressure_total+1,hi ; - high byte | |
2793 bra TFT_max_depth_alternative3 | |
2794 TFT_max_depth_alternative2: | |
2795 STRCAT_TEXT_PRINT tMaxDepth ; print max depth mask | |
2796 SAFE_2BYTE_COPY max_pressure, lo ; get max depth into hi:lo | |
2797 TFT_max_depth_alternative3: | |
2798 call adjust_depth_with_salinity ; compute salinity setting into lo:hi [mbar] | |
2799 call TFT_memo_color | |
2800 WIN_LARGE dm_max_alt_column,dm_max_alt_row | |
2801 TSTOSS opt_units ; 0=m or 1=ft? | |
2802 bra TFT_max_depth_alt_metric ; 0 - use alternative metric version | |
2803 bra TFT_max_depth_imperial ; 1 - use common imperial version | |
560 | 2804 TFT_max_depth_alt_metric: |
604 | 2805 movff hi,sub_b+1 ; backup hi in sub_b+1 |
2806 movff lo,sub_b+0 ; backup lo in sub_b+0 | |
2807 bsf ignore_digit4 ; no 0.1 m | |
560 | 2808 output_16 |
2809 STRCAT_PRINT "" | |
604 | 2810 WIN_MEDIUM dm_max_dm_alt_column,dm_max_alt_row+.25 |
2811 bra TFT_max_depth_metric3 ; continue with normal metric version for decimal | |
582 | 2812 |
2813 | |
560 | 2814 global TFT_max_depth |
2815 TFT_max_depth: | |
604 | 2816 bcf FLAG_TFT_max_depth |
2817 btfsc FLAG_apnoe_mode ; in Apnoe mode? | |
2818 bra TFT_max_depth1 ; YES - different handling in Apnoe mode | |
2819 TSTOSS opt_2ndDepthDisp ; draw avg depth instead of max depth? | |
2820 bra TFT_max_depth2 ; NO - show max depth | |
2821 movff avg_rel_pressure_total+0,lo ; YES - get avg depth, low byte | |
2822 movff avg_rel_pressure_total+1,hi ; - high byte | |
2823 bra TFT_max_depth3 | |
2824 TFT_max_depth1: | |
2825 btfss FLAG_active_descent ; are we descending? | |
2826 bra TFT_max_depth2 ; NO - show normal max | |
2827 SAFE_2BYTE_COPY apnoe_max_pressure,lo ; YES - get apnoe_max_pressure | |
2828 bra TFT_max_depth3 | |
560 | 2829 TFT_max_depth2: |
604 | 2830 SAFE_2BYTE_COPY max_pressure,lo ; get the "normal" max depth |
560 | 2831 TFT_max_depth3: |
2832 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
604 | 2833 movlw .039 ; load encoding for 99.84 m |
2834 cpfslt hi ; is depth to show > 99.84 m ? | |
2835 bra TFT_max_depth3a ; YES | |
2836 btfss max_depth_greater_100m ; NO - was depth > 100 m during last call? | |
2837 bra TFT_max_depth3c ; NO | |
2838 bcf max_depth_greater_100m ; YES - clear flag, last depth shown now not > 100 m anymore | |
2839 bra TFT_max_depth3b ; - clear depth area | |
2840 TFT_max_depth3a: | |
2841 btfsc max_depth_greater_100m ; YES - was depth > 100 m during last call? | |
2842 bra TFT_max_depth3c ; YES | |
2843 bsf max_depth_greater_100m ; NO - set flag, last depth shown now > 100 m | |
2844 ;bra TFT_max_depth3b ; - clear depth area | |
2845 TFT_max_depth3b: | |
2846 WIN_BOX_BLACK dm_max_depth_row, dm_max_depth_bot, dm_max_depth_column, dm_max_depth_rgt ; top, bottom, left, right | |
2847 TFT_max_depth3c: | |
2848 call TFT_memo_color ; set output color | |
582 | 2849 WIN_MEDIUM dm_max_depth_column_nvsi, dm_max_depth_row |
604 | 2850 TSTOSS opt_vsigraph ; graphical VSI bar enabled? |
2851 bra TFT_max_depth4 ; NO | |
2852 WIN_MEDIUM dm_max_depth_column, dm_max_depth_row ; YES - adopt output position | |
2853 TFT_max_depth4: | |
2854 TSTOSS opt_units ; 0=m or 1=ft ? | |
2855 bra TFT_max_depth_metric ; 0 - use metric version | |
2856 TFT_max_depth_imperial: ; 1 - use imperial version | |
2857 call convert_mbar_to_feet ; convert value in hi:lo from mbar to feet | |
2858 output_16_3 | |
2859 bra TFT_max_depth_exit | |
2860 TFT_max_depth_metric: | |
2861 btfss max_depth_greater_100m ; depth to show > 100 m ? | |
2862 bra TFT_max_depth_metric0 ; NO - show meters and decimeters | |
2863 bsf ignore_digit4 ; YES - show full meters only, i.e. ignore digits 4 and 5 | |
2864 bsf leftbind | |
2865 output_16 | |
2866 bra TFT_max_depth_exit | |
2867 TFT_max_depth_metric0: | |
2868 movff hi,sub_b+1 ; copy hi to sub_b+1, will also be used to back-up hi | |
2869 movff lo,sub_b+0 ; copy lo to sub_b+0, will also be used to back-up lo | |
2870 | |
2871 movlw HIGH d'999' | |
11 | 2872 movwf sub_a+1 |
604 | 2873 movlw LOW d'999' |
11 | 2874 movwf sub_a+0 |
604 | 2875 call sub16 ; sub_c = sub_a - sub_b |
582 | 2876 movlw ' ' |
604 | 2877 btfss neg_flag ; depth lower than 10m ? |
2878 movwf POSTINC2 ; YES - add extra space | |
582 | 2879 |
2880 clrf sub_a+1 | |
11 | 2881 movlw d'99' |
2882 movwf sub_a+0 | |
604 | 2883 call subU16 ; sub_c = sub_a - sub_b |
2884 btfss neg_flag ; depth lower than 1m ? | |
2885 bra TFT_max_depth_metric1 ; YES - manually display a zero | |
2886 bsf ignore_digit4 ; NO - no 0.1 m | |
2887 bsf leftbind ; - align left | |
2888 output_16 ; - display full meters | |
2889 bra TFT_max_depth_metric2 | |
2890 TFT_max_depth_metric1: | |
2891 STRCAT "0" ; display a zero | |
2892 TFT_max_depth_metric2: | |
2893 STRCAT_PRINT "" | |
2894 ; .1 m in SMALL font | |
2895 WIN_SMALL dm_max_depth_dm_column_nvsi, dm_max_depth_dm_row | |
2896 TSTOSS opt_vsigraph ; graphical VSI bar enabled? | |
2897 bra TFT_max_depth_metric3 ; NO | |
2898 WIN_SMALL dm_max_depth_dm_column, dm_max_depth_dm_row ; YES - adopt position | |
2899 TFT_max_depth_metric3: | |
2900 movff sub_b+1,hi ; restore hi | |
2901 movff sub_b+0,lo ; restore lo | |
2902 PUTC "." ; print decimal point | |
11 | 2903 movlw d'4' |
2904 movwf ignore_digits | |
604 | 2905 bsf ignore_digit5 ; no 0.01 m, flag will be cleared by output_16 |
582 | 2906 bsf leftbind |
604 | 2907 output_16dp d'0' |
2908 TFT_max_depth_exit: | |
2909 STRCAT_PRINT "" | |
11 | 2910 bcf leftbind |
604 | 2911 goto TFT_standard_color ; and return... |
0 | 2912 |
2913 ;============================================================================= | |
560 | 2914 |
0 | 2915 global TFT_divemins |
2916 TFT_divemins: | |
604 | 2917 bcf FLAG_TFT_divemins ; clear flag |
0 | 2918 movff divemins+0,lo |
2919 movff divemins+1,hi | |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2920 |
582 | 2921 ; Already showing divemins > 99min |
604 | 2922 btfsc no_more_divesecs ; ignore seconds? |
2923 bra TFT_divemins2 ; show minutes only | |
582 | 2924 |
2925 tstfsz hi ; hi = 0? | |
604 | 2926 bra TFT_divemins_clr ; NO - show mins only |
405
08fea401be24
BUGFIX: Divetime >99mins was not displayed (Only OSTC2 with serial >= )
heinrichsweikamp
parents:
399
diff
changeset
|
2927 |
0 | 2928 movlw .99 |
582 | 2929 cpfsgt lo ; bigger than 99? |
604 | 2930 bra TFT_divemins1 ; NO - show mins:secs |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2931 |
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2932 TFT_divemins_clr: |
604 | 2933 ; YES - remove second display for the rest of the dive and clear seconds |
2934 bsf no_more_divesecs ; - set flag | |
2935 ; - clear rest of seconds | |
582 | 2936 WIN_BOX_BLACK dm_divetime_row, dm_divetime_bot, dm_divetime_column, dm_divetime_rgt ;top, bottom, left, right |
604 | 2937 bra TFT_divemins2 ; - show minutes only |
0 | 2938 |
2939 TFT_divemins1: | |
604 | 2940 ; Print out the minutes, up to 99 minutes, only 2 chars! |
2941 call TFT_memo_color | |
582 | 2942 WIN_MEDIUM dm_divetime_column, dm_divetime_row |
604 | 2943 output_99 ; displays only last two figures from a 8 bit value (0-99) |
2944 STRCAT_PRINT "" ; show minutes in large font | |
582 | 2945 |
2946 ; Print out the seconds | |
604 | 2947 WIN_SMALL dm_divetime_secs_column, dm_divetime_secs_row ; left position for two sec figures |
582 | 2948 PUTC ':' |
2949 movff divesecs,lo | |
604 | 2950 bsf leftbind |
2951 output_99x ; displays only last two figures from a 8 bit value with leading zero (00-99) | |
2952 bra TFT_divemins_exit ; and return... | |
0 | 2953 |
2954 TFT_divemins2: | |
405
08fea401be24
BUGFIX: Divetime >99mins was not displayed (Only OSTC2 with serial >= )
heinrichsweikamp
parents:
399
diff
changeset
|
2955 ; Full minutes only |
604 | 2956 call TFT_memo_color |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
2957 WIN_MEDIUM dm_divetime_minsonly_column, dm_divetime_row |
582 | 2958 bcf leftbind |
2959 output_16_4 | |
604 | 2960 bra TFT_divemins_exit ; and return... |
2961 | |
582 | 2962 |
560 | 2963 global TFT_divemins_alternative |
2964 TFT_divemins_alternative: | |
604 | 2965 bcf FLAG_TFT_divemins ; clear flag |
2966 call TFT_memo_color | |
582 | 2967 ; Print out the minutes (0-999) in large |
2968 WIN_LARGE dm_divetime_alt_column, dm_divetime_alt_row | |
2969 movff divemins+0,lo | |
2970 movff divemins+1,hi | |
2971 output_16_3 ; limit to 999 and display only (0-999) | |
604 | 2972 STRCAT_PRINT "" ; show minutes |
582 | 2973 ; Print out the seconds in medium |
2974 WIN_MEDIUM dm_divetime_alt_column+.60, dm_divetime_alt_row+.25 | |
2975 PUTC ":" | |
604 | 2976 movff divesecs,lo |
582 | 2977 bsf leftbind |
2978 output_99x ; displays only last two figures from a 8Bit value with leading zero (00-99) | |
604 | 2979 TFT_divemins_exit: |
2980 STRCAT_PRINT "" | |
582 | 2981 bcf leftbind |
604 | 2982 goto TFT_standard_color ; and return... |
0 | 2983 |
2984 ;============================================================================= | |
560 | 2985 |
0 | 2986 global TFT_display_apnoe_surface |
2987 TFT_display_apnoe_surface: | |
604 | 2988 btfsc menuview ; is the options menu shown? |
2989 bra TFT_display_apnoe_surface_1 ; YES - skip title | |
582 | 2990 call TFT_divemask_color |
2991 WIN_TINY dm_apnoe_surface_time_text_col, dm_apnoe_surface_time_text_row | |
2992 STRCPY_TEXT_PRINT tApnoeSurface | |
604 | 2993 TFT_display_apnoe_surface_1: |
2994 call TFT_memo_color | |
582 | 2995 WIN_MEDIUM dm_apnoe_surface_time_column, dm_apnoe_surface_time_row |
0 | 2996 movff apnoe_surface_mins,lo |
2997 output_8 | |
582 | 2998 PUTC ':' |
0 | 2999 movff apnoe_surface_secs,lo |
3000 output_99x | |
604 | 3001 bra TFT_display_apnoe_exit ; and return... |
3002 | |
3003 | |
3004 global TFT_display_apnoe_last_max | |
3005 TFT_display_apnoe_last_max: | |
3006 call TFT_divemask_color | |
3007 WIN_TINY dm_apnoe_last_max_depth_text_col, dm_apnoe_last_max_depth_text_row | |
3008 STRCPY_TEXT_PRINT tApnoeMax | |
3009 call TFT_memo_color | |
3010 SAFE_2BYTE_COPY max_pressure, lo | |
3011 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
3012 TSTOSS opt_units ; 0=m, 1=ft | |
3013 bra TFT_display_apnoe_last_m_metric | |
3014 TFT_display_apnoe_last_max_imp: | |
3015 call convert_mbar_to_feet ; convert value in hi:lo from mbar to feet | |
3016 WIN_MEDIUM dm_apnoe_last_max_depth_column, dm_apnoe_last_max_depth_row | |
3017 output_16 | |
3018 bra TFT_max_depth_exit | |
3019 TFT_display_apnoe_last_m_metric: | |
3020 WIN_MEDIUM dm_apnoe_last_max_depth_column, dm_apnoe_last_max_depth_row | |
3021 bsf ignore_digit5 ; do not display 1cm depth (flag will be cleared by output_16) | |
3022 output_16dp d'3' | |
3023 bra TFT_max_depth_exit | |
3024 | |
0 | 3025 |
3026 global TFT_display_apnoe_descent | |
604 | 3027 TFT_display_apnoe_descent: ; descent divetime |
0 | 3028 movff apnoe_mins,lo |
582 | 3029 clrf hi |
300
5ad479f2a868
Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents:
275
diff
changeset
|
3030 WIN_MEDIUM dm_divetime_apnoe_column, dm_divetime_apnoe_row |
582 | 3031 output_16_3 ; displays only last three figures from a 16Bit value (0-999) |
604 | 3032 call TFT_memo_color |
3033 STRCAT_PRINT "" ; show minutes in large font | |
3034 WIN_SMALL dm_divetime_apnoe_secs_column, dm_divetime_apnoe_secs_row ; left position for two sec figures | |
582 | 3035 PUTC ':' |
0 | 3036 bsf leftbind |
3037 movff apnoe_secs,lo | |
3038 output_99x | |
604 | 3039 STRCAT_PRINT "" ; show seconds in small font |
582 | 3040 call TFT_divemask_color |
3041 WIN_TINY dm_total_apnoe_text_column,dm_total_apnoe_text_row | |
3042 STRCPY_TEXT_PRINT tApnoeTotal | |
604 | 3043 call TFT_memo_color |
38 | 3044 movff divemins,lo |
582 | 3045 clrf hi |
3046 WIN_MEDIUM dm_apnoe_total_divetime_column, dm_apnoe_total_divetime_row | |
604 | 3047 bcf leftbind |
582 | 3048 output_16_3 ; displays only last three figures from a 16Bit value (0-999) |
604 | 3049 call TFT_memo_color |
3050 STRCAT_PRINT "" ; show minutes in large font | |
3051 WIN_SMALL dm_apnoe_total_divetime_secs_col, dm_apnoe_total_divetime_secs_row ; left position for two sec figures | |
582 | 3052 PUTC ':' |
38 | 3053 bsf leftbind |
3054 movff divesecs,lo | |
3055 output_99x | |
604 | 3056 TFT_display_apnoe_exit: |
3057 STRCAT_PRINT "" | |
582 | 3058 bcf leftbind |
604 | 3059 goto TFT_standard_color ; and return... |
3060 | |
3061 | |
3062 global TFT_apnoe_clear_surface | |
3063 TFT_apnoe_clear_surface: | |
3064 ; clear surface timer (TODO: partly wipes out options menu, too) | |
3065 WIN_BOX_BLACK dm_apnoe_surface_time_text_row, .239, dm_apnoe_surface_time_text_col, .159 ; top, bottom, left, right | |
0 | 3066 return |
582 | 3067 |
0 | 3068 |
3069 ;============================================================================= | |
604 | 3070 ; append firmware version to current string, including color-coding |
582 | 3071 |
3072 global TFT_cat_firmware | |
0 | 3073 TFT_cat_firmware: |
582 | 3074 movlw softwareversion_x |
3075 movwf lo | |
3076 bsf leftbind | |
3077 output_8 | |
3078 PUTC '.' | |
3079 movlw softwareversion_y | |
3080 movwf lo | |
621 | 3081 output_99x |
582 | 3082 bcf leftbind |
604 | 3083 rcall check_expiry |
3084 btfss aux_flag | |
582 | 3085 return |
604 | 3086 bsf win_invert |
3087 goto TFT_attention_color | |
3088 | |
3089 ;============================================================================= | |
3090 ; check if firmware is within expiry period, will return aux_flag set if not | |
3091 | |
3092 check_expiry: ; check if it is time for a firmware update | |
3093 bsf aux_flag ; set firmware as expired by default | |
3094 movlw firmware_expire_year ; start with checking year | |
3095 cpfsgt year ; current year > expiry year ? | |
3096 bra check_expiry_Y ; NO - continue checks | |
3097 return ; YES - expired | |
3098 check_expiry_Y: | |
3099 cpfseq year ; current year = expiry year ? | |
3100 bra check_expiry_ok ; NO - must be < then, OK whatever month & day | |
3101 movlw firmware_expire_month ; YES - continue checking month | |
3102 cpfsgt month ; current month > expiry month ? | |
3103 bra check_expiry_M ; NO - continue checks | |
3104 return ; YES - expired | |
3105 check_expiry_M: | |
3106 cpfseq month ; current month = expiry month ? | |
3107 bra check_expiry_ok ; NO - must be < then, OK whatever day | |
3108 movlw firmware_expire_day ; YES - continue checking day | |
3109 cpfsgt day ; current day > expiry day ? | |
3110 bra check_expiry_ok ; NO - must be <= then, OK | |
3111 return ; YES - expired | |
3112 check_expiry_ok: | |
3113 bcf aux_flag | |
582 | 3114 return |
604 | 3115 |
3116 ;============================================================================= | |
3117 ; append firmware BETA status to current string, including color-coding | |
3118 | |
3119 global TFT_cat_beta_rel | |
3120 global TFT_cat_beta_release | |
3121 TFT_cat_beta_release: ; entry point for printing "Release" / "Beta #" | |
3122 bsf aux_flag | |
3123 bra TFT_cat_beta_common | |
3124 TFT_cat_beta_rel: ; entry point for printing "Rel." / "B. #" | |
3125 bcf aux_flag | |
3126 TFT_cat_beta_common: | |
3127 IFDEF __DEBUG | |
621 | 3128 STRCAT "DBG " |
604 | 3129 goto TFT_warnings_color |
3130 ELSE | |
3131 movlw softwareversion_beta ; =0: release, =1: beta 1, =2: beta 2, ... | |
3132 movwf lo ; copy to lo | |
3133 tstfsz lo ; release version? | |
3134 bra TFT_cat_beta_1 ; NO - must be beta version then | |
3135 btfss aux_flag ; YES - shall show long version? | |
3136 bra TFT_cat_beta_2 ; NO - show short version | |
3137 rcall check_expiry ; YES - check expiry date | |
3138 btfsc aux_flag ; - within expiry date? | |
3139 bra TFT_cat_beta_4 ; NO - give update cue | |
621 | 3140 STRCAT "Rel. " ; YES - print "Release" |
604 | 3141 return ; - done |
3142 TFT_cat_beta_1: | |
3143 btfss aux_flag ; shall show long version? | |
3144 bra TFT_cat_beta_3 ; NO - show short version | |
3145 STRCAT "Beta " ; YES - show long version | |
3146 TFT_cat_beta_1a: | |
3147 bsf leftbind | |
3148 output_8 ; print beta version number | |
3149 bcf leftbind | |
3150 goto TFT_attention_color ; and return | |
3151 TFT_cat_beta_2 | |
3152 STRCAT "Rel." ; short version for "Release" | |
582 | 3153 return |
604 | 3154 TFT_cat_beta_3 |
3155 STRCAT "B." ; short version for "Beta" | |
3156 bra TFT_cat_beta_1a ; append beta version number | |
3157 TFT_cat_beta_4 | |
3158 STRCAT "update!" ; print update cue | |
3159 goto TFT_attention_color ; and return | |
3160 ENDIF | |
3161 | |
3162 ;============================================================================= | |
3163 ; For the Information menu: firmware version | |
3164 | |
3165 global info_menu_firmware | |
3166 info_menu_firmware: | |
3167 lfsr FSR1,tFirmware | |
3168 call strcat_text | |
3169 rcall TFT_cat_firmware | |
3170 PUTC " " | |
3171 rcall TFT_cat_beta_rel | |
3172 STRCAT_PRINT "" ; print buffer to screen | |
3173 return | |
3174 | |
3175 ;============================================================================= | |
3176 ; For the Information menu: firmware version of the RX processor | |
3177 | |
3178 IFDEF _rx_functions | |
3179 global info_menu_firmware_rx | |
3180 info_menu_firmware_rx: | |
3181 lfsr FSR1,tFirmware_rx | |
3182 call strcat_text | |
3183 ; bra TFT_cat_firmware_rx ;(and return) | |
3184 ;TFT_cat_firmware_rx: | |
3185 movff rx_firmware+0,lo | |
3186 bsf leftbind | |
3187 output_8 | |
3188 PUTC '.' | |
3189 movff rx_firmware+1,lo | |
3190 output_8 | |
3191 bcf leftbind | |
3192 return | |
3193 ENDIF | |
0 | 3194 |
3195 ;----------------------------------------------------------------------------- | |
604 | 3196 ; For the Information menu: append serial number |
560 | 3197 |
582 | 3198 global info_menu_serial |
0 | 3199 info_menu_serial: |
582 | 3200 lfsr FSR1,tSerial |
3201 call strcat_text | |
3202 global TFT_cat_serial | |
0 | 3203 TFT_cat_serial: |
582 | 3204 clrf EEADRH |
604 | 3205 clrf EEADR ; get serial number LOW |
582 | 3206 call read_eeprom ; read byte |
3207 movff EEDATA,lo | |
604 | 3208 incf EEADR,F ; get serial number HIGH |
582 | 3209 call read_eeprom ; read byte |
3210 movff EEDATA,hi | |
3211 | |
3212 bsf leftbind | |
3213 output_16 | |
3214 bcf leftbind | |
3215 return | |
0 | 3216 |
3217 ;----------------------------------------------------------------------------- | |
604 | 3218 ; For the Information menu: append total dives |
560 | 3219 |
582 | 3220 global info_menu_total_dives |
0 | 3221 info_menu_total_dives: |
582 | 3222 lfsr FSR1,tTotalDives |
3223 call strcat_text | |
0 | 3224 TFT_cat_total_dives: |
3225 read_int_eeprom .2 | |
3226 movff EEDATA,lo | |
3227 read_int_eeprom .3 | |
3228 movff EEDATA,hi | |
3229 bsf leftbind | |
3230 output_16 | |
582 | 3231 bcf leftbind |
3232 return | |
0 | 3233 |
604 | 3234 ; For the Information menu: append battery voltage |
582 | 3235 global info_menu_battery_volts |
62 | 3236 info_menu_battery_volts: |
582 | 3237 lfsr FSR1,tBatteryV |
3238 call strcat_text | |
3239 movff batt_voltage+1,hi | |
3240 movff batt_voltage+0,lo | |
62 | 3241 bsf leftbind |
582 | 3242 output_16dp .2 ; x.xxx |
3243 STRCAT "V(T" | |
604 | 3244 movff battery_type,lo ; =0:1.5V, =1:3.6V Saft, =2:LiIon 3.7V/0.8Ah, =3:LiIon 3.7V/3.1Ah, =4: LiIon 3.7V/2.3Ah |
582 | 3245 output_8 |
3246 bcf leftbind | |
3247 PUTC ")" | |
3248 return | |
3249 | |
604 | 3250 ; For the Information menu: append uptime |
582 | 3251 global info_menu_uptime |
453
b4f28ab23b87
NEW: Show Uptime (Time since last firmware boot) in information menu
heinrichsweikamp
parents:
444
diff
changeset
|
3252 info_menu_uptime: |
582 | 3253 lfsr FSR1,tUptime |
3254 call strcat_text | |
3255 movff uptime+0,xC+0 | |
3256 movff uptime+1,xC+1 | |
3257 movff uptime+2,xC+2 | |
3258 movff uptime+3,xC+3 | |
3259 movlw LOW .3600 | |
3260 movwf xB+0 | |
3261 movlw HIGH .3600 | |
604 | 3262 movwf xB+1 ; one day = 3600s |
582 | 3263 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
3264 ;xC+0:xC+1 -> Full hours | |
3265 movff xC+1,xA+1 | |
3266 movff xC+0,xA+0 | |
3267 clrf xB+1 | |
3268 movlw .24 | |
3269 movwf xB+0 | |
604 | 3270 call div16x16 ; xC = xA / xB with xA as remainder |
582 | 3271 movff xC+0,lo |
604 | 3272 movff xC+1,hi ; full days |
582 | 3273 bsf leftbind |
3274 output_16 | |
3275 PUTC "d" | |
604 | 3276 movff xA+0,lo ; full hours |
582 | 3277 output_8 |
3278 PUTC "h" | |
3279 bcf leftbind | |
604 | 3280 return ; done |
3281 | |
3282 | |
582 | 3283 global menu_cal_x |
3284 menu_cal_x: | |
604 | 3285 lfsr FSR0,compass_CX_f |
582 | 3286 lfsr FSR1,tCalX |
604 | 3287 bra menu_cal_common |
582 | 3288 |
3289 global menu_cal_y | |
3290 menu_cal_y: | |
604 | 3291 lfsr FSR0,compass_CY_f |
582 | 3292 lfsr FSR1,tCalY |
604 | 3293 bra menu_cal_common |
3294 | |
582 | 3295 global menu_cal_z |
3296 menu_cal_z: | |
604 | 3297 lfsr FSR0,compass_CZ_f |
582 | 3298 lfsr FSR1,tCalZ |
604 | 3299 menu_cal_common: |
582 | 3300 call strcat_text |
604 | 3301 movff POSTINC0,lo |
3302 movff POSTINC0,hi | |
582 | 3303 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
3304 bsf leftbind | |
3305 output_16 | |
3306 bcf leftbind | |
3307 return | |
544
64a45f203144
NEW: Show Compass calibration results in Compass menu
heinrichsweikamp
parents:
535
diff
changeset
|
3308 |
453
b4f28ab23b87
NEW: Show Uptime (Time since last firmware boot) in information menu
heinrichsweikamp
parents:
444
diff
changeset
|
3309 |
0 | 3310 ;----------------------------------------------------------------------------- |
3311 ; ppO2 menu | |
560 | 3312 |
0 | 3313 global divesets_ppo2_min |
3314 divesets_ppo2_min: | |
582 | 3315 lfsr FSR1,tPPO2MIN |
3316 call strcat_text | |
560 | 3317 movff char_I_ppO2_min,lo |
582 | 3318 movlw ppo2_warning_low_default |
3319 bra divesets_ppo2_common | |
560 | 3320 |
3321 global divesets_ppo2_min_cc | |
3322 divesets_ppo2_min_cc: | |
3323 lfsr FSR1,tPPO2MINCC | |
3324 call strcat_text | |
3325 movff char_I_ppO2_min_loop,lo | |
582 | 3326 movlw ppo2_warning_loop_default |
3327 bra divesets_ppo2_common | |
3328 | |
3329 global divesets_ppo2_max | |
3330 divesets_ppo2_max: | |
3331 lfsr FSR1,tPPO2Max | |
3332 call strcat_text | |
3333 movff char_I_ppO2_max,lo | |
3334 movlw ppo2_warning_high_default | |
560 | 3335 bra divesets_ppo2_common |
582 | 3336 |
3337 global divesets_ppo2_max_deco | |
3338 divesets_ppo2_max_deco: | |
3339 lfsr FSR1,tPPO2DECO | |
3340 call strcat_text | |
3341 movff char_I_ppO2_max_deco,lo | |
3342 movlw ppo2_warning_deco_default | |
3343 ;bra divesets_ppo2_common | |
3344 | |
3345 divesets_ppo2_common: | |
604 | 3346 movwf up ; save default value |
582 | 3347 clrf hi |
3348 bsf leftbind | |
3349 output_16dp d'3' | |
3350 bcf leftbind | |
3351 lfsr FSR1,tbar | |
3352 call strcat_text | |
604 | 3353 movf up,W ; default value |
3354 cpfseq lo ; current value | |
3355 bra divesets_ppo2_common2 ; not default, add * | |
3356 return ; default, done | |
582 | 3357 divesets_ppo2_common2: |
3358 PUTC "*" | |
604 | 3359 return ; done |
560 | 3360 |
3361 ;============================================================================= | |
582 | 3362 |
3363 global TFT_clear_warning_text | |
3364 TFT_clear_warning_text: | |
3365 btfss divemode ; in divemode? | |
604 | 3366 bra TFT_clear_warning_text2 ; NO - setup for surface mode |
3367 bcf FLAG_TFT_dive_warning_text_clear ; clear flag | |
582 | 3368 btfsc alternative_divelayout |
604 | 3369 bra TFT_clear_warning_text_2nd_row ; in alt. mode, clear only row 2 |
582 | 3370 WIN_BOX_BLACK dm_warning_row, dm_warning_bot, dm_warning_column, dm_warning_rgt ; top, bottom, left, right |
3371 return | |
3372 TFT_clear_warning_text2: | |
3373 WIN_BOX_BLACK surf_warning1_row, surf_warning2_row+.24, surf_warning1_column, surf_warning1_column+.76 ; top, bottom, left, right | |
3374 return | |
3375 | |
3376 global TFT_clear_warning_text_2nd_row | |
3377 TFT_clear_warning_text_2nd_row: | |
3378 btfss divemode ; in divemode? | |
604 | 3379 bra TFT_clear_warning_text_2nd_2 ; NO - setup for surface mode |
3380 bcf FLAG_TFT_dive_warning_text_clr2 ; clear flag | |
582 | 3381 WIN_BOX_BLACK dm_warning2_row, dm_warning2_bot, dm_warning2_column, dm_warning2_rgt ; top, bottom, left, right |
3382 return | |
3383 TFT_clear_warning_text_2nd_2: | |
3384 WIN_BOX_BLACK surf_warning2_row, surf_warning2_row+.24, surf_warning2_column, surf_warning2_column+.76 ; top, bottom, left, right | |
3385 return | |
3386 | |
3387 global TFT_fillup_with_spaces | |
604 | 3388 TFT_fillup_with_spaces: ; fill up FSR2 with spaces (total string length in #WREG) |
582 | 3389 movwf lo ; save max. string length into lo |
604 | 3390 movf FSR2L,W ; get current string length |
582 | 3391 subwf lo,F ; lo-WREG |
3392 btfsc STATUS,N ; longer then #lo already? | |
604 | 3393 return ; YES - done |
3394 tstfsz lo ; zero? | |
3395 bra TFT_fillup_with_spaces2 ; NO | |
3396 return ; YES - done | |
582 | 3397 TFT_fillup_with_spaces2: |
604 | 3398 PUTC " " ; add one space |
3399 decfsz lo,F ; all done? | |
3400 bra TFT_fillup_with_spaces2 ; NO - loop | |
3401 return ; YES - done | |
582 | 3402 |
3403 ;============================================================================= | |
3404 | |
0 | 3405 global TFT_desaturation_time |
3406 TFT_desaturation_time: | |
604 | 3407 rcall TFT_warning_set_window ; set the row and column for the current message |
3408 tstfsz WREG ; is there room for the message? | |
3409 return ; NO | |
3410 call TFT_memo_color | |
0 | 3411 STRCPY "Desat:" |
560 | 3412 movff int_O_desaturation_time+0,lo |
3413 movff int_O_desaturation_time+1,hi | |
604 | 3414 call convert_time ; converts hi:lo in minutes to hours (up:hi) and minutes (lo) |
3415 ; bsf leftbind | |
560 | 3416 movf lo,W |
3417 movff hi,lo | |
3418 movwf hi ; exchange lo and hi... | |
604 | 3419 output_99x ; hours |
560 | 3420 PUTC ':' |
604 | 3421 movff hi,lo ; minutes |
0 | 3422 output_99x |
604 | 3423 ; bcf leftbind |
3424 movlw surf_warning_length ; only use surface string length | |
3425 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
3426 ; movlw .0 ; not needed | |
3427 ; movff WREG,buffer+11 ; not needed | |
560 | 3428 STRCAT_PRINT "" |
0 | 3429 return |
3430 | |
560 | 3431 |
0 | 3432 global TFT_nofly_time |
3433 TFT_nofly_time: | |
604 | 3434 rcall TFT_warning_set_window ; set the row and column for the current message |
3435 tstfsz WREG ; is there room for the message? | |
3436 return ; NO | |
3437 call TFT_memo_color | |
560 | 3438 movff char_I_altitude_wait,WREG |
3439 tstfsz WREG | |
3440 bra TFT_nofly_time_1 | |
0 | 3441 STRCPY "NoFly:" |
560 | 3442 bra TFT_nofly_time_2 |
3443 TFT_nofly_time_1: | |
3444 STRCPY "NoAlt:" | |
3445 TFT_nofly_time_2: | |
3446 movff int_O_nofly_time+0,lo | |
3447 movff int_O_nofly_time+1,hi | |
604 | 3448 call convert_time ; converts hi:lo in minutes to hours (up:hi) and minutes (lo) |
3449 ; bsf leftbind | |
560 | 3450 movf lo,W |
3451 movff hi,lo | |
582 | 3452 movwf hi ; exchange lo and hi... |
604 | 3453 output_99x ; hours |
560 | 3454 PUTC ':' |
604 | 3455 movff hi,lo ; minutes |
0 | 3456 output_99x |
604 | 3457 ; bcf leftbind |
3458 movlw surf_warning_length ; only use surface string length | |
3459 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
3460 ; movlw .0 ; not needed | |
3461 ; movff WREG,buffer+11 ; not needed | |
582 | 3462 STRCAT_PRINT "" |
0 | 3463 return |
3464 | |
560 | 3465 ;============================================================================= |
3466 | |
582 | 3467 global TFT_warning_agf |
0 | 3468 TFT_warning_agf: |
604 | 3469 rcall TFT_warning_set_window ; set the row and column for the current message |
3470 tstfsz WREG ; is there room for the message? | |
3471 return ; NO | |
582 | 3472 call TFT_attention_color |
3473 STRCPY_TEXT tDiveaGF_active ; "aGF!" | |
604 | 3474 movlw dm_warning_length ; divemode string length |
3475 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
582 | 3476 STRCAT_PRINT "" |
604 | 3477 bra TFT_warn_att_info_exit ; and return... |
3478 | |
0 | 3479 |
582 | 3480 global TFT_warning_fallback |
604 | 3481 TFT_warning_fallback: ; show fallback warning |
3482 rcall TFT_warning_set_window ; set the row and column for the current message | |
3483 tstfsz WREG ; is there room for the message? | |
3484 return ; NO | |
582 | 3485 call TFT_warnings_color |
560 | 3486 STRCPY_TEXT tDiveFallback ; "Fallback!" |
604 | 3487 movlw dm_warning_length ; divemode string length |
3488 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
3489 STRCAT_PRINT "" | |
3490 bra TFT_warn_att_info_exit ; and return... | |
3491 | |
3492 | |
3493 IFDEF _rx_functions | |
3494 | |
3495 global TFT_advice_switch | |
3496 TFT_advice_switch: | |
3497 rcall TFT_warning_set_window ; set the row and column for the current message | |
3498 tstfsz WREG ; is there room for the message? | |
3499 return ; NO | |
3500 call TFT_advice_color | |
3501 STRCPY_TEXT tswap ; "Swap Tank" | |
3502 movlw dm_warning_length ; divemode string length | |
3503 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
3504 STRCAT_PRINT "" | |
3505 bra TFT_warn_att_info_exit ; and return... | |
3506 | |
3507 global TFT_attention_transmitter | |
3508 TFT_attention_transmitter: | |
3509 rcall TFT_warning_set_window ; set the row and column for the current message | |
3510 tstfsz WREG ; is there room for the message? | |
3511 return ; NO | |
3512 call TFT_attention_color | |
3513 STRCPY_TEXT tTransmitter ; "P.Transm." | |
3514 movlw dm_warning_length ; divemode string length | |
3515 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
582 | 3516 STRCAT_PRINT "" |
604 | 3517 bra TFT_warn_att_info_exit ; and return... |
3518 | |
3519 global TFT_attention_pres_reading | |
3520 global TFT_warning_pres_reading | |
3521 TFT_attention_pres_reading: ; entry point for attention | |
3522 call TFT_attention_color ; use attention color | |
3523 bra TFT_common_pres_reading ; continue with common code | |
3524 TFT_warning_pres_reading: ; entry point for warning | |
3525 call TFT_warnings_color ; use warnings color | |
3526 ;bra TFT_common_pres_reading ; continue with common code | |
3527 TFT_common_pres_reading: | |
3528 rcall TFT_warning_set_window ; set the row and column for the current message | |
3529 tstfsz WREG ; is there room for the message? | |
3530 return ; NO - done | |
3531 STRCPY_TEXT tPressure ; "Tank Pres" | |
3532 movlw dm_warning_length ; divemode string length | |
3533 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
3534 STRCAT_PRINT "" | |
3535 bra TFT_warn_att_info_exit ; and return... | |
3536 | |
3537 global TFT_attention_sac | |
3538 TFT_attention_sac: | |
3539 rcall TFT_warning_set_window ; set the row and column for the current message | |
3540 tstfsz WREG ; is there room for the message? | |
3541 return ; NO | |
3542 movff int_O_sac_rate+0,lo ; copy SAC rate to hi:lo | |
3543 movff int_O_sac_rate+1,hi ; ... | |
3544 call TFT_color_code_tank_pres_sac; color-code the output | |
3545 STRCPY_TEXT tSAC ; "SAC", needs to be exactly 3 chars long | |
3546 STRCAT ": " ; ": " | |
3547 output_16_3 ; print as xxx | |
3548 PUTC " " ; print a dummy char to have string termination at the correct place | |
3549 movff buffer+.7,buffer+.8 ; move decimal digit one position to the right | |
3550 movlw "." ; load coding of a decimal point | |
3551 movff WREG,buffer+.7 ; place it before decimal digit | |
3552 STRCAT_PRINT "" ; dump buffer to screen | |
3553 bra TFT_warn_att_info_exit ; and return... | |
3554 | |
3555 ENDIF | |
560 | 3556 |
3557 | |
3558 global TFT_info_deco | |
604 | 3559 TFT_info_deco ; show info when decompression obligation is decreasing |
3560 rcall TFT_warning_set_window ; sets the row and column for the current message | |
3561 tstfsz WREG ; is there room for the message? | |
3562 return ; NO - return | |
3563 call TFT_advice_color ; actually it is a memo, but we break the rules here and display in advice color (green) | |
3564 STRCPY_TEXT tDecoInfo ; write "Deco Zone" | |
3565 movlw dm_warning_length ; select divemode string length | |
3566 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
3567 STRCAT_PRINT "" ; print buffer | |
3568 bra TFT_warn_att_info_exit ; and return... | |
3569 | |
3570 | |
3571 IFDEF _cave_mode | |
3572 | |
3573 global TFT_info_cave_mode | |
3574 TFT_info_cave_mode: | |
3575 rcall TFT_warning_set_window ; sets the row and column for the current warning | |
3576 tstfsz WREG ; is there room for the message? | |
582 | 3577 return ; NO - return |
604 | 3578 call TFT_memo_color ; YES - set memo color |
3579 STRCPY_TEXT tCaveMode ; write "Cave Mode" | |
3580 movlw dm_warning_length ; select divemode string length | |
3581 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
582 | 3582 STRCAT_PRINT "" ; print buffer |
604 | 3583 bra TFT_warn_att_info_exit ; and return... |
3584 | |
3585 global TFT_info_dive_turned | |
3586 TFT_info_dive_turned: | |
3587 rcall TFT_warning_set_window ; sets the row and column for the current warning | |
3588 tstfsz WREG ; is there room for the message? | |
3589 return ; NO - return | |
3590 call TFT_attention_color ; YES - set attention color | |
3591 STRCPY_TEXT tDiveTurned ; write "Dv.turned" | |
3592 movlw dm_warning_length ; select divemode string length | |
3593 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
3594 STRCAT_PRINT "" ; print buffer | |
3595 bra TFT_warn_att_info_exit ; and return... | |
3596 | |
3597 global TFT_warn_cave_shutdown | |
3598 TFT_warn_cave_shutdown: | |
3599 rcall TFT_warning_set_window ; sets the row and column for the current warning | |
3600 tstfsz WREG ; is there room for the message? | |
3601 return ; NO - return | |
3602 call TFT_warnings_color ; YES - set warning color | |
3603 STRCPY_TEXT tCaveModeShutdown ; write "X-Cave-X" | |
3604 movlw dm_warning_length ; select divemode string length | |
3605 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
3606 STRCAT_PRINT "" ; print buffer | |
3607 bra TFT_warn_att_info_exit ; and return... | |
3608 | |
3609 ENDIF | |
582 | 3610 |
3611 | |
3612 global TFT_warning_gf | |
3613 TFT_warning_gf: ; GF | |
604 | 3614 rcall TFT_warning_set_window ; set the row and column for the current message |
3615 tstfsz WREG ; is there room for the message? | |
3616 return ; NO | |
560 | 3617 movff int_O_gradient_factor+0,lo ; bank-safe copy gradient factor |
3618 movff int_O_gradient_factor+1,hi ; | |
604 | 3619 call TFT_color_code_gf ; color-code output |
582 | 3620 STRCPY "GF: " ; the two spaces are on purpose to align the output with other warnings' outputs |
3621 bsf leftbind | |
560 | 3622 output_8 ; print value of lo only, int_O_gradient_factor is limited to 255 |
582 | 3623 PUTC "%" |
604 | 3624 movlw dm_warning_length ; divemode string length |
3625 btfss divemode ; in divemode? | |
3626 movlw surf_warning_length ; NO - use surface string length | |
3627 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
582 | 3628 STRCAT_PRINT "" |
3629 bcf leftbind | |
3630 bcf win_invert | |
604 | 3631 TFT_warn_att_info_exit: |
582 | 3632 goto TFT_standard_color ; and return... |
560 | 3633 |
3634 | |
3635 global TFT_warning_mbubbles | |
3636 TFT_warning_mbubbles: | |
3637 rcall TFT_warning_set_window ; sets the row and column for the current warning | |
604 | 3638 tstfsz WREG ; is there room for the message? |
582 | 3639 return ; NO |
560 | 3640 call TFT_attention_color ; set attention color as default |
3641 movff char_O_deco_warnings,WREG ; bank-safe copy for deco warnings | |
3642 btfsc WREG,mbubble_warning ; are we in the microbubbles zone right now? | |
3643 call TFT_warnings_color ; YES - reconfigure to warning color | |
3644 STRCPY_TEXT tMicroBubbles | |
582 | 3645 movlw dm_warning_length ; divemode string length |
604 | 3646 btfss divemode ; in divemode? |
582 | 3647 movlw surf_warning_length ; NO - use surface string length |
604 | 3648 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) |
582 | 3649 STRCAT_PRINT "" |
604 | 3650 bra TFT_warn_att_info_exit ; and return... |
560 | 3651 |
3652 | |
3653 global TFT_warning_outside | |
3654 TFT_warning_outside: | |
3655 rcall TFT_warning_set_window ; sets the row and column for the current warning | |
604 | 3656 tstfsz WREG ; is there room for the message? |
582 | 3657 return ; NO |
560 | 3658 call TFT_attention_color |
3659 movff char_O_deco_warnings,WREG ; bank-safe copy for deco warnings | |
3660 btfsc WREG,outside_warning ; are we outside the ZH-L16 model right now? | |
3661 call TFT_warnings_color ; YES - reconfigure to warning color | |
582 | 3662 STRCPY "X-ZHL16-X" |
3663 movlw dm_warning_length ; divemode string length | |
604 | 3664 btfss divemode ; in divemode? |
582 | 3665 movlw surf_warning_length ; NO - use surface string length |
604 | 3666 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) |
582 | 3667 STRCAT_PRINT "" |
604 | 3668 bra TFT_warn_att_info_exit ; and return... |
560 | 3669 |
3670 | |
3671 global TFT_warning_gas_needs_warn | |
3672 global TFT_warning_gas_needs_att | |
3673 TFT_warning_gas_needs_warn: | |
3674 rcall TFT_warning_gas_needs_war_helper | |
604 | 3675 rcall TFT_warning_set_window ; set the row and column for the current message |
3676 tstfsz WREG ; is there room for the message? | |
3677 return ; NO | |
560 | 3678 call TFT_warnings_color |
3679 bra TFT_warning_gas_needs_com | |
3680 TFT_warning_gas_needs_att: | |
3681 rcall TFT_warning_gas_needs_att_helper | |
604 | 3682 rcall TFT_warning_set_window ; set the row and column for the current message |
3683 tstfsz WREG ; is there room for the message? | |
3684 return ; NO | |
560 | 3685 call TFT_attention_color |
3686 TFT_warning_gas_needs_com: | |
3687 STRCPY_TEXT tGasNeedsWarn ; "Gas Needs" | |
604 | 3688 movlw dm_warning_length ; divemode string length |
3689 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
582 | 3690 STRCAT_PRINT "" |
604 | 3691 bra TFT_warn_att_info_exit ; and return... |
560 | 3692 |
3693 TFT_warning_gas_needs_war_helper: | |
604 | 3694 incf message_counter,F ; increase counter |
560 | 3695 btfsc gas_needs_warning ; is it a new warning? |
3696 return ; NO - do not show the gas needs custom view again | |
604 | 3697 bsf gas_needs_warning ; YES - memorize it's an old now |
560 | 3698 bra TFT_warning_gas_needs_helper_com |
3699 TFT_warning_gas_needs_att_helper: | |
604 | 3700 incf message_counter,F ; increase counter |
560 | 3701 btfsc gas_needs_attention ; is it a new attention? |
3702 return ; NO - do not show the gas needs custom view again | |
604 | 3703 bsf gas_needs_attention ; YES - memorize it's an old now |
560 | 3704 TFT_warning_gas_needs_helper_com: |
604 | 3705 btfsc alternative_divelayout ; in alternative layout? |
3706 call switch_layout_to_normal ; YES - switch to normal layout | |
3707 movlw index_gas_needs_ascent-1 ; custom view number one below gas needs view | |
3708 movwf menupos3 ; set custom view number | |
3709 bsf toggle_customview ; initiate toggle to desired custom view -> gas needs view will be shown | |
582 | 3710 return |
560 | 3711 |
3712 | |
3713 global TFT_warning_IBCD | |
3714 TFT_warning_IBCD: | |
604 | 3715 rcall TFT_warning_set_window ; set the row and column for the current message |
3716 tstfsz WREG ; is there room for the message? | |
3717 return ; NO | |
560 | 3718 call TFT_attention_color ; select attention color as default |
3719 STRCPY_TEXT tIBCD ; "IBCD N2He" | |
604 | 3720 movlw dm_warning_length ; divemode string length |
3721 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
582 | 3722 STRCAT_PRINT "" |
604 | 3723 bra TFT_warn_att_info_exit ; and return... |
3724 | |
3725 | |
3726 global TFT_warning_no_BO_gas | |
3727 TFT_warning_no_BO_gas: | |
3728 rcall TFT_warning_set_window ; set the row and column for the current message | |
3729 tstfsz WREG ; is there room for the message? | |
3730 return ; NO | |
3731 call TFT_attention_color ; select attention color as default | |
3732 STRCPY_TEXT tnoBOgas ; "B/O Gas X" | |
3733 movlw dm_warning_length ; divemode string length | |
3734 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
3735 STRCAT_PRINT "" | |
3736 bra TFT_warn_att_info_exit ; and return... | |
3737 | |
3738 | |
3739 global TFT_advice_gas_change | |
3740 TFT_advice_gas_change: | |
3741 rcall TFT_warning_set_window ; set the row and column for the current message | |
3742 tstfsz WREG ; is there room for the message? | |
3743 return ; NO | |
3744 call TFT_advice_color ; set advice color | |
3745 STRCPY_TEXT tgaschange ; "Change?" | |
3746 movlw dm_warning_length ; divemode string length | |
3747 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
3748 STRCAT_PRINT "" | |
3749 bra TFT_warn_att_info_exit ; and return... | |
582 | 3750 |
3751 | |
3752 global TFT_warning_sensor_disagree | |
604 | 3753 TFT_warning_sensor_disagree: ; show sensor disagree warning |
560 | 3754 rcall TFT_warning_sensor_dis_helper |
604 | 3755 rcall TFT_warning_set_window ; set the row and column for the current message |
3756 tstfsz WREG ; is there room for the message? | |
3757 return ; NO | |
582 | 3758 call TFT_warnings_color |
3759 STRCPY_TEXT tSensorDisagree ; "Sensors<>" | |
604 | 3760 movlw dm_warning_length ; divemode string length |
3761 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
582 | 3762 STRCAT_PRINT "" |
604 | 3763 bra TFT_warn_att_info_exit ; and return... |
560 | 3764 |
3765 TFT_warning_sensor_dis_helper: | |
3766 btfsc sensor_warning ; is it a new warning? | |
3767 return ; NO - do not show the gas needs custom view again | |
604 | 3768 bsf sensor_warning ; YES - memorize it's an old warning now |
3769 btfsc alternative_divelayout ; in alternative layout? | |
3770 call switch_layout_to_normal ; YES - switch to normal layout | |
3771 movlw index_ppo2_sensors-1 ; custom view number one below ppO2 sensors | |
3772 movwf menupos3 ; set custom view number | |
3773 bsf toggle_customview ; initiate toggle to desired custom view -> ppO2 sensors | |
560 | 3774 return |
582 | 3775 |
560 | 3776 ;============================================================================= |
582 | 3777 |
604 | 3778 TFT_warning_set_window: ; set the row and column for the current message |
582 | 3779 ; ignore warning (now)? |
604 | 3780 decf message_counter,W ; -1 |
582 | 3781 bcf STATUS,C |
604 | 3782 btfss alternative_divelayout ; in alternative layout, do not divide... |
3783 rrcf WREG,W ; (message_counter-1)/2 | |
3784 cpfseq message_page | |
582 | 3785 retlw .255 ; WREG <> 0 -> Warning window not defined |
3786 btfss divemode ; in divemode? | |
604 | 3787 bra TFT_warning_set_window3 ; NO - setup for surface mode |
582 | 3788 btfss alternative_divelayout |
3789 bra TFT_warning_set_window3a ; standard layout | |
3790 bra TFT_warning_set_window2a ; alternative layout (Only lower row used) | |
604 | 3791 TFT_warning_set_window3a: |
3792 btfss message_counter,0 ; toggle with each warning | |
582 | 3793 bra TFT_warning_set_window2 |
3794 WIN_SMALL dm_warning1_column, dm_warning1_row | |
3795 bcf second_row_warning ; =1: The second row contains a warning | |
3796 retlw .0 ; WREG=0 -> Warning window defined | |
0 | 3797 TFT_warning_set_window2: |
582 | 3798 bsf second_row_warning ; =1: The second row contains a warning |
3799 TFT_warning_set_window2a: | |
3800 WIN_SMALL dm_warning2_column, dm_warning2_row | |
3801 retlw .0 ; WREG=0 -> Warning window defined | |
0 | 3802 TFT_warning_set_window3: |
604 | 3803 btfss message_counter,0 ; toggle with each warning |
582 | 3804 bra TFT_warning_set_window4 |
3805 WIN_SMALL surf_warning1_column,surf_warning1_row | |
3806 bcf second_row_warning ; =1: The second row contains a warning | |
3807 retlw .0 ; WREG=0 -> Warning window defined | |
0 | 3808 TFT_warning_set_window4: |
582 | 3809 WIN_SMALL surf_warning2_column,surf_warning2_row |
3810 bsf second_row_warning ; =1: The second row contains a warning | |
3811 retlw .0 ; WREG=0 -> Warning window defined | |
560 | 3812 |
309
efb53af0d62a
VSIbar #1: layout position changes
janos_kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
3813 |
0 | 3814 global TFT_update_batt_percent_divemode |
3815 TFT_update_batt_percent_divemode: | |
604 | 3816 rcall TFT_warning_set_window ; set the row and column for the current message |
3817 tstfsz WREG ; is there room for the message? | |
3818 return ; NO | |
3819 movff batt_percent,lo ; get battery percent | |
3820 call TFT_color_code_battery ; color-code battery percent | |
582 | 3821 STRCPY "Batt:" |
0 | 3822 bsf leftbind |
3823 output_8 | |
3824 bcf leftbind | |
582 | 3825 PUTC "%" |
604 | 3826 movlw dm_warning_length ; divemode string length |
3827 btfss divemode ; in divemode? | |
3828 movlw surf_warning_length ; NO - use surface string length | |
3829 rcall TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
582 | 3830 STRCAT_PRINT "" |
3831 bcf win_invert | |
604 | 3832 bra TFT_custview_exit1 ; and return... |
3833 | |
3834 | |
3835 global TFT_gf_factors_mask ; mask for GF factors | |
3836 TFT_gf_factors_mask: | |
582 | 3837 call TFT_divemask_color |
608 | 3838 WIN_TINY dm_custom_gf_column1,dm_custom_gf_title_row |
582 | 3839 STRCPY_TEXT_PRINT tGFactors |
608 | 3840 WIN_TINY dm_custom_gf_column3,dm_custom_gf_title_row |
582 | 3841 STRCPY_TEXT_PRINT taGFactors |
608 | 3842 ; Show GF (static) |
3843 call TFT_disabled_color ; default to disabled color | |
3844 btfss use_agf ; shall use alternative GF factors? | |
3845 call TFT_memo_color ; NO - switch to memo color | |
604 | 3846 WIN_STD dm_custom_gf_column1, dm_custom_gf_row |
582 | 3847 bsf leftbind |
608 | 3848 movff opt_GF_low,lo ; get normal GF low |
3849 output_8 ; print normal GF low | |
3850 PUTC "/" ; print "/" | |
3851 movff opt_GF_high,lo ; get normal GF high | |
3852 output_8 ; print normal GF high | |
3853 STRCAT_PRINT "" ; finish output | |
3854 ; Show aGF (static) | |
3855 call TFT_memo_color ; default to memo color | |
3856 TSTOSS opt_enable_aGF ; are alternative GF factors enabled? | |
3857 bra TFT_gf_factors_mask_3 ; NO - show "---" and return | |
3858 ; YES - show aGF and which one is active | |
604 | 3859 WIN_STD dm_custom_gf_column2, dm_custom_gf_row |
608 | 3860 btfss use_agf ; shall use aGF? |
3861 bra TFT_gf_factors_mask_1 ; NO - print "<- " | |
3862 STRCPY_PRINT " ->" ; YES - print " ->" | |
3863 bra TFT_gf_factors_mask_2 ; - continue with common part | |
3864 TFT_gf_factors_mask_1: | |
3865 STRCPY_PRINT "<- " ; (NO) - print "<- " | |
3866 TFT_gf_factors_mask_2: ; common part | |
3867 btfss use_agf ; shall use aGF? | |
3868 call TFT_disabled_color ; NO - switch to disabled color | |
3869 WIN_STD dm_custom_gf_column3, dm_custom_gf_row | |
3870 movff opt_aGF_low,lo ; get aGF low | |
3871 output_8 ; print | |
3872 PUTC "/" ; print "/" | |
3873 movff opt_aGF_high,lo ; get aGF high | |
3874 output_8 ; print | |
3875 STRCAT_PRINT "" ; finish output | |
3876 bra TFT_custview_exit1 ; done | |
3877 TFT_gf_factors_mask_3: | |
3878 WIN_STD dm_custom_gf_column3+.10, dm_custom_gf_row | |
582 | 3879 STRCPY_PRINT "---" |
608 | 3880 bra TFT_custview_exit1 ; done |
604 | 3881 |
3882 | |
3883 global TFT_ceiling_GF_tissue_mask ; mask for ceiling, current GF and tissues | |
3884 TFT_ceiling_GF_tissue_mask: | |
3885 call TFT_divemask_color | |
3886 WIN_TINY dm_custom_ceiling_column+.2,dm_custom_ceiling_title_row | |
3887 STRCPY_TEXT_PRINT tCeiling | |
3888 WIN_TINY dm_custom_tissue_title_column, dm_custom_tissue_title_row | |
3889 STRCPY_TEXT_PRINT tDiveTissues | |
3890 ; collides with ceiling output and not really needed, too | |
3891 ; WIN_TINY dm_custom_tissue_N2_column, dm_custom_tissue_N2_row | |
3892 ; STRCPY_TEXT_PRINT tN2 | |
3893 ; WIN_TINY dm_custom_tissue_He_column, dm_custom_tissue_He_row | |
3894 ; STRCPY_TEXT_PRINT tHe | |
608 | 3895 WIN_TINY dm_custom_gf_column1+.5, dm_custom_gf_title_row |
604 | 3896 STRCPY_TEXT_PRINT tGFInfo |
3897 bra TFT_custview_exit1 ; and return... | |
3898 | |
3899 | |
3900 global TFT_ceiling_GF_tissue ; data for ceiling, current GF and tissues | |
3901 TFT_ceiling_GF_tissue: | |
3902 WIN_MEDIUM dm_custom_ceiling_column,dm_custom_ceiling_row | |
3903 movff int_O_ceiling+0,lo | |
3904 movff int_O_ceiling+1,hi | |
3905 call TFT_color_code_ceiling ; color-code the output | |
3906 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
3907 bsf leftbind | |
3908 TSTOSS opt_units ; 0=m, 1=ft | |
3909 bra TFT_ceiling_tissue_cGF_m | |
3910 call convert_mbar_to_feet ; convert value in hi:lo from mbar to feet | |
3911 output_16 ; yxz | |
3912 bra TFT_ceiling_tissue_cGF0 | |
3913 TFT_ceiling_tissue_cGF_m: | |
3914 bsf ignore_digit5 ; no cm (flag will be cleared by output_16) | |
3915 output_16dp .3 ; yxz.a | |
3916 TFT_ceiling_tissue_cGF0: | |
582 | 3917 bcf leftbind |
604 | 3918 STRCAT_PRINT " " |
3919 ; Show tissue diagram | |
3920 call DISP_tissue_saturation_graph; show char_O_tissue_N2_saturation and char_O_tissue_He_saturation | |
608 | 3921 ; Show current tissue supersaturation |
604 | 3922 WIN_MEDIUM dm_custom_clock_column+.3, dm_custom_gf_row |
3923 movff int_O_gradient_factor+0,lo ; gradient factor absolute, 100% = on M-line of straight Buhlmann | |
3924 movff int_O_gradient_factor+1,hi ; hi byte holds flags | |
3925 call TFT_color_code_gf ; color-code output | |
3926 output_8 ; need to print lo only, int_O_gradient_factor value is limited to 255 | |
3927 STRCAT_PRINT "" | |
3928 WIN_STD dm_custom_clock_column+.40, dm_custom_gf_row+.5 | |
3929 STRCAT_PRINT "%" ; % is printed in color set by TFT_color_code_gf, too | |
3930 TFT_custview_exit1: | |
3931 bcf leftbind | |
3932 goto TFT_standard_color ; and return... | |
3933 | |
3934 | |
3935 global TFT_clock_batt_surfpress_mask ; mask for clock, battery and surface pressure | |
3936 TFT_clock_batt_surfpress_mask: | |
582 | 3937 call TFT_divemask_color |
3938 WIN_TINY dm_custom_clock_column, dm_custom_clock_title_row | |
604 | 3939 STRCPY_TEXT_PRINT tTime ; "Time" |
3940 WIN_TINY dm_custom_battery_column, dm_custom_battery_title_row | |
3941 STRCPY_TEXT_PRINT tBattery ; "Battery" | |
3942 WIN_TINY dm_custom_surfpres_column+.8, dm_custom_surfpres_title_row | |
3943 STRCPY_TEXT_PRINT tSurface ; "Surface" | |
3944 ; Show Surface Pressure (done in mask, because it's static during the dive) | |
3945 call TFT_standard_color | |
3946 WIN_SMALL dm_custom_surfpres_column, dm_custom_surfpres_row | |
3947 movff last_surfpressure_30min+0,lo | |
3948 movff last_surfpressure_30min+1,hi | |
3949 output_16 | |
3950 PUTC ' ' | |
3951 STRCAT_TEXT_PRINT tMBAR ; mbar (hPa) | |
3952 bra TFT_custview_exit1 ; and return... | |
3953 | |
3954 | |
3955 global TFT_clock_batt_surfpress ; data for clock, battery and surface pressure | |
3956 TFT_clock_batt_surfpress: | |
3957 ; Update Clock | |
582 | 3958 WIN_SMALL dm_custom_clock_column, dm_custom_clock_row |
604 | 3959 call TFT_standard_color |
3960 movff hours,lo | |
3961 output_99 | |
3962 PUTC ':' | |
3963 movff mins,lo | |
3964 output_99x | |
3965 PUTC ":" | |
3966 movff secs,lo | |
3967 output_99x | |
3968 STRCAT_PRINT "" | |
3969 ; Show Battery Info | |
3970 WIN_SMALL dm_custom_battery_column, dm_custom_battery_percent_row | |
3971 movff batt_percent,lo ; get battery percent | |
3972 call TFT_color_code_battery ; color-code battery percent | |
3973 ; bsf leftbind | |
582 | 3974 output_8 |
604 | 3975 ; bcf leftbind |
582 | 3976 STRCAT "% " |
3977 movlw 0x00 | |
604 | 3978 movff WREG,buffer+4 ; only "xxx%" |
582 | 3979 STRCAT_PRINT "" |
3980 bcf win_invert | |
604 | 3981 call TFT_memo_color |
3982 WIN_SMALL dm_custom_battery_column, dm_custom_battery_volt_row | |
582 | 3983 movff batt_voltage+0,lo |
3984 movff batt_voltage+1,hi | |
3985 bsf leftbind | |
3986 output_16dp .2 | |
3987 PUTC 'V' | |
3988 movff buffer+5,buffer+4 | |
3989 movlw 0x00 | |
604 | 3990 movff WREG,buffer+5 ; only "x.yzV" |
582 | 3991 STRCAT_PRINT "" |
604 | 3992 ; Surface pressure is shown in mask because it is static |
3993 bra TFT_custview_exit1 ; and return... | |
3994 | |
3995 | |
3996 global TFT_pscr_info_mask ; mask for pSCR info | |
3997 TFT_pscr_info_mask: | |
582 | 3998 rcall TFT_mask_ppo2 |
3999 call TFT_divemask_color | |
604 | 4000 WIN_TINY dm_custom_pscr_drop_column, dm_custom_pscr_title_row |
582 | 4001 STRCPY_TEXT_PRINT tPSCR_O2_drop |
604 | 4002 WIN_TINY dm_custom_pscr_ratio_column, dm_custom_pscr_title_row |
582 | 4003 STRCPY_TEXT_PRINT tPSCR_lungratio |
604 | 4004 bra TFT_custview_exit1 ; and return... |
4005 | |
4006 global TFT_pscr_info ; data for pSCR info | |
482
c0ee33f1f399
New customview #12 for PSCR mode shows ppO2, O2 drop and lung ratio
heinrichsweikamp
parents:
480
diff
changeset
|
4007 TFT_pscr_info: |
582 | 4008 ;show ppO2 |
604 | 4009 WIN_MEDIUM dm_custom_ppo2_column,dm_custom_ppo2_row |
4010 movff int_O_pSCR_ppO2+0,lo ; copy pSCR ppO2 to hi:lo | |
560 | 4011 movff int_O_pSCR_ppO2+1,hi |
604 | 4012 call TFT_color_code_ppo2 ; color-code output |
560 | 4013 bsf leftbind |
604 | 4014 output_16dp .3 ; x.xx bar |
582 | 4015 bcf leftbind |
4016 STRCAT_PRINT "" | |
604 | 4017 ; Show drop |
4018 WIN_STD dm_custom_pscr_drop_column+.11,dm_custom_pscr_row | |
4019 call TFT_memo_color | |
560 | 4020 movff char_I_PSCR_drop,lo |
582 | 4021 bsf leftbind |
4022 output_8 | |
4023 STRCAT_PRINT "%" | |
4024 ; Show lung ratio | |
604 | 4025 WIN_STD dm_custom_pscr_ratio_column+.5,dm_custom_pscr_row |
582 | 4026 movff char_I_PSCR_lungratio,lo |
4027 bsf leftbind | |
4028 STRCPY "1/" | |
4029 output_8 | |
4030 STRCAT_PRINT "" | |
604 | 4031 bra TFT_custview_exit1 ; and return... |
4032 | |
4033 | |
4034 global TFT_gas_needs_ascent_mask ; mask for gas needs ascent | |
4035 TFT_gas_needs_ascent_mask: | |
4036 WIN_TINY dm_custom_gas_column_title, dm_custom_gas_mask_row | |
582 | 4037 call TFT_divemask_color |
604 | 4038 IFDEF _cave_mode |
4039 movff char_O_deco_info,WREG ; get the deco info vector | |
4040 btfss WREG,gas_needs_cave ; are the gas needs calculated for cave mode? | |
4041 bra TFT_gas_needs_mask_ascent_1 ; NO - show as direct ascent needs | |
4042 bsf gas_needs_mode_last ; YES - remember last results were for cave mode | |
4043 STRCPY_TEXT tGasNeedsCaveMode ; - "Gas Needs Cave Mode" | |
4044 bra TFT_gas_needs_mask_ascent_2 | |
4045 TFT_gas_needs_mask_ascent_1: | |
4046 bcf gas_needs_mode_last ; remember last results were for direct ascent | |
4047 STRCPY_TEXT tGasNeedsAscent ; "Gas Needs Ascent" | |
4048 TFT_gas_needs_mask_ascent_2: | |
4049 ELSE | |
4050 STRCPY_TEXT tGasNeedsAscent ; "Gas Needs Ascent" | |
4051 ENDIF | |
4052 STRCAT_PRINT " (bar)" ; " (bar)" | |
4053 bra TFT_custview_exit1 ; and return... | |
4054 | |
4055 | |
4056 global TFT_gas_needs_ascent ; data for gas needs ascent | |
4057 TFT_gas_needs_ascent: ; LIMITATION: there is only space for 4 gases on the screen - if 5 gases have a pres_need > 0, then only the first 4 will be shown! | |
4058 IFDEF _cave_mode | |
4059 movff char_O_deco_info,WREG ; get deco info vector | |
4060 btfss WREG,gas_needs_cave ; are the gas needs calculated for cave mode? | |
4061 bra TFT_gas_needs_ascent_1 ; NO - continue below... | |
4062 btfsc gas_needs_mode_last ; YES - were the last results calculated for cave mode? | |
4063 bra TFT_gas_needs_ascent_3 ; YES - mask still valid | |
4064 bra TFT_gas_needs_ascent_2 ; NO - redraw mask | |
4065 TFT_gas_needs_ascent_1: | |
4066 btfss gas_needs_mode_last ; NO - were the last results calculated for direct ascent? | |
4067 bra TFT_gas_needs_ascent_3 ; YES - mask still valid | |
4068 ;bra TFT_gas_needs_ascent_2 ; NO - redraw mask | |
4069 TFT_gas_needs_ascent_2: | |
4070 rcall TFT_gas_needs_ascent_mask ; redraw mask | |
4071 TFT_gas_needs_ascent_3: | |
4072 ENDIF | |
4073 clrf up ; initialize gas index (0-4) | |
4074 WIN_SMALL dm_custom_gas_column1+.5,dm_custom_gas_row1 | |
4075 rcall TFT_gas_needs_helper | |
4076 WIN_SMALL dm_custom_gas_column1+.5,dm_custom_gas_row2 | |
4077 rcall TFT_gas_needs_helper | |
4078 WIN_SMALL dm_custom_gas_column2+.5,dm_custom_gas_row1 | |
4079 rcall TFT_gas_needs_helper | |
4080 WIN_SMALL dm_custom_gas_column2+.5,dm_custom_gas_row2 | |
4081 rcall TFT_gas_needs_helper | |
560 | 4082 return |
4083 | |
4084 TFT_gas_needs_helper: | |
604 | 4085 call TFT_memo_color |
560 | 4086 movlw .5 ; number of gases |
4087 cpfslt up ; check if all gases have been processed | |
604 | 4088 bra TFT_gas_needs_helper_1 ; YES - clear display area |
4089 movf up,W ; NO - get gas number and check if need of that gas is > 0 | |
4090 rlncf WREG,W ; multiply by 2 | |
4091 incf WREG,W ; add 1 to address high byte | |
4092 lfsr FSR1,int_O_ascent_pres_need ; load base of ascent press needs | |
4093 movff PLUSW1,hi ; read HIGH(int_O_ascent_pres_need[up]) | |
560 | 4094 btfss hi,int_is_zero ; check flag for pres_need == 0 |
604 | 4095 bra TFT_gas_needs_helper_2 ; NO - print gas type and pressure needed |
4096 incf up,F ; YES - increment to next gas... | |
560 | 4097 bra TFT_gas_needs_helper ; ...and try the next gas |
4098 TFT_gas_needs_helper_1: ; no gases to show anymore, clear display area from potential remains of last invocation | |
582 | 4099 STRCAT_PRINT " ---- " ; overwrite outdated stuff if screen position is not needed |
560 | 4100 return |
4101 TFT_gas_needs_helper_2: ; output gas type and pressure needed | |
582 | 4102 movf up,W ; get gas number (0-4) to WREG |
4103 lfsr FSR1,opt_gas_O2_ratio ; read opt_gas_O2_ratio[WREG] | |
4104 movff PLUSW1,lo ; copy result to lo | |
4105 lfsr FSR1,opt_gas_He_ratio ; read opt_gas_He_ratio[WREG] | |
4106 movff PLUSW1,hi ; copy result to hi | |
4107 call customview_show_mix ; print "Air", "O2", "21/35", etc. | |
604 | 4108 PUTC ':' ; ":" |
582 | 4109 movf up,W ; get gas number (0-4) to WREG |
604 | 4110 rlncf WREG,W ; multiply by 2 |
4111 lfsr FSR1,int_O_ascent_pres_need ; load base of ascent press needs (default) | |
4112 movff PLUSW1,lo ; read LOW(int_O_ascent_pres_need[up]) | |
4113 incf WREG,W ; add 1 to address high byte | |
4114 movff PLUSW1,hi ; read HIGH(int_O_ascent_pres_need[up]) | |
582 | 4115 btfsc hi,int_attention_flag ; check if attention flag is set (pres_need > pres_fill * threshold) |
604 | 4116 call TFT_attention_color ; YES - print gas need in yellow |
4117 btfsc hi,int_warning_flag ; check if warning flag is set (pres_need > pres_fill) | |
4118 call TFT_warnings_color ; YES - print gas need in red | |
4119 movff int_O_ascent_pres_need+1,WREG ; get HIGH(int_O_ascent_pres_need[0]) which holds flag for invalid data | |
560 | 4120 btfsc WREG,int_invalid_flag ; check if invalid data flag is set |
604 | 4121 call TFT_disabled_color ; YES - print gas need in disabled color |
582 | 4122 bcf hi,int_attention_flag ; clear attention flag for attention color |
604 | 4123 bcf hi,int_warning_flag ; clear warning flag for warning color |
4124 bcf hi,int_invalid_flag ; clear flag for invalid data (will actually only be set with 1st gas) | |
582 | 4125 output_16_3 ; limit to 999 and display only (0-999) |
560 | 4126 STRCAT_PRINT " " ; adds a space to overwrite any potential remains of earlier outputs |
4127 incf up,F ; increment to next gas | |
604 | 4128 bra TFT_custview_exit2 ; and return... |
582 | 4129 |
4130 | |
4131 global TFT_mask_ppo2 ; helper function for several custom views | |
560 | 4132 TFT_mask_ppo2: |
582 | 4133 call TFT_divemask_color |
4134 btfss FLAG_ccr_mode ; in CCR mode? | |
4135 bra TFT_mask_ppo2a ; NO - continue checking for pSCR and OC | |
604 | 4136 btfsc FLAG_bailout_mode ; in bailout? |
582 | 4137 bra TFT_mask_ppo2b ; YES |
604 | 4138 WIN_TINY dm_custom_ppo2_column-.2,dm_custom_ppo2_title_row ; tuned position for longer text (-8 = on leftmost edge of display) |
582 | 4139 STRCPY_TEXT_PRINT tppO2Dil ; print "ppO2(Dil)" |
604 | 4140 bra TFT_custview_exit2 ; and return... |
560 | 4141 TFT_mask_ppo2a: |
582 | 4142 btfss FLAG_pscr_mode ; in pSCR mode? |
4143 bra TFT_mask_ppo2b ; NO - continue with OC mode (or bailout) | |
604 | 4144 btfsc FLAG_bailout_mode ; in bailout? |
582 | 4145 bra TFT_mask_ppo2b ; YES |
604 | 4146 WIN_TINY dm_custom_ppo2_column-.2,dm_custom_ppo2_title_row ; tuned position for longer text (-8 = on leftmost edge of display) |
582 | 4147 STRCPY_TEXT_PRINT tppO2Mix ; print "ppO2(Mix)" |
604 | 4148 bra TFT_custview_exit2 ; and return... |
560 | 4149 TFT_mask_ppo2b: ; OC mode or bailout |
604 | 4150 WIN_TINY dm_custom_ppo2_column-.2, dm_custom_ppo2_title_row ; normal position |
582 | 4151 STRCPY_TEXT_PRINT tppO2 ; in all other modes |
604 | 4152 bra TFT_custview_exit2 ; and return... |
582 | 4153 |
4154 | |
604 | 4155 global TFT_ppo2_ead_end_cns_mask ; mask for ppO2, END/EAD and CNS |
560 | 4156 TFT_ppo2_ead_end_cns_mask: |
582 | 4157 rcall TFT_mask_ppo2 |
4158 call TFT_divemask_color | |
4159 WIN_TINY dm_custom_ead_column, dm_custom_eadend_title_row | |
4160 STRCPY_TEXT_PRINT tDiveEAD_END | |
604 | 4161 WIN_TINY dm_custom_cns_column, dm_custom_cns_title_row |
582 | 4162 STRCPY_TEXT_PRINT tCNS2 |
604 | 4163 bra TFT_custview_exit2 ; and return... |
4164 | |
4165 | |
4166 global TFT_ppo2_ead_end_cns ; data for ppO2, END/EAD and CNS | |
471
9edb1359ce43
NEW: New Customview 11 in dive mode shows ppO2, EAD/END and CNS
heinrichsweikamp
parents:
466
diff
changeset
|
4167 TFT_ppo2_ead_end_cns: |
608 | 4168 ; Show ppO2 |
4169 WIN_MEDIUM dm_custom_ppo2_column, dm_custom_ppo2_row | |
4170 movff int_O_breathed_ppO2+0,lo ; copy ppO2 of the currently breathed gas to hi:lo | |
4171 movff int_O_breathed_ppO2+1,hi | |
4172 call TFT_color_code_ppo2 ; color-code output | |
4173 bsf leftbind | |
4174 output_16dp .3 ; x.xx bar | |
4175 bcf leftbind | |
4176 STRCAT_PRINT "" | |
4177 call TFT_standard_color | |
582 | 4178 ; Show END/EAD |
4179 WIN_SMALL dm_custom_ead_column, dm_custom_ead_row | |
4180 STRCPY_TEXT tEAD ; EAD: | |
4181 movff char_O_EAD,lo | |
4182 rcall TFT_end_ead_common ; print "lo m" (or ft) and limit to 8 chars | |
4183 WIN_SMALL dm_custom_end_column, dm_custom_end_row | |
4184 STRCPY_TEXT tEND ; END: | |
4185 movff char_O_END,lo | |
4186 rcall TFT_end_ead_common ; print "lo m" (or ft) and limit to 8 chars | |
4187 ; Show CNS | |
604 | 4188 WIN_STD dm_custom_cns_column+.3, dm_custom_cns_row |
582 | 4189 movff int_O_CNS_fraction+0,lo |
4190 movff int_O_CNS_fraction+1,hi | |
604 | 4191 call TFT_color_code_cns ; color-code CNS output |
582 | 4192 bsf leftbind |
604 | 4193 output_16_3 ; displays only 0...999 |
582 | 4194 bcf leftbind |
4195 STRCAT_PRINT "%" | |
604 | 4196 TFT_custview_exit2: |
582 | 4197 goto TFT_standard_color ; and return... |
4198 TFT_end_ead_common: ; print "lo m" (or ft) and limit to 8 chars | |
4199 bsf leftbind | |
4200 TSTOSS opt_units ; 0=Meters, 1=Feets | |
0 | 4201 bra TFT_end_ead_common_metric |
604 | 4202 TFT_end_ead_common_imperial: |
4203 movf lo,W ; with lo in m | |
582 | 4204 mullw .100 ; PRODL:PRODH = mbar/min |
0 | 4205 movff PRODL,lo |
4206 movff PRODH,hi | |
604 | 4207 call convert_mbar_to_feet ; convert value in hi:lo from mbar to feet |
582 | 4208 output_16_3 |
4209 STRCAT_TEXT tFeets | |
4210 clrf WREG | |
4211 movff WREG,buffer+.8 ; limit string length to 8 | |
604 | 4212 bra TFT_end_ead_common_exit |
0 | 4213 TFT_end_ead_common_metric: |
582 | 4214 output_8 |
4215 STRCAT_TEXT tMeters | |
0 | 4216 TFT_end_ead_common_exit: |
582 | 4217 bcf leftbind |
4218 movlw .8 | |
604 | 4219 call TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) |
582 | 4220 STRCAT_PRINT "" |
4221 return | |
4222 | |
4223 | |
604 | 4224 global TFT_sensor_check_mask ; mask for sensor check |
413
12e85930d95c
NEW: New Customview shows ppO2(O2) and ppO2(Diluent) during CCR mode
heinrichsweikamp
parents:
412
diff
changeset
|
4225 TFT_sensor_check_mask: |
582 | 4226 call TFT_divemask_color |
604 | 4227 WIN_TINY dm_custom_s_check_title_column, dm_custom_s_check_title_row |
582 | 4228 STRCPY_TEXT_PRINT tSensorCheck |
604 | 4229 WIN_TINY dm_custom_ppO2_column, dm_custom_s_check_title_row |
582 | 4230 STRCPY_TEXT_PRINT tppO2O2 |
604 | 4231 WIN_TINY dm_custom_ppDil_column, dm_custom_s_check_title_row |
582 | 4232 STRCPY_TEXT_PRINT tppO2Dil |
604 | 4233 bra TFT_sensor_check_exit ; and return... |
4234 | |
4235 | |
4236 global TFT_sensor_check ; data for sensor check | |
413
12e85930d95c
NEW: New Customview shows ppO2(O2) and ppO2(Diluent) during CCR mode
heinrichsweikamp
parents:
412
diff
changeset
|
4237 TFT_sensor_check: |
582 | 4238 ; Show ppO2 of O2 in this depth |
604 | 4239 WIN_MEDIUM dm_custom_ppO2_column, dm_custom_s_check_row |
560 | 4240 movff int_O_O2_ppO2+0,lo ; copy ppO2 of pure O2 to hi:lo |
4241 movff int_O_O2_ppO2+1,hi | |
582 | 4242 call TFT_color_code_ppo2 ; color-code output |
560 | 4243 bsf leftbind |
582 | 4244 output_16dp .3 ; x.xx bar |
4245 bcf leftbind | |
4246 STRCAT_PRINT "" | |
4247 ; Show ppO2 of the diluent in this depth | |
604 | 4248 WIN_MEDIUM dm_custom_ppDil_column, dm_custom_s_check_row |
560 | 4249 movff int_O_pure_ppO2+0,lo ; copy ppO2 of pure gas to hi:lo |
4250 movff int_O_pure_ppO2+1,hi | |
582 | 4251 call TFT_color_code_ppo2 ; color-code output |
560 | 4252 bsf leftbind |
582 | 4253 output_16dp .3 ; x.xx bar |
4254 bcf leftbind | |
4255 STRCAT_PRINT "" | |
604 | 4256 TFT_sensor_check_exit: |
4257 bra TFT_custview_exit2 ; and return... | |
560 | 4258 |
4259 ;============================================================================= | |
413
12e85930d95c
NEW: New Customview shows ppO2(O2) and ppO2(Diluent) during CCR mode
heinrichsweikamp
parents:
412
diff
changeset
|
4260 |
582 | 4261 global TFT_surface_lastdive |
503
4542d03f748a
NEW: Last Dive customviews in surface mode with divetime, depth and interval
heinrichsweikamp
parents:
490
diff
changeset
|
4262 TFT_surface_lastdive: |
608 | 4263 call TFT_divemask_color |
582 | 4264 WIN_TINY surf_gaslist_column,surf_gaslist_row+.5 |
604 | 4265 STRCAT_TEXT_PRINT tLastDive ; "Last Dive:" |
582 | 4266 WIN_TINY surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.1)+.5 |
604 | 4267 STRCAT_TEXT_PRINT tDivetime ; "Divetime:" |
582 | 4268 WIN_TINY surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.2)+.5 |
604 | 4269 STRCAT_TEXT_PRINT tMaxDepth ; "Max. Depth" |
608 | 4270 call TFT_standard_color |
582 | 4271 WIN_SMALL surf_gaslist_column+.48,surf_gaslist_row |
560 | 4272 movff int_O_desaturation_time+0,lo ; bank-safe copies |
4273 movff int_O_desaturation_time+1,WREG | |
4274 iorwf lo,W ; check if desaturation time is zero | |
582 | 4275 bz TFT_surface_lastdive_1 ; YES - show last dive time |
560 | 4276 movff surface_interval+0,lo ; NO - show dive interval |
4277 movff surface_interval+1,hi | |
604 | 4278 call convert_time ; converts hi:lo in minutes to hours (up:hi) and minutes (lo) |
560 | 4279 movf hi,W |
4280 movff lo,hi | |
582 | 4281 movwf lo ; exchange lo and hi |
4282 bsf leftbind | |
560 | 4283 output_99x |
582 | 4284 PUTC 'h' |
560 | 4285 movff hi,lo |
4286 output_99x | |
4287 STRCAT_PRINT "m " | |
4288 bra TFT_surface_lastdive_2 | |
4289 TFT_surface_lastdive_1: | |
582 | 4290 movff lastdive_time+0,xC+0 |
4291 movff lastdive_time+1,xC+1 | |
4292 movff lastdive_time+2,xC+2 | |
4293 movff lastdive_time+3,xC+3 | |
4294 movlw LOW .3600 | |
4295 movwf xB+0 | |
4296 movlw HIGH .3600 | |
604 | 4297 movwf xB+1 ; one day = 3600s |
582 | 4298 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder |
604 | 4299 ;xC+0:xC+1 -> full hours |
582 | 4300 movff xC+1,xA+1 |
4301 movff xC+0,xA+0 | |
4302 clrf xB+1 | |
4303 movlw .24 | |
4304 movwf xB+0 | |
604 | 4305 call div16x16 ; xC = xA / xB with xA as remainder |
582 | 4306 movff xC+0,lo |
604 | 4307 movff xC+1,hi ; full days |
582 | 4308 bsf leftbind |
4309 output_16 | |
4310 PUTC "d" | |
604 | 4311 movff xA+0,lo ; full hours |
582 | 4312 output_8 |
560 | 4313 STRCAT_PRINT "h " |
4314 TFT_surface_lastdive_2: | |
582 | 4315 WIN_SMALL surf_gaslist_column+.48,surf_gaslist_row+(surf_gaslist_spacing*.1) |
4316 movff lastdive_duration+0,lo | |
4317 movff lastdive_duration+1,hi | |
4318 output_16 ; divetime minutes | |
4319 PUTC ":" | |
4320 movff lastdive_duration+2,lo | |
4321 output_99x ; divetime seconds | |
4322 STRCAT_PRINT "" | |
4323 WIN_SMALL surf_gaslist_column+.48,surf_gaslist_row+(surf_gaslist_spacing*.2) | |
4324 movff lastdive_maxdepth+0,lo | |
4325 movff lastdive_maxdepth+1,hi | |
4326 TSTOSS opt_units ; 0=Meters, 1=Feets | |
4327 bra TFT_surface_lastdive_metric | |
503
4542d03f748a
NEW: Last Dive customviews in surface mode with divetime, depth and interval
heinrichsweikamp
parents:
490
diff
changeset
|
4328 ;imperial |
604 | 4329 rcall convert_mbar_to_feet ; convert value in hi:lo from mbar to feet |
582 | 4330 output_16_3 ; limit to 999 and display only (0-999) |
4331 STRCAT_TEXT tFeets1 | |
4332 bra TFT_surface_lastdive2 | |
503
4542d03f748a
NEW: Last Dive customviews in surface mode with divetime, depth and interval
heinrichsweikamp
parents:
490
diff
changeset
|
4333 |
4542d03f748a
NEW: Last Dive customviews in surface mode with divetime, depth and interval
heinrichsweikamp
parents:
490
diff
changeset
|
4334 TFT_surface_lastdive_metric: |
604 | 4335 bsf ignore_digit5 ; no cm (flag will be cleared by output_16) |
582 | 4336 movlw d'1' ; +1 |
4337 movff WREG,ignore_digits ; no 1000m | |
4338 output_16dp .3 ; xxx.y | |
4339 STRCAT_TEXT tMeters | |
503
4542d03f748a
NEW: Last Dive customviews in surface mode with divetime, depth and interval
heinrichsweikamp
parents:
490
diff
changeset
|
4340 TFT_surface_lastdive2: |
582 | 4341 STRCAT_PRINT "" |
4342 bcf leftbind | |
604 | 4343 return ; done. |
560 | 4344 |
4345 ;============================================================================= | |
582 | 4346 |
4347 global TFT_surface_tissues | |
604 | 4348 TFT_surface_tissues: ; show Tissue diagram in surface mode |
582 | 4349 WIN_SMALL surf_tissue_N2_column,surf_tissue_N2_row |
4350 STRCPY_TEXT_PRINT tN2 | |
4351 WIN_SMALL surf_tissue_He_column,surf_tissue_He_row | |
4352 STRCPY_TEXT_PRINT tHe | |
4353 | |
4354 movlw color_deepblue | |
604 | 4355 call TFT_set_color ; make this configurable? |
582 | 4356 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.29,.29 |
4357 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.37,.37 | |
4358 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.45,.45 | |
4359 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.53,.53 | |
4360 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.61,.61 | |
4361 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.69,.69 | |
4362 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.77,.77 | |
4363 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.85,.85 | |
4364 WIN_FRAME_STD surf_tissue_diagram_top, surf_tissue_diagram_bottom, surf_tissue_diagram_left, surf_tissue_diagram_right ; outer frame | |
0 | 4365 |
4366 movlw .1 | |
604 | 4367 movwf win_height ; row bottom (0-239) |
582 | 4368 |
4369 ;---- Draw N2 Tissues ---------------------------------------------------- | |
4370 | |
4371 movlw surf_tissue_diagram_left+.4 ; start position for N2 bars | |
604 | 4372 movwf win_leftx2 ; column left (0-159) |
4373 movlw surf_tissue_diagram_right-surf_tissue_diagram_left-.4 ; max width for N2 bars | |
4374 movwf win_width | |
0 | 4375 |
4376 lfsr FSR2, char_O_tissue_N2_saturation | |
4377 movlw d'16' | |
582 | 4378 movwf lo ; 16 tissues |
4379 clrf hi ; row offset | |
0 | 4380 surf_tissue_saturation_graph_N2: |
582 | 4381 movlw surf_tissue_diagram_top+.23 ; surface mode |
4382 addwf hi,W | |
604 | 4383 movwf win_top ; row top (0-239) |
582 | 4384 rcall surf_tissue_saturation_loop ; show one tissue |
4385 decfsz lo,F | |
0 | 4386 bra surf_tissue_saturation_graph_N2 |
4387 | |
582 | 4388 ;---- Draw He Tissues ---------------------------------------------------- |
4389 | |
604 | 4390 movlw surf_tissue_diagram_left+.24 ; start position for He bars (.15 without x2) |
4391 movwf win_leftx2 ; column left (0-159) | |
4392 movlw surf_tissue_diagram_right-surf_tissue_diagram_left-.24 ; max width for He bars | |
4393 movwf win_width | |
582 | 4394 |
0 | 4395 lfsr FSR2, char_O_tissue_He_saturation |
4396 movlw d'16' | |
582 | 4397 movwf lo ; 16 tissues |
604 | 4398 clrf hi ; row offset |
0 | 4399 surf_tissue_saturation_graph_He: |
582 | 4400 movlw surf_tissue_diagram_top+.23+.57 ; surface mode |
4401 addwf hi,W | |
604 | 4402 movwf win_top ; row top (0-239) |
582 | 4403 rcall surf_tissue_saturation_loop ; show one tissue |
4404 decfsz lo,F | |
0 | 4405 bra surf_tissue_saturation_graph_He |
582 | 4406 |
4407 WIN_SMALL surf_tissue_He_column+.22,surf_tissue_He_row ; position in-between tissue bars | |
560 | 4408 movff int_O_CNS_fraction+0,lo |
4409 movff int_O_CNS_fraction+1,hi | |
582 | 4410 call TFT_color_code_cns |
4411 STRCPY_TEXT tCNS2 ; CNS: | |
560 | 4412 bsf leftbind |
604 | 4413 output_16_3 ; displays only 0...999 |
560 | 4414 bcf leftbind |
4415 STRCAT_PRINT "%" | |
582 | 4416 goto TFT_standard_color ; and return... |
0 | 4417 |
4418 surf_tissue_saturation_loop: | |
582 | 4419 call TFT_standard_color |
4420 movlw .2 ; row spacing | |
4421 addwf hi,F | |
4422 movf POSTINC2,W ; get tissue load | |
560 | 4423 bcf WREG,7 ; clear flag bit for sat/desat info (not used in surface mode) |
4424 rlncf WREG,W ; multiply with 2 (previously cleared bit 7 will be rotated to bit 0) | |
4425 incf WREG,W ; add 1 for a minimum visible bar (He-bars could be invisible else-wise) | |
582 | 4426 movwf up |
604 | 4427 movf win_width+0,W ; get max window width (win_width) |
582 | 4428 cpfslt up ; skip if WREG < win_width |
4429 movwf up ; crop length to win_width | |
560 | 4430 ; no need to be able to draw longer bars – |
4431 ; we are at the surface and if bars would | |
4432 ; even touch the max length possible here, | |
4433 ; the diver would be in severe decompression | |
4434 ; issues if not dead already... | |
582 | 4435 movff up,win_bargraph |
4436 clrf win_width+1 | |
4437 goto TFT_box ; and return... | |
0 | 4438 |
4439 ;============================================================================= | |
604 | 4440 ; Draw saturation graph in dive mode |
560 | 4441 |
0 | 4442 DISP_tissue_saturation_graph: |
582 | 4443 ;---- Draw Frame |
4444 call TFT_standard_color | |
604 | 4445 WIN_FRAME_COLOR16 dm_custom_tissue_diagram_top, dm_custom_tissue_diagram_bottom, dm_custom_tissue_diagram_left, .159 ; outer frame |
4446 | |
4447 ;---- clear area showing leading tissue number as it may not be printed over | |
4448 WIN_BOX_BLACK dm_custom_tissue_diagram_top+.16, dm_custom_tissue_diagram_top+.16+.10, dm_custom_tissue_diagram_left+.32, dm_custom_tissue_diagram_left+.32+.8 ; top, bottom, left, right | |
0 | 4449 |
4450 movlw .1 | |
604 | 4451 movwf win_height ; row bottom (0-239) |
582 | 4452 |
4453 ;---- Draw N2 Tissues ---------------------------------------------------- | |
4454 | |
604 | 4455 movlw dm_custom_tissue_diagram_left+.3 ; divemode |
4456 movwf win_leftx2 ; column left (0-159) | |
4457 movlw .159-dm_custom_tissue_diagram_left-.4 ; width | |
4458 movwf win_width | |
0 | 4459 |
4460 lfsr FSR2, char_O_tissue_N2_saturation | |
4461 movlw d'16' | |
582 | 4462 movwf lo ; 16 tissues |
4463 clrf hi ; row offset | |
0 | 4464 tissue_saturation_graph_N2: |
582 | 4465 movlw dm_custom_tissue_diagram_top+.3 ; divemode |
4466 rcall tissue_saturation_graph_loop ; show one tissue | |
4467 decfsz lo,F | |
0 | 4468 bra tissue_saturation_graph_N2 |
4469 | |
582 | 4470 ;---- Draw He Tissues ---------------------------------------------------- |
4471 | |
604 | 4472 movlw dm_custom_tissue_diagram_left+.8 ; divemode |
4473 movwf win_leftx2 ; column left (0-159) | |
4474 movlw .159-dm_custom_tissue_diagram_left-.14 ; width | |
4475 movwf win_width | |
582 | 4476 |
0 | 4477 lfsr FSR2, char_O_tissue_He_saturation |
4478 movlw d'16' | |
582 | 4479 movwf lo ; 16 tissues |
4480 clrf hi ; row offset | |
0 | 4481 tissue_saturation_graph_He: |
582 | 4482 movlw dm_custom_tissue_diagram_top+.3+.22 ; divemode |
4483 rcall tissue_saturation_graph_loop ; show one tissue | |
4484 decfsz lo,F | |
0 | 4485 bra tissue_saturation_graph_He |
604 | 4486 |
4487 ;---- Print Number of leading Tissue ------------------------------------- | |
4488 | |
4489 ; TODO: some flicker due to overwriting by tissue bars | |
4490 | |
4491 movff int_O_gradient_factor+0,WREG ; get current gradient factor (only low byte used for value) | |
4492 tstfsz WREG ; current gradient factor = 0 ? | |
4493 bra tissue_saturation_graph_0 ; NO - print number of leading tissue | |
4494 movff char_O_deco_info,WREG ; YES - get deco info vector | |
4495 btfss WREG,deco_ceiling ; - do we have a ceiling obligation? | |
4496 goto TFT_standard_color ; NO - can ascent directly, don't print number, set standard color and return | |
4497 ; YES - print number of leading tissue | |
4498 tissue_saturation_graph_0: | |
4499 movff char_O_lead_number,lo ; get number of leading tissue as 0-15 | |
4500 incf lo,F ; adjust to 1-16 | |
4501 movlw .10 | |
4502 cpfsgt lo ; is it > 10 ? | |
4503 bra tissue_saturation_graph_1 ; NO - will output a single digit number | |
4504 ; start position for a 2 digit number | |
4505 WIN_TINY dm_custom_tissue_diagram_left+.32,dm_custom_tissue_diagram_top+.16 | |
4506 bra tissue_saturation_graph_2 | |
4507 tissue_saturation_graph_1: | |
4508 ; start position for a 1 digit number | |
4509 WIN_TINY dm_custom_tissue_diagram_left+.32+.4,dm_custom_tissue_diagram_top+.16 | |
4510 tissue_saturation_graph_2: | |
4511 call TFT_standard_color ; set output color | |
4512 bsf leftbind | |
4513 output_8 ; print number in leftbind, i.e. without leading zeros or spaces | |
4514 bcf leftbind | |
4515 STRCAT_PRINT "" ; finalize output | |
4516 return | |
0 | 4517 |
4518 tissue_saturation_graph_loop: | |
582 | 4519 addwf hi,W |
604 | 4520 movwf win_top ; row top (0-239) |
582 | 4521 movlw color_cyan ; preset color for tissues with decreasing pressure |
4522 call TFT_set_color | |
4523 incf hi,F | |
0 | 4524 movf POSTINC2,W |
604 | 4525 btfss WREG,7 ; check if flag for increasing tissue pressure set |
560 | 4526 bra tissue_saturation_graph_loop_1 ; NO - keep color |
582 | 4527 movwf up ; YES - buffer WREG |
4528 movlw color_orange ; select color for tissues with increasing pressure | |
4529 call TFT_set_color ; change color | |
4530 movf up,W ; restore WREG | |
560 | 4531 tissue_saturation_graph_loop_1: |
4532 bcf WREG,7 ; clear flag bit | |
582 | 4533 bcf STATUS,C |
4534 rrcf WREG ; divide by 2 | |
560 | 4535 incf WREG,W ; add a bit for a minimum visible bar |
582 | 4536 movwf up |
4537 movf win_width,W ; get max window width (win_width) | |
4538 cpfslt up ; skip if WREG < win_width | |
4539 movwf up | |
4540 movff up,win_bargraph | |
4541 clrf win_width+1 | |
4542 goto TFT_box ; and return... | |
560 | 4543 |
4544 ;============================================================================= | |
55 | 4545 |
0 | 4546 global TFT_display_cns |
4547 TFT_display_cns: | |
604 | 4548 call TFT_warning_set_window ; set the row and column for the current message |
4549 tstfsz WREG ; is there room for the message? | |
4550 return ; NO | |
582 | 4551 STRCPY_TEXT tCNS ; CNS: |
4552 movff int_O_CNS_fraction+0,lo | |
4553 movff int_O_CNS_fraction+1,hi | |
604 | 4554 call TFT_color_code_cns ; color-code CNS output |
582 | 4555 bsf leftbind |
604 | 4556 output_16_3 ; displays only 0...999 |
582 | 4557 bcf leftbind |
4558 PUTC "%" | |
604 | 4559 movlw dm_warning_length ; divemode string length |
4560 btfss divemode ; In divemode? | |
4561 movlw surf_warning_length ; NO - use surface string length | |
4562 call TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
560 | 4563 STRCAT_PRINT "" |
4564 bcf win_invert | |
604 | 4565 bra TFT_custview_exit3 ; and return... |
560 | 4566 |
4567 | |
4568 global TFT_display_eod_cns | |
4569 TFT_display_eod_cns: | |
604 | 4570 call TFT_warning_set_window ; set the row and column for the current message |
4571 tstfsz WREG ; is there room for the message? | |
4572 return ; NO | |
560 | 4573 call TFT_warnings_color ; switch to warnings (red) text color |
4574 STRCPY_TEXT tCNSeod ; end-of-dive CNS warning text | |
604 | 4575 movlw dm_warning_length ; divemode string length |
4576 call TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
0 | 4577 STRCAT_PRINT "" |
604 | 4578 bra TFT_custview_exit3 ; and return... |
4579 | |
4580 | |
4581 global TFT_display_ppo2_warning | |
4582 TFT_display_ppo2_warning: ; with ppO2 including attention/warning flags in hi:lo | |
4583 call TFT_warning_set_window ; set the row and column for the current message | |
4584 tstfsz WREG ; is there room for the message? | |
4585 return ; NO | |
4586 call TFT_color_code_ppo2 ; color-code output | |
4587 btfsc FLAG_bailout_mode ; in bailout? | |
4588 bra TFT_display_diluent_2 ; YES | |
582 | 4589 btfss FLAG_ccr_mode ; in CCR mode? |
4590 bra TFT_display_diluent_1 ; NO - continue with pSCR or OC | |
604 | 4591 STRCPY_TEXT tdil ; YES - print "Dil:" |
582 | 4592 bra TFT_display_diluent_3 |
560 | 4593 TFT_display_diluent_1: |
582 | 4594 btfss FLAG_pscr_mode ; in pSCR mode? |
604 | 4595 bra TFT_display_diluent_2 ; NO - continue with OC |
4596 STRCPY_TEXT tmix ; YES - print "Mix:" | |
582 | 4597 bra TFT_display_diluent_3 |
560 | 4598 TFT_display_diluent_2: |
604 | 4599 STRCPY_TEXT tppO2 ; bailout or OC mode, print "ppO2:" |
560 | 4600 TFT_display_diluent_3: |
4601 bsf leftbind | |
582 | 4602 output_16dp .3 ; x.xx bar |
4603 bcf leftbind | |
604 | 4604 movlw dm_warning_length ; divemode string length |
4605 call TFT_fillup_with_spaces ; fill up FSR2 with spaces (total string length in #WREG) | |
560 | 4606 STRCAT_PRINT "" |
604 | 4607 TFT_custview_exit3: |
560 | 4608 goto TFT_standard_color ; and return... |
582 | 4609 |
604 | 4610 |
4611 global TFT_surf_set_bearing | |
4612 TFT_surf_set_bearing: | |
4613 btfsc premenu | |
4614 return ; already shown, return | |
4615 bsf premenu ; set flag | |
4616 WIN_BOX_BLACK surf_compass_bear_row,surf_warning1_row-1, surf_compass_bear_column, surf_decotype_column-.1 ; top, bottom, left, right | |
4617 WIN_SMALL surf_compass_bear_column,surf_compass_bear_row | |
4618 WIN_COLOR color_yellow | |
4619 bsf win_invert | |
4620 STRCPY_TEXT_PRINT tSetHeading ; 7 chars | |
4621 bcf win_invert | |
4622 return | |
4623 | |
560 | 4624 ;============================================================================= |
582 | 4625 |
0 | 4626 global TFT_LogOffset_Logtitle |
4627 TFT_LogOffset_Logtitle: | |
4628 STRCPY_TEXT tLogOffset | |
4629 PUTC ":" | |
604 | 4630 call do_logoffset_common_read ; offset into lo:hi |
0 | 4631 bsf leftbind |
535
cf68fe0c3002
NEW: Show a warning for each sensor if the sensor is end-of-life after calibration (Less then 8mV in Air at sea level)
heinrichsweikamp
parents:
533
diff
changeset
|
4632 output_16_4 |
0 | 4633 bcf leftbind |
4634 PUTC " " | |
604 | 4635 return ; no "_PRINT" here... |
582 | 4636 |
560 | 4637 ;============================================================================= |
604 | 4638 ; RX Functions |
4639 | |
4640 IFDEF _rx_functions | |
4641 | |
4642 global TFT_pressures_SAC_mask ; mask for pressures and SAC | |
4643 TFT_pressures_SAC_mask: | |
4644 call TFT_divemask_color | |
4645 ; pressure reading 1 | |
4646 WIN_TINY dm_custom_tankdata_pres1_col, dm_custom_tankdata_mask_row | |
4647 movff char_I_pressure_gas+0,WREG ; =0: disabled, =1..10: gases/dils | |
4648 bcf aux_flag ; selector for disabled / need set to disabled | |
4649 call TFT_pressures_SAC_mask_helper ; print gas composition or " ---" if disabled | |
4650 ; pressure reading 2 | |
4651 WIN_TINY dm_custom_tankdata_pres2_col, dm_custom_tankdata_mask_row | |
4652 movff char_I_pressure_gas+1,WREG ; =0: need to reading 1, =1..10: gases/dils | |
4653 bsf aux_flag ; selector for disabled / need set to need | |
4654 call TFT_pressures_SAC_mask_helper ; print gas composition or "Need " if 0 | |
4655 ; SAC rate | |
4656 WIN_TINY dm_custom_tankdata_SAC_col, dm_custom_tankdata_mask_row | |
4657 STRCPY_TEXT tSAC ; "SAC | |
4658 STRCAT " (" ; ( | |
4659 STRCAT_TEXT tLitersMinute ; l/min | |
4660 STRCAT_PRINT ")" ; )" | |
4661 bra TFT_custview_exit3 ; and return... | |
4662 | |
4663 TFT_pressures_SAC_mask_helper: | |
4664 tstfsz WREG ; pressure reading assigned? | |
4665 bra TFT_dive_tankdata_mask_helper_1 ; YES - print gas composition | |
4666 btfsc aux_flag ; NO - check auxiliary flag | |
4667 bra TFT_dive_tankdata_mask_helper_2 ; 1 - print "Need " | |
4668 STRCAT_PRINT " ---" ; 0 - print " ---" | |
4669 return ; - done | |
4670 TFT_dive_tankdata_mask_helper_1: | |
4671 decf WREG,W ; (1..10) -> (0..9) | |
4672 bsf short_gas_decriptions ; just "Air", "O2" or "xx/yy" | |
4673 call gaslist_strcat_gas_WREG ; print composition of gas/dil in WREG (0..9) | |
4674 bra TFT_dive_tankdata_mask_helper_3 ; finish with adding "(bar)" | |
4675 TFT_dive_tankdata_mask_helper_2: | |
4676 STRCPY_TEXT tNeed ; "Need" | |
4677 TFT_dive_tankdata_mask_helper_3: | |
4678 STRCAT_PRINT "(bar)" | |
4679 return | |
4680 | |
4681 | |
4682 global TFT_pressures_SAC ; data for pressures and SAC | |
4683 TFT_pressures_SAC: | |
4684 ; check mode for second reading | |
4685 bcf aux_flag ; clear auxiliary flag by default (reading 2 is pressure) | |
4686 movff char_I_pressure_gas+1,WREG ; =0: need to reading 1, =1..10: gases/dils | |
4687 addlw .0 ; dummy operation to set status register flags | |
4688 btfsc STATUS,Z ; gas selected = 0 (i.e. no 2nd pressure reading) ? | |
4689 bsf aux_flag ; YES - set auxiliary flag (display position of reading 2 shall show need to reading 1) | |
4690 ; get data of reading 1 | |
4691 movff int_IO_pressure_value+0,lo ; copy pressure 1 to hi:lo | |
4692 movff int_IO_pressure_value+1,hi | |
4693 movff char_I_pressure_stat+0,ex ; copy status data | |
4694 ; pressure of reading 1 | |
4695 WIN_STD dm_custom_tankdata_pres1_col+.4,dm_custom_tankdata_row | |
4696 rcall TFT_pressures_SAC_helper_1 ; print pressure if available, else " ---" | |
4697 ; battery status of reading 1 | |
4698 WIN_SMALL dm_custom_hud_sensor1_column+.4+.36,dm_custom_tankdata_row | |
4699 rcall TFT_pressures_SAC_helper_2 ; print or clear down arrow as low bat indicator | |
4700 ; get data for reading 2 | |
4701 btfsc aux_flag ; shall reading 2 show need to reading 1 ? | |
4702 bra TFT_pressures_SAC_1 ; YES | |
4703 movff int_IO_pressure_value+2,lo ; NO - copy pressure 2 to hi:lo | |
4704 movff int_IO_pressure_value+3,hi ; | |
4705 movff char_I_pressure_stat+1,ex ; - copy status data | |
4706 bra TFT_pressures_SAC_2 | |
4707 TFT_pressures_SAC_1: | |
4708 movff int_O_pressure_need+0,lo ; YES - copy need to pressure 1 to hi:lo | |
4709 movff int_O_pressure_need+1,hi ; | |
4710 clrf ex ; - set status data to 0 | |
4711 TFT_pressures_SAC_2: | |
4712 ; pressure of reading 2 | |
4713 WIN_STD dm_custom_tankdata_pres2_col+.2,dm_custom_tankdata_row | |
4714 rcall TFT_pressures_SAC_helper_1 ; print pressure if available, else " ---" | |
4715 ; battery status of reading 2 | |
4716 WIN_SMALL dm_custom_tankdata_pres2_col+.2+.36,dm_custom_tankdata_row | |
4717 rcall TFT_pressures_SAC_helper_2 ; print or clear down arrow as low bat indicator | |
4718 ; SAC | |
4719 WIN_STD dm_custom_tankdata_SAC_col+.6,dm_custom_tankdata_row | |
4720 movff int_O_sac_rate+0,lo ; copy SAC rate to hi:lo | |
4721 movff int_O_sac_rate+1,hi | |
4722 btfsc hi,int_not_avail_flag ; SAC rate available? | |
4723 bra TFT_pressures_SAC_4 ; NO - print " --.-" | |
4724 call TFT_color_code_tank_pres_sac ; color-code the output | |
4725 output_16_3 ; print as xxx | |
4726 PUTC " " ; print a dummy char to have the string termination at the correct place | |
4727 movff buffer+.2,buffer+.3 ; move the decimal digit one position to the right | |
4728 movlw "." ; load coding of a decimal point | |
4729 movff WREG,buffer+.2 ; place it before decimal digit | |
4730 movlw " " ; load coding of a space character | |
4731 movff buffer+.1,up ; get the character in front of the decimal point | |
4732 cpfseq up ; is it a space? | |
4733 bra TFT_pressures_SAC_3 ; NO - continue | |
4734 movlw "0" ; YES - load coding of a zero | |
4735 movff WREG,buffer+.1 ; - place a zero in front of the decimal point | |
4736 TFT_pressures_SAC_3: | |
4737 STRCAT_PRINT "" ; dump buffer to screen | |
4738 bra TFT_custview_exit3 ; and return... | |
4739 TFT_pressures_SAC_4: | |
4740 call TFT_disabled_color | |
4741 STRCAT_PRINT "--.-" ; output for no SAC data available | |
4742 bra TFT_custview_exit3 ; and return... | |
4743 | |
4744 TFT_pressures_SAC_helper_1: | |
4745 btfss hi,int_not_avail_flag ; pressure available? | |
4746 bra TFT_pressures_SAC_helper_1a ; YES - print pressure | |
4747 call TFT_disabled_color ; NO - use disabled color as default | |
4748 btfsc ex,char_transmitter_lost ; - transmitter lost? | |
4749 call TFT_attention_color ; YES - use attention color | |
4750 STRCAT_PRINT " ---" ; - print " ---" | |
4751 return | |
4752 TFT_pressures_SAC_helper_1a: | |
4753 btfsc hi,int_warning_flag ; out of range (signaled by warning flag)? | |
4754 bra TFT_pressures_SAC_helper_1c ; YES - special treatment | |
4755 call TFT_color_code_tank_pres_sac ; NO - color-code the output | |
4756 bsf ignore_digit5 ; - no 0.1 bar (flag will be cleared by output_16) | |
4757 movf lo,W ; | |
4758 iorwf hi,W ; - pressure value = 0 ? | |
4759 bnz TFT_pressures_SAC_helper_1b ; NO - print value | |
4760 STRCPY_PRINT " 0" ; YES - print a zero manually | |
4761 return ; - done | |
4762 TFT_pressures_SAC_helper_1b: | |
4763 output_16 ; print hi:lo | |
4764 STRCAT_PRINT "" ; dump buffer to screen | |
4765 return ; done | |
4766 TFT_pressures_SAC_helper_1c: | |
4767 call TFT_color_code_tank_pres_sac ; color-code the output (clears all flags) | |
4768 STRCPY_PRINT ">400" ; print ">400" | |
4769 return ; done | |
4770 | |
4771 TFT_pressures_SAC_helper_2: | |
4772 btfss ex,char_transmitter_low_bat ; low battery flag set? | |
4773 bra TFT_pressures_SAC_helper_2a ; NO - wipe out down arrow (low bat indicator) | |
4774 call TFT_attention_color ; YES - use attention color | |
4775 STRCPY_PRINT "\xb8" ; - print down arrow as bat low indication | |
4776 return | |
4777 TFT_pressures_SAC_helper_2a: | |
4778 STRCPY_PRINT " " ; wipe out down arrow (low bat indicator) | |
4779 return | |
4780 | |
4781 | |
4782 global TFT_menu_tank_pres | |
4783 TFT_menu_tank_pres: ; imprinting function for main menu / tank setup | |
4784 call TFT_standard_color | |
4785 ; get ID | |
4786 lfsr FSR1,opt_transmitter_id_1 ; load base address of opt_transmitter_id | |
4787 movf gaslist_gas,W ; get current gas | |
4788 rlncf WREG,W ; multiply by 2 because IDs are 2 byte in size | |
4789 movff PLUSW1,lo ; copy opt_transmitter_id+0[gaslist_gas] to lo | |
4790 incf WREG,W ; increment index | |
4791 movff PLUSW1,hi ; copy opt_transmitter_id+1[gaslist_gas] to hi | |
4792 ; show pressure | |
4793 WIN_SMALL .90, .61 ; column, row (+/- 27 per row) | |
4794 call get_pres_by_transmitter_id ; get pressure into hi:lo | |
4795 tstfsz WREG ; do we have valid tank data (WREG=0) ? | |
4796 bra TFT_menu_tank_pres_1 ; NO - transmitter not found | |
4797 call TFT_color_code_tank_pres_sac ; set output color according to flags | |
4798 bsf ignore_digit5 ; no 0.1 bar (flag will be cleared by output_16) | |
4799 output_16 | |
4800 bra TFT_menu_tank_pres_2 | |
4801 TFT_menu_tank_pres_1: | |
4802 call TFT_disabled_color | |
4803 STRCAT " ---" ; output for no pressure data available | |
4804 TFT_menu_tank_pres_2: | |
4805 STRCAT_TEXT_PRINT tbar ; " bar" | |
4806 bra TFT_custview_exit3 ; and return... | |
4807 | |
4808 | |
4809 global TFT_surface_tank_pres | |
4810 TFT_surface_tank_pres: ; show pressure reading above surface pressure | |
4811 WIN_SMALL surf_decotype_column+.6,surf_decotype_row+.30+.47 | |
4812 movff int_IO_pressure_value+0,lo ; copy pressure from 1st reading, low byte | |
4813 movff int_IO_pressure_value+1,hi ; copy pressure from 1st reading, high byte | |
4814 btfss hi,int_not_avail_flag ; pressure reading 1 available? | |
4815 bra TFT_surface_tank_pres_0 ; YES | |
4816 movff int_IO_pressure_value+2,lo ; NO - copy pressure from 2nd reading, low byte | |
4817 movff int_IO_pressure_value+3,hi ; - copy pressure from 2nd reading, high byte | |
4818 btfsc hi,int_not_avail_flag ; - pressure reading 2 available? | |
4819 bra TFT_surface_tank_pres_1 ; NO - show not avail message | |
4820 TFT_surface_tank_pres_0: ; YES - show pressure | |
4821 call TFT_color_code_tank_pres_sac ; set output color according to flags | |
4822 bsf ignore_digit5 ; no 0.1 bar (flag will be cleared by output_16) | |
4823 output_16 | |
4824 STRCAT_PRINT "" | |
4825 bra TFT_surface_tank_pres_2 | |
4826 TFT_surface_tank_pres_1: | |
4827 call TFT_disabled_color | |
4828 STRCAT_PRINT " ---" ; output for no pressure data available | |
4829 TFT_surface_tank_pres_2: | |
4830 WIN_SMALL surf_decotype_column+.38,surf_decotype_row+.30+.47 | |
4831 call TFT_divemask_color | |
4832 STRCAT_PRINT "bar" ; can not use tbar because it has a leading space | |
4833 bra TFT_custview_exit3 ; and return... | |
4834 | |
4835 | |
4836 global TFT_surface_tankdata | |
4837 TFT_surface_tankdata: | |
4838 lfsr FSR1,rx_buffer ; load base address of RX buffer | |
4839 ; bra TFT_surface_tankdata_debug ; comment in for +++ debug version +++ | |
4840 WIN_SMALL surf_customtext_column,surf_customtext_row1 | |
4841 rcall TFT_surface_tankdata_print | |
4842 WIN_SMALL surf_customtext_column,surf_customtext_row2 | |
4843 rcall TFT_surface_tankdata_print | |
4844 WIN_SMALL surf_customtext_column,surf_customtext_row3 | |
4845 rcall TFT_surface_tankdata_print | |
4846 WIN_SMALL surf_customtext_column,surf_customtext_row4 | |
4847 rcall TFT_surface_tankdata_print | |
4848 WIN_SMALL surf_customtext_column,surf_customtext_row5 | |
4849 rcall TFT_surface_tankdata_print | |
4850 return | |
4851 | |
4852 TFT_surface_tankdata_print: ; max 12 char | |
4853 call TFT_standard_color | |
4854 movff POSTINC1,hi ; ID high (+0) | |
4855 movff POSTINC1,lo ; ID low (+1) | |
4856 tstfsz hi ; ID high = 0 ? | |
4857 bra TFT_surface_tankdata_print_1 ; NO - slot in use | |
4858 tstfsz lo ; ID low = 0? | |
4859 bra TFT_surface_tankdata_print_1 ; NO - slot in use | |
4860 STRCAT_PRINT "---- " ; YES - mark as unused and clear rest of line from previous remains | |
4861 movf POSTINC1,W ; - dummy read (+2) to advance index | |
4862 movf POSTINC1,W ; - dummy read (+3) to advance index | |
4863 movf POSTINC1,W ; - dummy read (+4) to advance index | |
4864 bra TFT_surface_tankdata_print_3 | |
4865 TFT_surface_tankdata_print_1: | |
4866 movf hi,W ; copy ID high to WREG | |
4867 output_hex ; 2 chars | |
4868 movf lo,W ; copy ID low to WREG | |
4869 output_hex ; 2 chars (4 in total) | |
4870 movff POSTINC1,hi ; pressure high (+2) | |
4871 movff POSTINC1,lo ; pressure low (+3) | |
4872 call TFT_color_code_tank_pres_sac ; needed to clear the status flags before output | |
4873 bsf ignore_digit5 ; no 0.1 bar (flag will be cleared by output_16) | |
4874 output_16 ; 4 chars (8 in total) | |
4875 PUTC " " ; 1 char (9 in total) | |
4876 movf POSTINC1,W ; status (+4) | |
4877 andlw .7 ; mask out battery voltage | |
4878 bnz TFT_surface_tankdata_2 ; branch if battery is not completely drained | |
4879 call TFT_warnings_color ; output in red | |
4880 STRCAT_PRINT "XXX" ; "XXX" for low | |
4881 bra TFT_surface_tankdata_print_3 | |
4882 TFT_surface_tankdata_2: | |
4883 addlw .28 ; add offset of 2.8 Volt | |
4884 movff WREG,lo ; | |
4885 output_99 ; 2 chars (11 in total) | |
4886 PUTC " " ; dummy char 1 char (12 in total) | |
4887 movff buffer+.10,buffer+.11 ; move decimal digit of battery voltage one position to the right | |
4888 movlw "." ; decimal point | |
4889 movff WREG,buffer+.10 ; place it before decimal digit | |
4890 STRCAT_PRINT "" ; print buffer to screen | |
4891 TFT_surface_tankdata_print_3: | |
4892 movf POSTINC1,W ; dummy read (+5) to advance index | |
4893 return | |
4894 | |
4895 | |
621 | 4896 TFT_surface_tankdata_debug: ; surface custom view debug output |
4897 call TFT_standard_color | |
4898 WIN_TINY surf_customtext_column,surf_customtext_row1+.14*0 | |
4899 rcall TFT_surface_tankdata_debug_print | |
4900 WIN_TINY surf_customtext_column,surf_customtext_row1+.14*1 | |
4901 rcall TFT_surface_tankdata_debug_print | |
4902 WIN_TINY surf_customtext_column,surf_customtext_row1+.14*2 | |
4903 rcall TFT_surface_tankdata_debug_print | |
4904 WIN_TINY surf_customtext_column,surf_customtext_row1+.14*3 | |
4905 rcall TFT_surface_tankdata_debug_print | |
4906 WIN_TINY surf_customtext_column,surf_customtext_row1+.14*4 | |
4907 rcall TFT_surface_tankdata_debug_print | |
4908 WIN_TINY surf_customtext_column,surf_customtext_row1+.14*5 | |
4909 rcall TFT_surface_tankdata_debug_print | |
4910 WIN_TINY surf_customtext_column,surf_customtext_row1+.14*6 | |
4911 rcall TFT_surface_tankdata_debug_print | |
4912 WIN_TINY surf_customtext_column,surf_customtext_row1+.14*7 | |
4913 rcall TFT_surface_tankdata_debug_print | |
4914 return | |
4915 | |
4916 TFT_surface_tankdata_debug_print: | |
4917 movff POSTINC1,hi ; ID high (+0) | |
4918 movff POSTINC1,lo ; ID low (+1) | |
4919 output_16 | |
4920 PUTC "," | |
4921 movff POSTINC1,hi ; pressure high (+2) | |
4922 movff POSTINC1,lo ; pressure low (+3) | |
4923 call TFT_color_code_tank_pres_sac; needed to clear the status flags before output | |
4924 output_16 | |
4925 PUTC "," | |
4926 movff POSTINC1,lo ; status (+4) | |
4927 output_8 | |
4928 PUTC "," | |
4929 movff POSTINC1,lo ; date (+5) | |
4930 output_8 | |
4931 STRCAT_PRINT "" | |
4932 return | |
604 | 4933 ENDIF |
4934 | |
4935 ;============================================================================= | |
582 | 4936 |
0 | 4937 global adjust_depth_with_salinity |
582 | 4938 global adjust_depth_with_salinity_log |
0 | 4939 adjust_depth_with_salinity: ; computes salinity setting into lo:hi [mbar] |
604 | 4940 btfsc simulatormode_active ; do not apply salinity in simulator mode |
0 | 4941 return |
582 | 4942 movff opt_salinity,WREG ; 0-5% |
560 | 4943 adjust_depth_with_salinity_log: ; computes salinity setting (FROM WREG!) into lo:hi [mbar] |
582 | 4944 addlw d'100' ; 1.00kg/l |
4945 movwf up | |
4946 | |
0 | 4947 movlw d'105' ; 105% ? |
604 | 4948 cpfslt up ; salinity upper limit |
4949 return ; out of limit, do not adjust lo:hi | |
0 | 4950 movlw d'99' ; 99% ? |
604 | 4951 cpfsgt up ; salinity lower limit |
4952 return ; out of limit, do not adjust lo:hi | |
0 | 4953 |
4954 movff lo,xA+0 | |
4955 movff hi,xA+1 | |
4956 | |
604 | 4957 movlw d'102' ; 0.98 bar / 10 meter |
0 | 4958 movwf xB+0 |
4959 clrf xB+1 | |
604 | 4960 call mult16x16 ; xC:4 = xA:2 * xB:2 |
4961 movff up,xB+0 ; salinity | |
0 | 4962 clrf xB+1 |
604 | 4963 call div32x16 ; xC:4 = xC:4 / xB:2 with xA as remainder |
0 | 4964 movff xC+0,lo |
604 | 4965 movff xC+1,hi ; copy corrected values back to lo and hi |
0 | 4966 return |
4967 | |
560 | 4968 ;============================================================================= |
582 | 4969 |
604 | 4970 global convert_mbar_to_feet |
4971 convert_mbar_to_feet: ; convert value in hi:lo from mbar to feet | |
0 | 4972 movff lo,xA+0 |
4973 movff hi,xA+1 | |
4974 | |
582 | 4975 movlw LOW d'328' ; 328feet/100m |
0 | 4976 movwf xB+0 |
582 | 4977 movlw HIGH d'328' |
0 | 4978 movwf xB+1 |
4979 | |
582 | 4980 call mult16x16 ; xA*xB=xC (lo:hi * 328) |
4981 | |
4982 movlw d'50' ; round up | |
0 | 4983 addwf xC+0,F |
4984 movlw 0 | |
4985 addwfc xC+1,F | |
4986 addwfc xC+2,F | |
4987 addwfc xC+3,F | |
4988 | |
582 | 4989 movlw LOW .10000 |
4990 movwf xB+0 | |
4991 movlw HIGH .10000 | |
4992 movwf xB+1 | |
4993 | |
4994 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
0 | 4995 |
4996 movff xC+0,lo | |
582 | 4997 movff xC+1,hi ; restore lo and hi with updated value |
0 | 4998 return |
4999 | |
560 | 5000 ;============================================================================= |
5001 | |
604 | 5002 global convert_celsius_to_fahrenheit ; convert value in lo:hi from Celsius to Fahrenheit |
5003 convert_celsius_to_fahrenheit: ; convert value in lo:hi from Celsius to Fahrenheit | |
582 | 5004 movff lo,xA+0 ; temperature in 1/10 of °C |
5005 movff hi,xA+1 | |
5006 | |
5007 movlw LOW d'1000' ; offset °C value by 1000 to get out of any negative numbers | |
5008 addwf xA+0,F | |
5009 movlw HIGH d'1000' | |
5010 addwfc xA+1,F | |
5011 | |
5012 movlw d'18' ; adjust scaling: 1°C = 1.8°F | |
5013 movwf xB+0 | |
5014 clrf xB+1 | |
5015 | |
5016 call mult16x16 ; xA*xB=xC (lo:hi * 18) | |
5017 | |
5018 movlw d'10' | |
5019 movwf xB+0 | |
5020 clrf xB+1 | |
5021 | |
5022 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
5023 | |
5024 movlw LOW d'1480' ; adjust offset: subtract above offset of 1000 * 1.8 = 1800 now and add 320 => subtract 1480 | |
5025 subwf xC+0,F | |
5026 movlw HIGH d'1480' | |
5027 subwfb xC+1,F | |
5028 | |
5029 movff xC+0,lo | |
5030 movff xC+1,hi ; restore lo and hi with updated value | |
5031 return | |
560 | 5032 |
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
477
diff
changeset
|
5033 ;============================================================================= |
560 | 5034 |
0 | 5035 END |