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