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