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