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