Mercurial > public > hwos_code
annotate src/tft_outputs.asm @ 48:7c7d7644ca37
Time and Date in normal (Not tiny) font
author | heinrichsweikamp |
---|---|
date | Mon, 23 Sep 2013 20:47:18 +0200 |
parents | 92aa5238a99c |
children | ec4d8503ec45 |
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: | |
48 | 838 WIN_SMALL surf_clock_column,surf_clock_row |
0 | 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 | |
42 | 1152 STRCPY_TEXT tGF ; GF: |
41 | 1153 movff char_I_GF_Low_percentage,lo |
1154 output_99x | |
42 | 1155 STRCAT "/" |
41 | 1156 movff char_I_GF_High_percentage,lo |
1157 output_99x | |
42 | 1158 STRCAT_PRINT "" |
41 | 1159 ;bra TFT_surface_decosettings2 |
1160 TFT_surface_decosettings2: | |
1161 ; FTTS | |
1162 WIN_TOP surf_gaslist_row+(surf_gaslist_spacing*.2) | |
1163 lfsr FSR2,buffer | |
1164 STRCPY_TEXT tFTTSMenu | |
1165 movff char_I_extra_time,lo | |
1166 bsf leftbind | |
1167 output_8 | |
1168 STRCAT_TEXT_PRINT tMinutes | |
1169 | |
1170 ; Last Stop | |
1171 WIN_TOP surf_gaslist_row+(surf_gaslist_spacing*.3) | |
1172 lfsr FSR2,buffer | |
1173 STRCPY_TEXT tLastDecostop | |
1174 movff char_I_depth_last_deco,lo | |
1175 output_8 | |
1176 STRCAT_TEXT_PRINT tMeters | |
1177 | |
1178 ; Salinity | |
1179 WIN_TOP surf_gaslist_row+(surf_gaslist_spacing*.4) | |
1180 lfsr FSR2,buffer | |
1181 STRCPY_TEXT tDvSalinity | |
1182 movff opt_salinity,lo | |
1183 output_8 | |
1184 bcf leftbind | |
1185 STRCAT_TEXT_PRINT tPercent | |
1186 return ; Done. | |
0 | 1187 |
1188 global TFT_surface_compass_mask | |
1189 TFT_surface_compass_mask: | |
1190 WIN_SMALL surf_compass_mask_column,surf_compass_mask_row | |
1191 call TFT_standard_color | |
1192 STRCPY_TEXT_PRINT tHeading ; Heading: | |
1193 return | |
1194 | |
1195 global TFT_dive_compass_mask | |
1196 TFT_dive_compass_mask: | |
1197 WIN_TINY dive_compass_mask_column,dive_compass_mask_row | |
1198 call TFT_divemask_color | |
1199 STRCPY_TEXT_PRINT tHeading ; Heading: | |
1200 return | |
1201 | |
1202 | |
1203 global TFT_surface_compass_heading | |
1204 TFT_surface_compass_heading: | |
1205 rcall compass_heading_common | |
16
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1206 btfsc compass_fast_mode ; In fast mode? |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1207 bra TFT_surface_compass_heading2 ; Yes |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1208 ; No, update 1/second max. |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1209 movff sensor_state_counter,lo |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1210 movlw .6 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1211 cpfsgt lo |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1212 return |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1213 TFT_surface_compass_heading2: |
0 | 1214 WIN_STD surf_compass_head_column,surf_compass_head_row |
1215 call TFT_standard_color | |
1216 lfsr FSR2,buffer | |
29
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1217 ; movff compass_heading+0,lo |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1218 ; movff compass_heading+1,hi |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1219 ; 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
|
1220 ; output_8 |
29
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1221 ; PUTC " " |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1222 ; movff hi,lo |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1223 ; output_8 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1224 ; PUTC " " |
0 | 1225 movff compass_heading+0,lo |
1226 movff compass_heading+1,hi | |
1227 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required | |
1228 bsf leftbind | |
1229 output_16 | |
1230 bcf leftbind | |
29
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1231 STRCAT "° " |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1232 rcall tft_compass_cardinal ; Add cardinal and ordinal to POSTINC2 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1233 STRCAT_PRINT " " |
0 | 1234 return |
1235 | |
1236 global TFT_dive_compass_heading | |
1237 TFT_dive_compass_heading: | |
1238 rcall compass_heading_common | |
16
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1239 btfsc compass_fast_mode ; In fast mode? |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1240 bra TFT_dive_compass_heading2 ; Yes |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1241 ; No, update 1/second max. |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1242 movff sensor_state_counter,lo |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1243 movlw .6 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1244 cpfsgt lo |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1245 return |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1246 TFT_dive_compass_heading2: |
0 | 1247 WIN_STD dive_compass_head_column,dive_compass_head_row |
1248 call TFT_standard_color | |
1249 lfsr FSR2,buffer | |
1250 movff compass_heading+0,lo | |
1251 movff compass_heading+1,hi | |
1252 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required | |
1253 bsf leftbind | |
1254 output_16 | |
1255 bcf leftbind | |
29
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1256 STRCAT "° " |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1257 rcall tft_compass_cardinal ; Add cardinal and ordinal to POSTINC2 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1258 STRCAT_PRINT " " |
0 | 1259 return |
1260 | |
29
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1261 tft_compass_cardinal: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1262 btfsc hi,0 ; Heading >255°? |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1263 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
|
1264 ; 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
|
1265 movlw .23 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1266 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1267 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1268 bra tft_compass_cardinal_N |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1269 movlw .68 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1270 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1271 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1272 bra tft_compass_cardinal_NE |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1273 movlw .113 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1274 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1275 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1276 bra tft_compass_cardinal_E |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1277 movlw .158 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1278 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1279 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1280 bra tft_compass_cardinal_SE |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1281 movlw .203 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1282 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1283 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1284 bra tft_compass_cardinal_S |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1285 movlw .248 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1286 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1287 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1288 bra tft_compass_cardinal_SW |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1289 bra tft_compass_cardinal_W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1290 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1291 tft_compass_cardinal2: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1292 movlw .37 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1293 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1294 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1295 bra tft_compass_cardinal_W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1296 movlw .82 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1297 subwf lo,W |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1298 btfss STATUS,C |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1299 bra tft_compass_cardinal_NW |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1300 bra tft_compass_cardinal_N |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1301 |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1302 tft_compass_cardinal_N: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1303 STRCAT_TEXT tN |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1304 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1305 tft_compass_cardinal_NE: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1306 STRCAT_TEXT tNE |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1307 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1308 tft_compass_cardinal_E: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1309 STRCAT_TEXT tE |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1310 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1311 tft_compass_cardinal_SE: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1312 STRCAT_TEXT tSE |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1313 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1314 tft_compass_cardinal_S: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1315 STRCAT_TEXT tS |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1316 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1317 tft_compass_cardinal_SW: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1318 STRCAT_TEXT tSW |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1319 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1320 tft_compass_cardinal_W: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1321 STRCAT_TEXT tW |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1322 return |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1323 tft_compass_cardinal_NW: |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1324 STRCAT_TEXT tNW |
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
24
diff
changeset
|
1325 return |
0 | 1326 |
1327 compass_heading_common: | |
1328 extern compass | |
1329 extern compass_filter | |
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 rcall TFT_get_compass | |
1336 call compass ; Do compass corrections. | |
1337 banksel common | |
16
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1338 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1339 ; More then compass_fast_treshold? |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1340 movff compass_heading_old+0,sub_a+0 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1341 movff compass_heading_old+1,sub_a+1 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1342 movff compass_heading+0,sub_b+0 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1343 movff compass_heading+1,sub_b+1 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1344 call sub16 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1345 movff compass_heading+0,compass_heading_old+0 ; copy new "old" |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1346 movff compass_heading+1,compass_heading_old+1 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1347 |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1348 bcf compass_fast_mode |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1349 movlw compass_fast_treshold |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1350 cpfslt sub_c+0 ; > compass_fast_treshold? |
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
13
diff
changeset
|
1351 bsf compass_fast_mode ; Yes! |
0 | 1352 return |
1353 | |
1354 TFT_get_compass: | |
1355 call speed_normal | |
1356 call I2C_RX_compass ; Test Compass | |
1357 call I2C_RX_accelerometer ; Test Accelerometer | |
1358 call compass_filter ; Filter Raw compass + accel readings. | |
1359 banksel common | |
1360 return | |
1361 | |
1362 global TFT_debug_output | |
1363 TFT_debug_output: | |
1364 return | |
1365 WIN_TINY .107,.0 | |
1366 call TFT_standard_color | |
1367 lfsr FSR2,buffer | |
1368 movff CCPR1L,lo | |
1369 output_8 | |
1370 STRCAT_PRINT "" | |
1371 return | |
1372 | |
1373 global TFT_ftts | |
1374 TFT_ftts: | |
1375 movff char_I_extra_time,lo | |
1376 tstfsz lo | |
1377 bra $+4 | |
1378 return ; char_I_extra_time=0, return. | |
1379 incf warning_counter,F ; increase counter | |
1380 call TFT_warning_set_window ; Sets the row and column for the current warning | |
1381 tstfsz WREG ; Is there room for the warning? | |
1382 return ; No | |
1383 movff char_I_extra_time,lo | |
1384 STRCPY "@+" | |
1385 bsf leftbind | |
1386 output_8 | |
1387 PUTC ":" | |
1388 movff int_O_extra_ascenttime+0,lo | |
1389 movff int_O_extra_ascenttime+1,hi | |
1390 movf lo,W | |
1391 iorwf hi,W ; extra_ascenttime == 0 ? | |
1392 bz TFT_ftts2 ; No deco | |
1393 movf lo,W ; extra_ascenttime == 0xFFFF ? | |
1394 andwf hi,W | |
1395 incf WREG,w | |
1396 bz TFT_ftts2 ; Wait... | |
1397 output_16 | |
1398 bcf leftbind | |
1399 PUTC "'" | |
1400 movlw warning_length ; Divemode string length | |
1401 call TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
1402 STRCAT_PRINT "" | |
1403 return | |
1404 | |
1405 TFT_ftts2: | |
1406 STRCAT "---" | |
1407 bcf leftbind | |
1408 movlw warning_length ; Divemode string length | |
1409 call TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
1410 STRCAT_PRINT "" | |
1411 return | |
1412 | |
1413 | |
1414 ;============================================================================= | |
1415 | |
1416 global TFT_temp_surfmode | |
1417 TFT_temp_surfmode: | |
1418 WIN_SMALL surf_temp_column,surf_temp_row | |
1419 call TFT_standard_color | |
1420 | |
1421 SAFE_2BYTE_COPY temperature, lo | |
1422 | |
1423 TSTOSS opt_units ; 0=°C, 1=°F | |
1424 bra TFT_temp_surfmode_metric | |
1425 | |
1426 ;TFT_temp_surfmode_imperial: | |
1427 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required | |
1428 call convert_celsius_to_fahrenheit ; convert value in lo:hi from celsius to fahrenheit | |
1429 lfsr FSR2,buffer ; Overwrite "-" | |
1430 bsf ignore_digit5 ; Full degrees only | |
1431 output_16 | |
1432 STRCAT_PRINT "" | |
1433 call TFT_divemask_color | |
1434 WIN_SMALL surf_temp_column+4*8,surf_temp_row | |
1435 STRCPY_PRINT "°F" | |
1436 return | |
1437 | |
1438 TFT_temp_surfmode_metric: | |
1439 lfsr FSR2,buffer | |
1440 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required | |
1441 movlw d'3' | |
1442 movwf ignore_digits | |
1443 bsf ignore_digit5 ; Full degrees only | |
1444 output_16 | |
1445 | |
13
2af021c66b0d
fix negative temperature display in surfacemode
heinrichsweikamp
parents:
11
diff
changeset
|
1446 ; read-back the buffer+4 |
2af021c66b0d
fix negative temperature display in surfacemode
heinrichsweikamp
parents:
11
diff
changeset
|
1447 movff buffer+4,lo |
0 | 1448 movlw " " ; Space |
1449 cpfseq lo ; Was it a space (between +1°C and -1°C)? | |
1450 bra TFT_temp_surfmode1 ; No. | |
1451 movlw "0" ; Yes, print manual zero | |
1452 movff WREG,buffer+3 | |
1453 bra TFT_temp_surfmode2 | |
1454 TFT_temp_surfmode1: | |
1455 ; Test if output was negative (Flag set in TFT_convert_signed_16bit) | |
1456 btfss neg_flag ; Negative temperature? | |
1457 bra TFT_temp_surfmode3 ; No, continue | |
1458 ; Yes, negative temperature! | |
1459 movff buffer+3,buffer+2 ; remove two spaces manually | |
1460 movff buffer+4,buffer+3 | |
1461 TFT_temp_surfmode2: | |
1462 movlw 0x00 | |
1463 movff WREG,buffer+4 | |
1464 TFT_temp_surfmode3: | |
1465 STRCAT_PRINT "" | |
1466 call TFT_divemask_color | |
1467 WIN_SMALL surf_temp_column+4*8,surf_temp_row | |
1468 STRCPY_PRINT "°C" | |
1469 return | |
1470 | |
1471 ;============================================================================= | |
1472 global TFT_divemode_menu_cursor | |
1473 TFT_divemode_menu_cursor: | |
1474 WIN_BOX_BLACK divemode_menu_item1_row,divemode_menu_item3_row+.24,divemode_menu_item1_column-.8,divemode_menu_item1_column-.1 | |
1475 WIN_BOX_BLACK divemode_menu_item4_row,divemode_menu_item6_row+.24,divemode_menu_item4_column-.8,divemode_menu_item4_column-.1 | |
1476 call TFT_standard_color | |
1477 | |
1478 movlw divemode_menu_item1_column-.8 | |
1479 btfsc menupos,2 ; >3? | |
1480 movlw divemode_menu_item4_column-.8 ; Yes | |
1481 movff WREG,win_leftx2 | |
1482 | |
1483 movff menupos,lo ; Copy menu pos | |
1484 movlw divemode_menu_item6_row | |
1485 dcfsnz lo,F | |
1486 movlw divemode_menu_item1_row | |
1487 dcfsnz lo,F | |
1488 movlw divemode_menu_item2_row | |
1489 dcfsnz lo,F | |
1490 movlw divemode_menu_item3_row | |
1491 dcfsnz lo,F | |
1492 movlw divemode_menu_item4_row | |
1493 dcfsnz lo,F | |
1494 movlw divemode_menu_item5_row | |
1495 movff WREG,win_top | |
1496 movlw FT_SMALL | |
1497 movff WREG,win_font | |
1498 STRCPY_PRINT "\xb7" ; print cursor | |
1499 return | |
1500 | |
1501 global TFT_temp_divemode | |
1502 TFT_temp_divemode: | |
1503 btfsc divemode_menu ; Is the dive mode menu shown? | |
1504 return ; Yes, return | |
1505 btfsc blinking_better_gas ; blinking better Gas? | |
1506 return ; Yes, no update of temperature now | |
1507 ; temperature | |
1508 WIN_SMALL dive_temp_column,dive_temp_row | |
1509 call TFT_standard_color | |
1510 bsf leftbind | |
1511 | |
1512 SAFE_2BYTE_COPY temperature, lo | |
1513 TSTOSS opt_units ; 0=°C, 1=°F | |
1514 bra TFT_temp_divemode_metric | |
1515 | |
1516 ;TFT_temp_divemode_imperial: | |
1517 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required | |
1518 call convert_celsius_to_fahrenheit ; convert value in lo:hi from celsius to fahrenheit | |
1519 lfsr FSR2,buffer ; Overwrite "-" (There won't be less then -18°C underwater...) | |
1520 bsf ignore_digit5 ; Full degrees only | |
1521 output_16 | |
1522 STRCAT_TEXT tLogTunitF | |
1523 TFT_temp_divemode_common: | |
1524 bcf leftbind | |
1525 movlw .4 ; limit to three chars | |
1526 call TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
1527 STRCAT_PRINT "" | |
1528 return ; Done. | |
1529 | |
1530 TFT_temp_divemode_metric: | |
1531 lfsr FSR2,buffer | |
1532 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required | |
1533 movlw d'3' | |
1534 movwf ignore_digits | |
1535 bsf ignore_digit5 ; Full degrees only | |
1536 output_16 | |
1537 STRCAT_TEXT tLogTunitC | |
1538 bra TFT_temp_divemode_common ; Done. | |
1539 | |
1540 TFT_active_setpoint: ; Show setpoint | |
1541 WIN_STD active_gas_column,active_gas_row | |
1542 call TFT_standard_color | |
1543 btfsc is_bailout ; =1: Bailout | |
1544 bra TFT_active_setpoint_bail ; Show "Bailout" instead of Setpoint | |
1545 | |
1546 lfsr FSR2,buffer | |
1547 movff char_I_const_ppO2,lo | |
1548 TFT_color_code warn_ppo2_hud ; With ppO2 [cbar] in lo | |
1549 clrf hi | |
1550 bsf leftbind | |
1551 output_16dp d'3' | |
1552 bcf leftbind | |
1553 STRCAT_TEXT tbar | |
1554 TSTOSS opt_ccr_mode ; =0: Fixed SP, =1: Sensor | |
1555 bra $+4 | |
1556 PUTC "*" | |
1557 STRCAT_PRINT "" | |
1558 | |
1559 TFT_active_setpoint_diluent: | |
1560 call TFT_standard_color | |
1561 WIN_SMALL active_dil_column,active_dil_row | |
1562 movff char_I_O2_ratio,lo ; lo now stores O2 in % | |
1563 movff char_I_He_ratio,hi ; hi now stores He in % | |
1564 rcall TFT_show_dil_divemode2 ; Show diluent (Non-Inverted in all cases) | |
1565 | |
1566 btfss better_gas_available ; =1: A better gas is available and a gas change is advised in divemode | |
1567 return ; Done. | |
1568 btg blinking_better_gas ; Toggle blink bit... | |
1569 btfss blinking_better_gas ; blink now? | |
1570 return ; No, Done. | |
1571 | |
1572 movlw color_yellow ; Blink in yellow | |
1573 call TFT_set_color | |
1574 WIN_SMALL_INVERT active_dil_column,active_dil_row | |
1575 movff char_I_O2_ratio,lo ; lo now stores O2 in % | |
1576 movff char_I_He_ratio,hi ; hi now stores He in % | |
1577 rcall TFT_show_dil_divemode2 ; Show gas | |
1578 WIN_INVERT .0 ; Init new Wordprocessor | |
1579 call TFT_standard_color | |
1580 return ; Done. | |
1581 | |
1582 TFT_show_dil_divemode2: | |
1583 lfsr FSR2,buffer | |
1584 call customview_show_mix ; Put "Nxlo", "Txlo/hi", "Air" or "O2" into Postinc2 | |
1585 STRCAT_PRINT "" | |
1586 return | |
1587 | |
1588 TFT_active_setpoint_bail: | |
1589 STRCPY_TEXT_PRINT tDiveBailout ; Bailout | |
1590 bra TFT_active_setpoint_diluent | |
1591 | |
1592 global TFT_active_gas_divemode | |
1593 TFT_active_gas_divemode: ; Display gas/Setpoint | |
1594 btfsc divemode_menu ; Is the dive mode menu shown? | |
1595 return ; Yes, return | |
1596 btfsc FLAG_apnoe_mode ; Ignore in Apnoe mode | |
1597 return | |
1598 btfsc FLAG_ccr_mode ; in CCR mode | |
1599 bra TFT_active_setpoint ; Yes, show setpoint | |
1600 | |
1601 call TFT_standard_color | |
1602 WIN_STD active_gas_column,active_gas_row | |
1603 movff char_I_O2_ratio,lo ; lo now stores O2 in % | |
1604 movff char_I_He_ratio,hi ; hi now stores He in % | |
1605 rcall TFT_active_gas_divemode2 ; Show gas (Non-Inverted in all cases) | |
1606 btfss better_gas_available ; =1: A better gas is available and a gas change is advised in divemode | |
1607 return ; Done. | |
1608 | |
1609 btg blinking_better_gas ; Toggle blink bit... | |
1610 btfss blinking_better_gas ; blink now? | |
1611 return ; No, Done. | |
1612 movlw color_yellow ; Blink in yellow | |
1613 call TFT_set_color | |
1614 WIN_STD_INVERT active_gas_column,active_gas_row | |
1615 movff char_I_O2_ratio,lo ; lo now stores O2 in % | |
1616 movff char_I_He_ratio,hi ; hi now stores He in % | |
1617 rcall TFT_active_gas_divemode2 ; Show gas (Non-Inverted in all cases) | |
1618 WIN_INVERT .0 ; Init new Wordprocessor | |
1619 call TFT_standard_color | |
1620 return ; Done. | |
1621 | |
1622 TFT_active_gas_divemode2: | |
1623 lfsr FSR2,buffer | |
1624 call customview_show_mix ; Put "Nxlo", "Txlo/hi", "Air" or "O2" into Postinc2 | |
1625 STRCAT_PRINT "" | |
1626 return | |
1627 | |
1628 global TFT_display_decotype_surface | |
1629 global TFT_display_decotype_surface1 ; Used from logbook! | |
1630 TFT_display_decotype_surface: | |
1631 WIN_STD surf_decotype_column,surf_decotype_row | |
1632 WIN_COLOR color_lightblue | |
1633 lfsr FSR2,buffer | |
1634 movff opt_dive_mode,lo ; 0=OC, 1=CC, 2=Gauge, 3=Apnea | |
1635 TFT_display_decotype_surface1: ; Used from logbook! | |
1636 tstfsz lo | |
1637 bra TFT_display_decotype_surface2 | |
1638 STRCAT_TEXT_PRINT tDvOC ; OC | |
1639 bra TFT_display_decotype_exit | |
1640 TFT_display_decotype_surface2: | |
1641 decfsz lo,F | |
1642 bra TFT_display_decotype_surface3 | |
1643 STRCAT_TEXT_PRINT tDvCC ; CC | |
1644 bra TFT_display_decotype_exit | |
1645 TFT_display_decotype_surface3: | |
1646 decfsz lo,F | |
1647 bra TFT_display_decotype_surface4 | |
1648 STRCAT_TEXT_PRINT tDvGauge ; Gauge | |
1649 bra TFT_display_decotype_exit | |
1650 TFT_display_decotype_surface4: | |
1651 STRCAT_TEXT_PRINT tDvApnea ; Apnea | |
1652 TFT_display_decotype_exit: | |
1653 call TFT_standard_color | |
1654 return | |
40 | 1655 |
0 | 1656 ;============================================================================= |
1657 | |
1658 global TFT_splist_surfmode ; Show Setpoint list | |
1659 extern gaslist_strcat_setpoint | |
1660 TFT_splist_surfmode: | |
1661 bsf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint | |
1662 ;SP 1 | |
1663 WIN_SMALL surf_gaslist_column,surf_gaslist_row | |
1664 lfsr FSR2,buffer | |
1665 clrf PRODL | |
1666 call gaslist_strcat_setpoint ; Show SP#+1 of PRODL# | |
1667 STRCAT_PRINT "" | |
1668 ;SP 2 | |
1669 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.1) | |
1670 lfsr FSR2,buffer | |
1671 movlw .1 | |
1672 movwf PRODL | |
1673 call gaslist_strcat_setpoint ; Show SP#+1 of PRODL# | |
1674 STRCAT_PRINT "" | |
1675 ;SP 3 | |
1676 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.2) | |
1677 lfsr FSR2,buffer | |
1678 movlw .2 | |
1679 movwf PRODL | |
1680 call gaslist_strcat_setpoint ; Show SP#+1 of PRODL# | |
1681 STRCAT_PRINT "" | |
1682 ;SP 4 | |
1683 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.3) | |
1684 lfsr FSR2,buffer | |
1685 movlw .3 | |
1686 movwf PRODL | |
1687 call gaslist_strcat_setpoint ; Show SP#+1 of PRODL# | |
1688 STRCAT_PRINT "" | |
1689 ;SP 5 | |
1690 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.4) | |
1691 lfsr FSR2,buffer | |
1692 movlw .4 | |
1693 movwf PRODL | |
1694 call gaslist_strcat_setpoint ; Show SP#+1 of PRODL# | |
1695 STRCAT_PRINT "" | |
1696 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint | |
1697 bcf leftbind | |
1698 return | |
1699 | |
1700 global TFT_gaslist_surfmode | |
1701 TFT_gaslist_surfmode: ; Displays Gas List | |
1702 bsf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint | |
1703 extern gaslist_strcat_gas_mod | |
1704 ;Gas 1 | |
1705 WIN_SMALL surf_gaslist_column,surf_gaslist_row | |
1706 lfsr FSR2,buffer | |
1707 movlw .0 | |
1708 movwf PRODL | |
1709 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
1710 STRCAT_PRINT "" | |
1711 ;Gas 2 | |
1712 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.1) | |
1713 lfsr FSR2,buffer | |
1714 movlw .1 | |
1715 movwf PRODL | |
1716 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
1717 STRCAT_PRINT "" | |
1718 ;Gas 3 | |
1719 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.2) | |
1720 lfsr FSR2,buffer | |
1721 movlw .2 | |
1722 movwf PRODL | |
1723 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
1724 STRCAT_PRINT "" | |
1725 ;Gas 4 | |
1726 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.3) | |
1727 lfsr FSR2,buffer | |
1728 movlw .3 | |
1729 movwf PRODL | |
1730 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
1731 STRCAT_PRINT "" | |
1732 ;Gas 5 | |
1733 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.4) | |
1734 lfsr FSR2,buffer | |
1735 movlw .4 | |
1736 movwf PRODL | |
1737 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
1738 STRCAT_PRINT "" | |
1739 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint | |
1740 bcf leftbind | |
1741 return | |
1742 | |
1743 global TFT_dillist_surfmode | |
1744 TFT_dillist_surfmode: ; Displays Diluent List | |
1745 bsf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint | |
1746 ;Dil 1 | |
1747 WIN_SMALL surf_gaslist_column,surf_gaslist_row | |
1748 lfsr FSR2,buffer | |
1749 movlw .5 | |
1750 movwf PRODL | |
1751 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
1752 STRCAT_PRINT "" | |
1753 ;Dil 2 | |
1754 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.1) | |
1755 lfsr FSR2,buffer | |
1756 movlw .6 | |
1757 movwf PRODL | |
1758 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
1759 STRCAT_PRINT "" | |
1760 ;Dil 3 | |
1761 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.2) | |
1762 lfsr FSR2,buffer | |
1763 movlw .7 | |
1764 movwf PRODL | |
1765 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
1766 STRCAT_PRINT "" | |
1767 ;Dil 4 | |
1768 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.3) | |
1769 lfsr FSR2,buffer | |
1770 movlw .8 | |
1771 movwf PRODL | |
1772 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
1773 STRCAT_PRINT "" | |
1774 ;Dil 5 | |
1775 WIN_SMALL surf_gaslist_column,surf_gaslist_row+(surf_gaslist_spacing*.4) | |
1776 lfsr FSR2,buffer | |
1777 movlw .9 | |
1778 movwf PRODL | |
1779 call gaslist_strcat_gas_mod ;Append gas description of gas #PRODL (0-4) to current string | |
1780 STRCAT_PRINT "" | |
1781 bcf short_gas_decriptions ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint | |
1782 bcf leftbind | |
1783 return | |
1784 | |
1785 global TFT_depth | |
1786 TFT_depth: | |
1787 SAFE_2BYTE_COPY rel_pressure, lo | |
1788 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
1789 | |
1790 TSTOSS opt_units ; 0=m, 1=ft | |
1791 bra TFT_depth_metric | |
1792 ;TFT_depth_imperial | |
1793 WIN_LARGE depth_feet_column,depth_feet_row | |
1794 lfsr FSR2,buffer | |
1795 TFT_color_code warn_depth ; Color-code the output | |
1796 | |
1797 clrf sub_a+1 ; Display 0ft if lower then 30cm | |
1798 movlw d'30' | |
1799 movwf sub_a+0 | |
1800 movff hi,sub_b+1 | |
1801 movff lo,sub_b+0 | |
1802 call subU16 ; sub_c = sub_a - sub_b | |
1803 btfss neg_flag ; Depth lower then 0.4m? | |
1804 bra depth_less_0.3mtr_feet ; Yes, Show 0ft manually | |
1805 | |
1806 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
1807 bsf leftbind | |
1808 output_16 ; feet in Big font | |
1809 bcf leftbind | |
1810 movlw .3 ; limit to three chars | |
1811 call TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
1812 STRCAT_PRINT "" ; Display feet | |
1813 return | |
1814 | |
1815 depth_less_0.3mtr_feet: | |
1816 STRCAT_PRINT "0 " ; manual zero | |
1817 return | |
1818 | |
1819 TFT_depth_metric: | |
1820 WIN_LARGE depth_column,depth_row | |
1821 TFT_color_code warn_depth ; Color-code the output | |
1822 | |
1823 movlw .039 | |
1824 cpfslt hi | |
1825 bra depth_greater_99_84mtr | |
1826 | |
1827 btfsc depth_greater_100m ; Was depth>100m during last call | |
11 | 1828 rcall TFT_clear_depth ; Yes, clear depth area |
0 | 1829 bcf depth_greater_100m ; Do this once only... |
1830 | |
11 | 1831 movlw .039 |
1832 cpfslt hi | |
1833 bra depth_greater_99_84mtr | |
1834 | |
0 | 1835 lfsr FSR2,buffer |
1836 movlw HIGH d'1000' | |
1837 movwf sub_a+1 | |
1838 movlw LOW d'1000' | |
1839 movwf sub_a+0 | |
1840 movff hi,sub_b+1 | |
1841 movff lo,sub_b+0 | |
1842 incf sub_b+0,F | |
1843 movlw d'0' | |
1844 addwfc sub_b+1,F ; Add 1mbar offset | |
1845 call sub16 ; sub_c = sub_a - sub_b | |
1846 movlw ' ' | |
1847 btfss neg_flag ; Depth lower then 10m? | |
1848 movwf POSTINC2 ; Yes, add extra space | |
1849 | |
1850 clrf sub_a+1 | |
1851 movlw d'99' | |
1852 movwf sub_a+0 | |
1853 movff hi,sub_b+1 | |
1854 movff lo,sub_b+0 | |
1855 call subU16 ; sub_c = sub_a - sub_b | |
1856 btfss neg_flag ; Depth lower then 1m? | |
1857 bra tft_depth2 ; Yes, display manual Zero | |
1858 | |
1859 bsf leftbind | |
1860 bsf ignore_digit4 | |
1861 output_16 ; Full meters in Big font | |
1862 bcf leftbind | |
1863 bra tft_depth3 | |
1864 | |
1865 tft_depth2: | |
1866 WIN_LARGE depth_column,depth_row | |
1867 STRCAT "0" | |
1868 | |
1869 tft_depth3: | |
1870 STRCAT_PRINT "" ; Display full meters | |
1871 | |
1872 ; .1m in MEDIUM font | |
1873 WIN_MEDIUM depth_dm_column,depth_dm_row | |
1874 TFT_color_code warn_depth ; Color-code the output | |
1875 | |
1876 SAFE_2BYTE_COPY rel_pressure, lo | |
1877 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
1878 | |
1879 lfsr FSR2,buffer | |
1880 PUTC "." | |
1881 movlw HIGH d'30' ; Display 0.0m if lower then 30cm | |
1882 movwf sub_a+1 | |
1883 movlw LOW d'30' | |
1884 movwf sub_a+0 | |
1885 movff hi,sub_b+1 | |
1886 movff lo,sub_b+0 | |
1887 call subU16 ; sub_c = sub_a - sub_b | |
1888 btfss neg_flag ; Depth lower then 0.3m? | |
1889 bra depth_less_0.3mtr ; Yes, Show ".0" manually | |
1890 | |
1891 movlw d'4' | |
1892 movwf ignore_digits | |
1893 bsf ignore_digit5 | |
1894 output_16dp d'0' | |
1895 STRCAT_PRINT "" ; Display decimeters | |
1896 WIN_FONT FT_SMALL | |
1897 return | |
1898 | |
1899 depth_less_0.3mtr: | |
1900 STRCAT_PRINT "0" ; Display 0.0m manually | |
1901 WIN_FONT FT_SMALL | |
1902 return | |
1903 | |
1904 depth_greater_99_84mtr: ; Display only in full meters | |
1905 btfss depth_greater_100m ; Is depth>100m already? | |
1906 rcall TFT_clear_depth ; No, clear depth area and set flag | |
1907 ; Depth is already in hi:lo | |
1908 ; Show depth in Full meters | |
1909 ; That means ignore figure 4 and 5 | |
1910 lfsr FSR2,buffer | |
1911 bsf ignore_digit4 | |
1912 bsf leftbind | |
1913 output_16 | |
1914 bcf leftbind | |
1915 STRCAT_PRINT "" ; Display full meters only | |
1916 WIN_FONT FT_SMALL | |
1917 return | |
1918 | |
1919 TFT_clear_depth: ; No, clear depth area and set flag | |
1920 WIN_BOX_BLACK depth_row, .77,.0, max_depth_column-.1 ;top, bottom, left, right | |
1921 bsf depth_greater_100m ; Set Flag | |
1922 return | |
1923 | |
1924 ;============================================================================= | |
1925 | |
1926 ; global TFT_user_image | |
1927 ;TFT_user_image: | |
1928 ; ;---- Display user image ------------------------------------------------- | |
1929 ; ; Compute address in external EEPROM | |
1930 ; movff opt_skin,WREG | |
1931 ; mullw 0x50 | |
1932 ; movff PRODL,ext_flash_address+1 | |
1933 ; movf PRODH,W | |
1934 ; iorlw 0x30 | |
1935 ; movwf ext_flash_address+2 | |
1936 ; | |
1937 ; ; First pixel at @+4: | |
1938 ; movlw 4 | |
1939 ; movwf ext_flash_address+0 | |
1940 ; | |
1941 ; ; Read first pixel | |
1942 ; call ext_flash_read_block_start | |
1943 ;; movff SSP2BUF,skin_color+1 ; TFT format: HIGH is first... | |
1944 ; movwf SSP2BUF ; Write to buffer to initiate new read | |
1945 ; btfss SSP2STAT, BF ; Next byte ready ? | |
1946 ; bra $-2 ; NO: wait... | |
1947 ;; movff SSP2BUF,skin_color+0 | |
1948 ; call ext_flash_read_block_stop | |
1949 ; | |
1950 ; ; Make a frame of the retrieved skin color. | |
1951 ; setf win_color1 | |
1952 ; setf win_color2 | |
1953 ; WIN_FRAME_COLOR16 user_image_upper-.1, user_image_upper+.100,user_image_left-.1, user_image_left+.50 | |
1954 ; | |
1955 ; WIN_LEFT user_image_left+.25 | |
1956 ; WIN_TOP user_image_upper+.50 | |
1957 ; | |
1958 ; ; Display skin icon | |
1959 ; clrf ext_flash_address+0 | |
1960 ; call TFT_write_flash_image_addr | |
1961 ; | |
1962 ; ;---- Print custom text string | |
1963 ; WIN_LEFT user_image_left+.50+.5 | |
1964 ; WIN_TOP user_image_upper+.0 | |
1965 ; | |
1966 ; ; ---- STRNCPY : String copy from RAM | |
1967 ; ; lfsr FSR0, opt_name ; Source | |
1968 ; lfsr FSR1, .13 ; Len max | |
1969 ; lfsr FSR2, buffer ; destination | |
1970 ;TFT_user_image_1: | |
1971 ; movf POSTINC0,W ; Get byte | |
1972 ; bz TFT_user_image_2 ; End if NULL | |
1973 ; movwf POSTINC2 ; NO: copy | |
1974 ; decfsz FSR1L ; Max len reached ? | |
1975 ; bra TFT_user_image_1 ; NO: loop | |
1976 ;TFT_user_image_2: | |
1977 ; clrf POSTINC2 ; Mark end of string | |
1978 ; | |
1979 ; goto aa_wordprocessor ; and print | |
1980 | |
1981 | |
1982 global TFT_custom_text | |
1983 TFT_custom_text: ; Show the custom text | |
1984 lfsr FSR0, opt_name ; Source | |
1985 WIN_SMALL surf_customtext_column,surf_customtext_row1 ; First row | |
1986 rcall TFT_custom_text_2 ; Show up to 12 chars and print | |
1987 incfsz lo,F ; Was lo=255? | |
1988 return ; No, all done. | |
1989 lfsr FSR0, opt_name+.12 ; Source | |
1990 WIN_SMALL surf_customtext_column,surf_customtext_row2 ; Second row | |
1991 rcall TFT_custom_text_2 ; Show up to 12 chars and print | |
1992 incfsz lo,F ; Was lo=255? | |
1993 return ; No, all done. | |
1994 lfsr FSR0, opt_name+.24 ; Source | |
1995 WIN_SMALL surf_customtext_column,surf_customtext_row3 ; Third row | |
1996 rcall TFT_custom_text_2 ; Show up to 12 chars and print | |
1997 incfsz lo,F ; Was lo=255? | |
1998 return ; No, all done. | |
1999 lfsr FSR0, opt_name+.36 ; Source | |
2000 WIN_SMALL surf_customtext_column,surf_customtext_row4 ; Forth row | |
2001 rcall TFT_custom_text_2 ; Show up to 12 chars and print | |
2002 incfsz lo,F ; Was lo=255? | |
2003 return ; No, all done. | |
2004 lfsr FSR0, opt_name+.48 ; Source | |
2005 WIN_SMALL surf_customtext_column,surf_customtext_row5 ; Fifth row | |
2006 rcall TFT_custom_text_2 ; Show up to 12 chars and print | |
2007 return ; Done. | |
2008 | |
2009 TFT_custom_text_2: | |
2010 lfsr FSR2, buffer ; destination | |
2011 movlw .12 | |
2012 movwf lo ; length/line | |
2013 TFT_custom_text_3: | |
2014 movf POSTINC0,W ; Get byte | |
2015 bz TFT_custom_text_4 ; End if NULL | |
2016 movwf POSTINC2 ; NO: copy | |
2017 decfsz lo,F ; Max len reached ? | |
2018 bra TFT_custom_text_3 ; NO: loop | |
2019 setf lo ; lo=255 -> more to come | |
2020 TFT_custom_text_4: | |
2021 clrf POSTINC2 ; Mark end of string | |
2022 goto aa_wordprocessor ; print and return | |
2023 | |
2024 | |
2025 ;============================================================================= | |
2026 global TFT_update_surf_press | |
2027 TFT_update_surf_press: | |
2028 WIN_SMALL surf_press_column,surf_press_row | |
2029 call TFT_standard_color | |
2030 SAFE_2BYTE_COPY amb_pressure, lo | |
2031 lfsr FSR2,buffer | |
2032 movff lo,sub_a+0 | |
2033 movff hi,sub_a+1 | |
2034 movff last_surfpressure_30min+0,sub_b+0 | |
2035 movff last_surfpressure_30min+1,sub_b+1 | |
2036 call subU16 ; sub_c = sub_a - sub_b | |
2037 btfsc neg_flag ; Pressure lower? | |
2038 rcall update_surf_press2 ; Yes, test threshold | |
2039 | |
2040 tstfsz sub_c+1 ; >255mbar difference? | |
2041 bra update_surf_press_common; Yes, display! | |
2042 movlw d'10' ; 10mbar noise suppression | |
2043 subwf sub_c+0,W | |
2044 btfsc STATUS,C | |
2045 bra update_surf_press_common; Yes, display! | |
2046 SAFE_2BYTE_COPY last_surfpressure_30min, lo ; Overwrite with stable value... | |
2047 | |
2048 update_surf_press_common: | |
2049 output_16 | |
2050 ; Show only 4 figures | |
2051 movff buffer+1,buffer+0 | |
2052 movff buffer+2,buffer+1 | |
2053 movff buffer+3,buffer+2 | |
2054 movff buffer+4,buffer+3 | |
2055 movlw 0x00 | |
2056 movff WREG,buffer+4 | |
2057 STRCAT_PRINT "" | |
2058 call TFT_divemask_color | |
2059 WIN_SMALL surf_press_column+4*8,surf_press_row | |
2060 STRCPY_PRINT "mbar" | |
2061 return | |
2062 | |
2063 update_surf_press2: | |
2064 movff lo,sub_b+0 | |
2065 movff hi,sub_b+1 | |
2066 movff last_surfpressure_30min+0,sub_a+0 | |
2067 movff last_surfpressure_30min+1,sub_a+1 | |
2068 call subU16 ; sub_c = sub_a - sub_b | |
2069 return | |
2070 | |
2071 ;============================================================================= | |
2072 | |
2073 global TFT_update_batt_voltage | |
2074 TFT_update_batt_voltage: | |
2075 movff batt_percent,lo ; Get battery percent | |
2076 TFT_color_code warn_battery; Color-code battery percent | |
2077 WIN_TINY batt_percent_column,batt_percent_row | |
2078 lfsr FSR2,buffer | |
2079 bsf leftbind | |
2080 output_8 | |
2081 bcf leftbind | |
2082 STRCAT_PRINT "%" | |
2083 call TFT_standard_color | |
2084 WIN_TINY batt_voltage_column,batt_voltage_row | |
2085 lfsr FSR2,buffer | |
2086 movff batt_voltage+0,lo | |
2087 movff batt_voltage+1,hi | |
2088 bsf leftbind | |
2089 output_16dp .2 | |
2090 bcf leftbind | |
2091 PUTC 'V' | |
2092 movff buffer+5,buffer+3 | |
2093 movlw 0x00 | |
2094 movff WREG,buffer+4 ; Only "x.yV" | |
24 | 2095 STRCAT_PRINT "" |
0 | 2096 return |
2097 | |
2098 ;update_battery_debug: | |
2099 ; call TFT_standard_color | |
2100 ; WIN_TINY .70,.0 | |
2101 ; lfsr FSR2,buffer | |
2102 ; movff battery_gauge+5,xC+3 | |
2103 ; movff battery_gauge+4,xC+2 | |
2104 ; movff battery_gauge+3,xC+1 | |
2105 ; movff battery_gauge+2,xC+0 | |
2106 ; ; battery_gauge:6 is nAs | |
2107 ; ; devide through 65536 | |
2108 ; ; devide through 152 | |
2109 ; ; Result is 0.01Ah in xC+1:xC+0 | |
2110 ; movlw LOW .152 | |
2111 ; movwf xB+0 | |
2112 ; movlw HIGH .152 | |
2113 ; movwf xB+1 | |
2114 ; call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
2115 ; bsf leftbind | |
2116 ; movff xC+0,lo | |
2117 ; movff xC+1,hi | |
2118 ; output_16 | |
2119 ; STRCAT_PRINT "x.01Ah" | |
2120 ; WIN_FONT FT_SMALL | |
2121 ; bcf leftbind | |
2122 ; return | |
2123 | |
2124 ;============================================================================= | |
2125 | |
2126 global TFT_convert_signed_16bit | |
2127 TFT_convert_signed_16bit: | |
2128 bcf neg_flag ; Positive temperature | |
2129 btfss hi,7 ; Negative temperature ? | |
2130 return ; No, return | |
2131 ; Yes, negative temperature! | |
2132 bsf neg_flag ; Negative temperature | |
2133 PUTC '-' ; Display "-" | |
2134 comf hi ; Then, 16bit sign changes. | |
2135 negf lo | |
2136 btfsc STATUS,C | |
2137 incf hi | |
2138 return ; and return | |
2139 | |
2140 ;============================================================================= | |
2141 | |
2142 global TFT_convert_date | |
2143 TFT_convert_date: ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
2144 movff opt_dateformat,WREG ; =0:MMDDYY, =1:DDMMYY, =2:YYMMDD | |
2145 movwf EEDATA ; used as temp here | |
2146 tstfsz EEDATA | |
2147 bra TFT_convert_date1 | |
2148 ; EEDATA was 0 | |
2149 ; Use MMDDYY | |
2150 movff convert_value_temp+0,lo ;month | |
2151 bsf leftbind | |
2152 output_99x | |
2153 PUTC '.' | |
2154 movff convert_value_temp+1,lo ;day | |
2155 bra TFT_convert_date1_common ;year | |
2156 | |
2157 TFT_convert_date1: ; Read date format (0=MMDDYY, 1=DDMMYY, 2=YYMMDD) | |
2158 decfsz EEDATA,F | |
2159 bra TFT_convert_date2 ; EEDATA was 2 | |
2160 ; EEDATA was 1 | |
2161 ; Use DDMMYY | |
2162 movff convert_value_temp+1,lo ;day | |
2163 bsf leftbind | |
2164 output_99x | |
2165 PUTC '.' | |
2166 movff convert_value_temp+0,lo ;month | |
2167 | |
2168 TFT_convert_date1_common: | |
2169 bsf leftbind | |
2170 output_99x | |
2171 PUTC '.' | |
2172 movff convert_value_temp+2,lo ;year | |
2173 output_99x | |
2174 bcf leftbind | |
2175 return | |
2176 | |
2177 TFT_convert_date2: | |
2178 ; Use YYMMDD | |
2179 movff convert_value_temp+2,lo ;year | |
2180 bsf leftbind | |
2181 output_99x | |
2182 PUTC '.' | |
2183 movff convert_value_temp+0,lo ;month | |
2184 output_99x | |
2185 PUTC '.' | |
2186 movff convert_value_temp+1,lo ;day | |
2187 output_99x | |
2188 bcf leftbind | |
2189 return | |
2190 | |
2191 ;============================================================================= | |
2192 | |
2193 global TFT_convert_date_short | |
2194 TFT_convert_date_short: ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2 | |
2195 movff opt_dateformat,WREG ; =0:MMDDYY, =1:DDMMYY, =2:YYMMDD | |
2196 movwf EEDATA ; used as temp here | |
2197 tstfsz EEDATA | |
2198 bra TFT_convert_date_short1 | |
2199 ; EEDATA was 0 | |
2200 ; Use MMDDYY | |
2201 TFT_convert_date_short_common: | |
2202 movff convert_value_temp+0,lo ;month | |
2203 bsf leftbind | |
2204 output_99x | |
2205 PUTC '.' | |
2206 movff convert_value_temp+1,lo ;day | |
2207 output_99x | |
2208 bcf leftbind | |
2209 return | |
2210 | |
2211 TFT_convert_date_short1: | |
2212 decfsz EEDATA,F | |
2213 bra TFT_convert_date_short_common ; EEDATA was 2 -> Use YYMMDD | |
2214 ; EEDATA was 1 | |
2215 ; Use DDMMYY | |
2216 movff convert_value_temp+1,lo ;day | |
2217 bsf leftbind | |
2218 output_99x | |
2219 PUTC '.' | |
2220 movff convert_value_temp+0,lo ;month | |
2221 output_99x | |
2222 bcf leftbind | |
2223 return | |
2224 | |
2225 ;============================================================================= | |
2226 | |
2227 global TFT_date | |
2228 TFT_date: | |
48 | 2229 WIN_SMALL surf_date_column,surf_date_row ; Init new Wordprocessor |
0 | 2230 call TFT_standard_color |
2231 lfsr FSR2,buffer | |
2232 movff month,convert_value_temp+0 | |
2233 movff day,convert_value_temp+1 | |
2234 movff year,convert_value_temp+2 | |
2235 call TFT_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
2236 STRCAT_PRINT "" | |
2237 return | |
2238 | |
2239 ;============================================================================= | |
2240 | |
2241 global TFT_max_pressure | |
2242 TFT_max_pressure: | |
2243 btfsc FLAG_apnoe_mode ; different display in apnoe mode | |
2244 bra TFT_max_pressure_apnoe | |
2245 TFT_max_pressure2: | |
2246 SAFE_2BYTE_COPY max_pressure, lo | |
2247 TFT_max_pressure3: | |
2248 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
2249 TSTOSS opt_units ; 0=m, 1=ft | |
2250 bra TFT_max_pressure2_metric | |
2251 ;TFT_max_pressure2_imperial | |
2252 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
2253 WIN_MEDIUM max_depth_feet_column,max_depth_feet_row | |
2254 lfsr FSR2,buffer | |
2255 call TFT_standard_color | |
2256 output_16_3 | |
2257 STRCAT_PRINT "" | |
2258 return | |
2259 | |
2260 TFT_max_pressure2_metric: | |
11 | 2261 WIN_MEDIUM max_depth_column,max_depth_row |
2262 | |
2263 movlw .039 | |
2264 cpfslt hi | |
2265 bra max_depth_greater_99_84mtr | |
2266 | |
2267 btfsc max_depth_greater_100m ; Was depth>100m during last call | |
2268 rcall TFT_clear_max_depth ; Yes, clear depth area | |
2269 bcf max_depth_greater_100m ; Do this once only... | |
2270 | |
2271 movlw .039 | |
2272 cpfslt hi | |
2273 bra max_depth_greater_99_84mtr | |
2274 | |
2275 lfsr FSR2,buffer | |
2276 movlw HIGH d'1000' | |
2277 movwf sub_a+1 | |
2278 movlw LOW d'1000' | |
2279 movwf sub_a+0 | |
2280 movff hi,sub_b+1 | |
2281 movff lo,sub_b+0 | |
2282 incf sub_b+0,F | |
2283 movlw d'0' | |
2284 addwfc sub_b+1,F ; Add 1mbar offset | |
2285 call sub16 ; sub_c = sub_a - sub_b | |
2286 movlw ' ' | |
2287 btfss neg_flag ; Depth lower then 10m? | |
2288 movwf POSTINC2 ; Yes, add extra space | |
2289 | |
2290 clrf sub_a+1 | |
2291 movlw d'99' | |
2292 movwf sub_a+0 | |
2293 movff hi,sub_b+1 | |
2294 movff lo,sub_b+0 | |
2295 call subU16 ; sub_c = sub_a - sub_b | |
2296 btfss neg_flag ; Depth lower then 1m? | |
2297 bra tft_max_depth2 ; Yes, display manual Zero | |
2298 | |
2299 bsf ignore_digit4 ; no 0.1m | |
2300 bsf leftbind | |
2301 output_16 | |
2302 bra tft_max_depth3 | |
2303 | |
2304 tft_max_depth2: | |
0 | 2305 WIN_MEDIUM max_depth_column,max_depth_row |
11 | 2306 STRCAT "0" |
2307 | |
2308 tft_max_depth3: | |
0 | 2309 call TFT_standard_color |
11 | 2310 STRCAT_PRINT "" ; Display full meters |
2311 bcf leftbind | |
2312 | |
2313 ; .1m in SMALL font | |
2314 WIN_SMALL max_depth_dm_column,max_depth_dm_row | |
2315 | |
2316 SAFE_2BYTE_COPY max_pressure, lo | |
2317 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
2318 | |
2319 lfsr FSR2,buffer | |
2320 PUTC "." | |
2321 | |
2322 movlw d'4' | |
2323 movwf ignore_digits | |
2324 bsf ignore_digit5 | |
2325 bsf leftbind | |
2326 output_16dp d'0' | |
2327 STRCAT_PRINT "" ; Display decimeters | |
2328 bcf leftbind | |
2329 return | |
2330 | |
2331 max_depth_greater_99_84mtr: ; Display only in full meters | |
2332 btfss max_depth_greater_100m ; Is max depth>100m already? | |
2333 rcall TFT_clear_max_depth ; No, clear max depth area and set flag | |
2334 ; Max. Depth is already in hi:lo | |
2335 ; Show max. depth in Full meters | |
2336 ; That means ignore figure 4 and 5 | |
2337 lfsr FSR2,buffer | |
2338 bsf ignore_digit4 | |
2339 bsf leftbind | |
0 | 2340 output_16 |
11 | 2341 bcf leftbind |
2342 STRCAT_PRINT "" ; Display full meters only | |
2343 WIN_FONT FT_SMALL | |
0 | 2344 return |
2345 | |
11 | 2346 TFT_clear_max_depth: ; No, clear max. depth area and set flag |
2347 WIN_BOX_BLACK max_depth_row,.49,max_depth_column, max_depth_dm_column+.13 ;top, bottom, left, right | |
2348 bsf max_depth_greater_100m ; Set Flag | |
2349 return | |
2350 | |
2351 | |
0 | 2352 TFT_max_pressure_apnoe: |
2353 btfss FLAG_active_descent ; Are we descending? | |
2354 bra TFT_max_pressure2 ; Yes, show normal max. | |
2355 SAFE_2BYTE_COPY apnoe_max_pressure, lo | |
2356 bra TFT_max_pressure3 ; Show apnoe_max_pressure as max. depth | |
2357 | |
2358 global TFT_display_apnoe_last_max | |
2359 TFT_display_apnoe_last_max: | |
2360 call TFT_divemask_color | |
2361 WIN_TINY last_max_apnoe_text_column,last_max_apnoe_text_row | |
2362 STRCPY_TEXT_PRINT tApnoeMax | |
2363 | |
2364 call TFT_standard_color | |
2365 SAFE_2BYTE_COPY max_pressure, lo | |
2366 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar] | |
2367 TSTOSS opt_units ; 0=m, 1=ft | |
2368 bra TFT_display_apnoe_last_m_metric | |
2369 ;TFT_display_apnoe_last_max_imperial | |
2370 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
2371 WIN_MEDIUM apnoe_last_max_depth_column,apnoe_last_max_depth_row | |
2372 lfsr FSR2,buffer | |
2373 output_16 | |
2374 STRCAT_PRINT "" | |
2375 return | |
2376 | |
2377 TFT_display_apnoe_last_m_metric: | |
2378 WIN_MEDIUM apnoe_last_max_depth_column,apnoe_last_max_depth_row | |
2379 lfsr FSR2,buffer | |
2380 bsf ignore_digit5 ; do not display 1cm depth | |
2381 output_16dp d'3' | |
2382 STRCAT_PRINT "" | |
2383 return | |
2384 | |
2385 ;============================================================================= | |
2386 global TFT_divemins | |
2387 TFT_divemins: | |
2388 movff divemins+0,lo | |
2389 movff divemins+1,hi | |
2390 | |
2391 btfsc no_more_divesecs ; Ignore seconds? | |
2392 bra TFT_divemins2 ; Show minutes only | |
2393 | |
2394 movlw .99 | |
2395 cpfsgt lo ; bigger then 99? | |
2396 bra TFT_divemins1 ; No show mins:secs | |
2397 ; Yes, remove second display for the rest of the dive and clear seconds | |
2398 bsf no_more_divesecs ; Set flag | |
2399 ; Clear rest of seconds | |
2400 WIN_BOX_BLACK divetime_row, warning1_row,divetime_column,.159 ;top, bottom, left, right | |
2401 bra TFT_divemins2 ; Show minutes only | |
2402 | |
2403 TFT_divemins1: | |
2404 WIN_MEDIUM divetime_column, divetime_row | |
2405 lfsr FSR2,buffer | |
2406 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
2407 call TFT_standard_color | |
2408 STRCAT_PRINT "" ; Show minutes in large font | |
2409 | |
2410 WIN_SMALL divetime_secs_column, divetime_secs_row ; left position for two sec figures | |
2411 lfsr FSR2,buffer | |
2412 PUTC ':' | |
2413 bsf leftbind | |
2414 movff divesecs,lo | |
2415 output_99x | |
2416 bcf leftbind | |
2417 STRCAT_PRINT "" ; Show seconds in small font | |
2418 return | |
2419 | |
2420 TFT_divemins2: | |
2421 WIN_MEDIUM divetime_minsonly_column, divetime_row | |
2422 lfsr FSR2,buffer | |
2423 output_16 | |
2424 call TFT_standard_color | |
2425 STRCAT_PRINT "" ; Show minutes in large font | |
2426 return | |
2427 | |
2428 ;============================================================================= | |
2429 global TFT_display_apnoe_surface | |
2430 TFT_display_apnoe_surface: | |
2431 call TFT_divemask_color | |
2432 WIN_TINY surface_apnoe_text_column,surface_apnoe_text_row | |
2433 STRCPY_TEXT_PRINT tApnoeSurface | |
2434 | |
2435 call TFT_standard_color | |
2436 WIN_MEDIUM surface_time_apnoe_column, surface_time_apnoe_row | |
2437 movff apnoe_surface_mins,lo | |
2438 lfsr FSR2,buffer | |
2439 output_8 | |
2440 PUTC ':' | |
2441 movff apnoe_surface_secs,lo | |
2442 output_99x | |
2443 STRCAT_PRINT "" | |
2444 return | |
2445 | |
2446 global TFT_apnoe_clear_surface | |
2447 TFT_apnoe_clear_surface: | |
2448 ; Clear Surface timer.... | |
2449 WIN_BOX_BLACK surface_apnoe_text_row, .239, surface_apnoe_text_column, .159 ;top, bottom, left, right | |
2450 return | |
2451 | |
2452 global TFT_display_apnoe_descent | |
2453 TFT_display_apnoe_descent: ; Descent divetime | |
2454 movff apnoe_mins,lo | |
2455 clrf hi | |
2456 WIN_MEDIUM divetime_column, divetime_row | |
2457 lfsr FSR2,buffer | |
2458 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
2459 call TFT_standard_color | |
2460 STRCAT_PRINT "" ; Show minutes in large font | |
2461 WIN_SMALL divetime_secs_column, divetime_secs_row ; left position for two sec figures | |
2462 lfsr FSR2,buffer | |
2463 PUTC ':' | |
2464 bsf leftbind | |
2465 movff apnoe_secs,lo | |
2466 output_99x | |
2467 bcf leftbind | |
2468 STRCAT_PRINT "" ; Show seconds in small font | |
38 | 2469 |
2470 | |
2471 call TFT_divemask_color | |
2472 WIN_TINY total_apnoe_text_column,total_apnoe_text_row | |
2473 STRCPY_TEXT_PRINT tApnoeTotal | |
2474 call TFT_standard_color | |
2475 movff divemins,lo | |
2476 clrf hi | |
2477 WIN_MEDIUM apnoe_total_divetime_column, apnoe_total_divetime_row | |
2478 lfsr FSR2,buffer | |
2479 output_16_3 ; displays only last three figures from a 16Bit value (0-999) | |
2480 call TFT_standard_color | |
2481 STRCAT_PRINT "" ; Show minutes in large font | |
2482 WIN_SMALL apnoe_total_divetime_secs_column, apnoe_total_divetime_secs_row ; left position for two sec figures | |
2483 lfsr FSR2,buffer | |
2484 PUTC ':' | |
2485 bsf leftbind | |
2486 movff divesecs,lo | |
2487 output_99x | |
2488 bcf leftbind | |
2489 STRCAT_PRINT "" ; Show seconds in small font | |
2490 | |
0 | 2491 return |
2492 | |
2493 ;============================================================================= | |
2494 ; Writes ostc3 #Serial and Firmware version in splash screen | |
2495 ; | |
2496 global TFT_serial | |
2497 TFT_serial: | |
2498 WIN_TINY .0,.239-.14 | |
2499 | |
2500 STRCPY "OSTC3 #" ; Won't translate that... | |
2501 rcall TFT_cat_serial | |
2502 | |
2503 STRCAT " v" | |
2504 rcall TFT_cat_firmware | |
2505 | |
2506 ifdef __DEBUG | |
2507 movlw color_grey ; Write header in blue when | |
2508 call TFT_set_color ; compiled in DEBUG mode... | |
2509 STRCAT_PRINT "DEBUG" | |
2510 call TFT_standard_color | |
2511 else | |
2512 call TFT_standard_color | |
2513 STRCAT_PRINT "" | |
2514 | |
2515 movlw softwareversion_beta ; =1: Beta, =0: Release | |
2516 decfsz WREG,F | |
2517 return ; Release version -> Return | |
2518 | |
2519 call TFT_warnings_color | |
2520 WIN_LEFT .160-4*9/2 ; Right pad. | |
2521 STRCPY_TEXT_PRINT tBeta | |
2522 call TFT_standard_color | |
2523 endif | |
2524 | |
2525 return | |
2526 | |
2527 | |
2528 | |
2529 ;============================================================================= | |
2530 ; For the Information menu: append firmware x.yy version. | |
2531 global info_menu_firmware | |
2532 extern tFirmware | |
2533 info_menu_firmware: | |
2534 lfsr FSR1,tFirmware | |
2535 call strcat_text | |
2536 TFT_cat_firmware: | |
2537 movlw softwareversion_x | |
2538 movwf lo | |
2539 bsf leftbind | |
2540 output_8 | |
2541 PUTC '.' | |
2542 movlw softwareversion_y | |
2543 movwf lo | |
2544 output_99x | |
2545 bcf leftbind | |
2546 return | |
2547 | |
2548 ;----------------------------------------------------------------------------- | |
2549 ; For the Information menu: append serial number ostc3#42. | |
2550 global info_menu_serial | |
2551 extern tSerial | |
2552 info_menu_serial: | |
2553 lfsr FSR1,tSerial | |
2554 call strcat_text | |
2555 TFT_cat_serial: | |
2556 clrf EEADRH | |
2557 clrf EEADR ; Get Serial number LOW | |
2558 call read_eeprom ; read byte | |
2559 movff EEDATA,lo | |
2560 incf EEADR,F ; Get Serial number HIGH | |
2561 call read_eeprom ; read byte | |
2562 movff EEDATA,hi | |
2563 | |
2564 bsf leftbind | |
2565 output_16 | |
2566 bcf leftbind | |
2567 return | |
2568 | |
2569 ;----------------------------------------------------------------------------- | |
2570 ; For the Information menu: Append total dives | |
2571 global info_menu_total_dives | |
2572 extern tTotalDives | |
2573 info_menu_total_dives: | |
2574 lfsr FSR1,tTotalDives | |
2575 call strcat_text | |
2576 TFT_cat_total_dives: | |
2577 read_int_eeprom .2 | |
2578 movff EEDATA,lo | |
2579 read_int_eeprom .3 | |
2580 movff EEDATA,hi | |
2581 bsf leftbind | |
2582 output_16 | |
2583 bcf leftbind | |
2584 return | |
2585 | |
2586 ;----------------------------------------------------------------------------- | |
2587 ; ppO2 menu | |
2588 global divesets_ppo2_max | |
2589 extern tPPO2Max | |
2590 extern tbar | |
2591 divesets_ppo2_max: | |
2592 lfsr FSR1,tPPO2Max | |
2593 call strcat_text | |
2594 movff opt_ppO2_max,lo | |
2595 movlw ppo2_warning_high | |
2596 divesets_ppo2_common: | |
2597 movwf up ; Save default value | |
2598 clrf hi | |
2599 bsf leftbind | |
2600 output_16dp d'3' | |
2601 bcf leftbind | |
2602 lfsr FSR1,tbar | |
2603 call strcat_text | |
2604 | |
2605 movf up,W ; Default value | |
2606 cpfseq lo ; Current value | |
2607 bra divesets_ppo2_common2 ; Not default, add * | |
2608 return ; Default, Done. | |
2609 divesets_ppo2_common2: | |
2610 PUTC "*" | |
2611 return ; Done. | |
2612 | |
2613 global divesets_ppo2_min | |
2614 extern tPPO2Min | |
2615 divesets_ppo2_min: | |
2616 lfsr FSR1,tPPO2Min | |
2617 call strcat_text | |
2618 movff opt_ppO2_min,lo | |
2619 movlw ppo2_warning_low | |
2620 bra divesets_ppo2_common | |
2621 | |
2622 ;============================================================================= | |
2623 | |
2624 global TFT_clear_warning_text | |
2625 TFT_clear_warning_text: | |
2626 btfss divemode ; in divemode? | |
2627 bra TFT_clear_warning_text2 ; No, setup for surface mode | |
2628 WIN_BOX_BLACK warning1_row, divemode_customview_row-3, warning1_column, warning_icon_column-3 ;top, bottom, left, right | |
2629 return | |
2630 TFT_clear_warning_text2: | |
2631 WIN_BOX_BLACK surf_warning1_row, surf_warning2_row+.24, surf_warning1_column, surf_warning1_column+.76 ;top, bottom, left, right | |
2632 return | |
2633 | |
2634 global TFT_clear_warning_text_2nd_row | |
2635 TFT_clear_warning_text_2nd_row: | |
2636 btfss divemode ; in divemode? | |
2637 bra TFT_clear_warning_text_2nd_2 ; No, setup for surface mode | |
2638 WIN_BOX_BLACK warning2_row, divemode_customview_row-3, warning2_column, warning_icon_column-3 ;top, bottom, left, right | |
2639 return | |
2640 TFT_clear_warning_text_2nd_2: | |
2641 WIN_BOX_BLACK surf_warning2_row, surf_warning2_row+.24, surf_warning2_column, surf_warning2_column+.76 ;top, bottom, left, right | |
2642 return | |
2643 | |
2644 global TFT_fillup_with_spaces | |
2645 TFT_fillup_with_spaces: ; Fillup FSR2 with spaces (Total string length in #WREG) | |
2646 movwf lo ; save max. string length into lo | |
2647 movf FSR2L,W ; Get current string length | |
2648 subwf lo,F ; lo-WREG | |
2649 btfsc STATUS,N ; longer then #lo already? | |
2650 return ; Yes, done. | |
2651 tstfsz lo ; Zero? | |
2652 bra TFT_fillup_with_spaces2 ; No. | |
2653 return ; Yes, done. | |
2654 TFT_fillup_with_spaces2: | |
2655 PUTC " " ; Add one space | |
2656 decfsz lo,F ; All done? | |
2657 bra TFT_fillup_with_spaces2 ; No, loop | |
2658 return ; Done. | |
2659 | |
2660 global TFT_desaturation_time | |
2661 TFT_desaturation_time: | |
2662 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
2663 tstfsz WREG ; Is there room for the warning? | |
2664 return ; No | |
2665 STRCPY "Desat:" | |
2666 movff desaturation_time+0,lo ; divide by 60... | |
2667 movff desaturation_time+1,hi | |
2668 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
2669 bsf leftbind | |
2670 movf lo,W | |
2671 movff hi,lo | |
2672 movwf hi ; exchange lo and hi... | |
2673 output_8 ; Hours | |
2674 PUTC ':' | |
2675 movff hi,lo ; Minutes | |
2676 output_99x | |
2677 bcf leftbind | |
2678 movlw surf_warning_length ; Only use surface string length | |
2679 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
2680 STRCAT_PRINT "" | |
2681 return | |
2682 | |
2683 global TFT_nofly_time | |
2684 TFT_nofly_time: | |
2685 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
2686 tstfsz WREG ; Is there room for the warning? | |
2687 return ; No | |
2688 STRCPY "NoFly:" | |
2689 movff nofly_time+0,lo ; divide by 60... | |
2690 movff nofly_time+1,hi | |
2691 call convert_time ; converts hi:lo in minutes to hours (hi) and minutes (lo) | |
2692 bsf leftbind | |
2693 movf lo,W | |
2694 movff hi,lo | |
2695 movwf hi ; exchange lo and hi... | |
2696 output_8 ; Hours | |
2697 PUTC ':' | |
2698 movff hi,lo ; Minutes | |
2699 output_99x | |
2700 bcf leftbind | |
2701 movlw surf_warning_length ; Only use surface string length | |
2702 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
2703 STRCAT_PRINT "" | |
2704 return | |
2705 | |
2706 global TFT_warning_agf | |
2707 TFT_warning_agf: | |
2708 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
2709 tstfsz WREG ; Is there room for the warning? | |
2710 return ; No | |
2711 call TFT_warnings_color | |
2712 STRCPY_TEXT tDiveaGF_active ; "aGF!" | |
2713 movlw warning_length ; Divemode string length | |
2714 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
2715 STRCAT_PRINT "" | |
2716 call TFT_standard_color | |
2717 return | |
2718 | |
2719 global TFT_warning_gf | |
2720 TFT_warning_gf: ;GF | |
2721 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
2722 tstfsz WREG ; Is there room for the warning? | |
2723 return ; No | |
2724 TFT_color_code warn_gf ; Color-code Output | |
2725 STRCPY "GF:" | |
2726 movff char_O_gradient_factor,lo ; gradient factor | |
2727 bsf leftbind | |
2728 output_8 | |
2729 PUTC "%" | |
2730 movlw warning_length ; Divemode string length | |
2731 btfss divemode ; In Divemode? | |
2732 movlw surf_warning_length ; No, use surface string length | |
2733 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
2734 STRCAT_PRINT "" | |
2735 bcf leftbind | |
2736 call TFT_standard_color | |
2737 return | |
2738 | |
2739 TFT_warning_set_window: ; Sets the row and column for the current warning | |
2740 ; ignore warning (now)? | |
2741 decf warning_counter,W ; -1 | |
2742 bcf STATUS,C | |
2743 rrcf WREG,W ; (warning_counter-1)/2 | |
2744 cpfseq warning_page | |
2745 retlw .255 ; WREG <> 0 -> Warning window not defined | |
2746 | |
2747 call TFT_standard_color | |
2748 | |
2749 btfss divemode ; in divemode? | |
2750 bra TFT_warning_set_window3 ; No, setup for surface mode | |
2751 | |
2752 btfss warning_counter,0 ; Toggle with each warning | |
2753 bra TFT_warning_set_window2 | |
2754 WIN_SMALL warning1_column,warning1_row | |
2755 bcf second_row_warning ; =1: The second row contains a warning | |
2756 retlw .0 ; WREG=0 -> Warning window defined | |
2757 TFT_warning_set_window2: | |
2758 WIN_SMALL warning2_column,warning2_row | |
2759 bsf second_row_warning ; =1: The second row contains a warning | |
2760 retlw .0 ; WREG=0 -> Warning window defined | |
2761 | |
2762 TFT_warning_set_window3: | |
2763 btfss warning_counter,0 ; Toggle with each warning | |
2764 bra TFT_warning_set_window4 | |
2765 WIN_SMALL surf_warning1_column,surf_warning1_row | |
2766 bcf second_row_warning ; =1: The second row contains a warning | |
2767 retlw .0 ; WREG=0 -> Warning window defined | |
2768 TFT_warning_set_window4: | |
2769 WIN_SMALL surf_warning2_column,surf_warning2_row | |
2770 bsf second_row_warning ; =1: The second row contains a warning | |
2771 retlw .0 ; WREG=0 -> Warning window defined | |
2772 | |
2773 | |
2774 global TFT_update_batt_percent_divemode | |
2775 TFT_update_batt_percent_divemode: | |
2776 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
2777 tstfsz WREG ; Is there room for the warning? | |
2778 return ; No | |
2779 movff batt_percent,lo ; Get battery percent | |
2780 TFT_color_code warn_battery; Color-code battery percent | |
2781 STRCPY "Batt:" | |
2782 bsf leftbind | |
2783 output_8 | |
2784 bcf leftbind | |
2785 PUTC "%" | |
2786 movlw warning_length ; Divemode string length | |
2787 btfss divemode ; In Divemode? | |
2788 movlw surf_warning_length ; No, use surface string length | |
2789 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
2790 STRCAT_PRINT "" | |
2791 call TFT_standard_color | |
2792 return | |
2793 | |
2794 | |
2795 global TFT_gf_mask ; Setup Mask | |
2796 TFT_gf_mask: | |
2797 ; The mask | |
2798 call TFT_divemask_color | |
2799 WIN_TINY dive_gf_column1,dive_gf_text_row | |
2800 STRCPY_TEXT_PRINT tGFactors | |
2801 WIN_TINY dive_gf_column2,dive_gf_text_row | |
2802 STRCPY_TEXT_PRINT taGFactors | |
2803 WIN_TINY dive_gf_column3,dive_gf_text_row | |
2804 STRCPY_TEXT_PRINT tGFInfo | |
2805 | |
2806 ; Show GF (Static) | |
2807 call TFT_disabled_color | |
2808 btfss use_agf | |
2809 call TFT_standard_color | |
2810 | |
2811 WIN_STD dive_gf_column,dive_gf_row | |
2812 lfsr FSR2,buffer | |
2813 bsf leftbind | |
2814 movff opt_GF_low,lo | |
2815 output_8 | |
2816 PUTC "/" | |
2817 movff opt_GF_high,lo | |
2818 output_8 | |
2819 STRCAT_PRINT "" | |
2820 ; Show aGF (Static) | |
2821 call TFT_standard_color | |
2822 TSTOSS opt_enable_aGF ; =1: aGF can be selected underwater | |
2823 bra TFT_gf_mask2 ; Show "---" instead | |
2824 | |
2825 btfss use_agf | |
2826 call TFT_disabled_color | |
2827 | |
2828 WIN_STD dive_agf_column,dive_agf_row | |
2829 lfsr FSR2,buffer | |
2830 movff opt_aGF_low,lo | |
2831 output_8 | |
2832 PUTC "/" | |
2833 movff opt_aGF_high,lo | |
2834 output_8 | |
2835 STRCAT_PRINT "" | |
2836 bcf leftbind | |
2837 call TFT_standard_color | |
2838 return | |
2839 | |
2840 TFT_gf_mask2: | |
2841 WIN_STD dive_agf_column+.10,dive_agf_row | |
2842 STRCPY_PRINT "---" | |
2843 bcf leftbind | |
2844 return | |
2845 | |
2846 global TFT_gf_info ; Show GF informations | |
2847 TFT_gf_info: | |
2848 ; Show current GF | |
2849 movff char_O_gradient_factor,lo ; gradient factor absolute (Non-GF model) | |
2850 movff char_I_deco_model,hi | |
2851 decfsz hi,F ; jump over next line if char_I_deco_model == 1 | |
2852 movff char_O_relative_gradient_GF,lo ; gradient factor relative (GF model) | |
2853 WIN_STD dive_currentgf_column,dive_currentgf_row | |
2854 lfsr FSR2,buffer | |
2855 output_8 | |
2856 STRCAT_PRINT "%" | |
2857 return | |
2858 | |
2859 global TFT_ead_end_tissues_clock_mask ; Setup Mask | |
2860 TFT_ead_end_tissues_clock_mask: | |
2861 ; The mask | |
2862 call TFT_divemask_color | |
2863 ; Put three columns at HUD positions | |
2864 WIN_TINY dive_custom_hud_column1,dive_custom_hud_row | |
2865 STRCPY_TEXT_PRINT tDiveClock | |
2866 WIN_TINY dive_custom_hud_column2,dive_custom_hud_row | |
2867 STRCPY_TEXT_PRINT tDiveEAD_END | |
2868 WIN_TINY dive_custom_hud_column3,dive_custom_hud_row | |
2869 STRCPY_TEXT_PRINT tDiveTissues | |
2870 call TFT_standard_color | |
2871 return | |
2872 | |
2873 global TFT_ead_end_tissues_clock ; Show EAD/END, Tissues and clock | |
2874 TFT_ead_end_tissues_clock: | |
2875 ; Update clock and date | |
2876 WIN_SMALL dive_clock_column,dive_clock_row | |
2877 call TFT_clock2 ; print clock | |
2878 ; WIN_SMALL dive_date_column,dive_date_row | |
2879 ; lfsr FSR2,buffer | |
2880 ; movff month,convert_value_temp+0 | |
2881 ; movff day,convert_value_temp+1 | |
2882 ; movff year,convert_value_temp+2 | |
2883 ; rcall TFT_convert_date_short ; converts into "DD/MM" or "MM/DD" or "MM/DD" in postinc2 | |
2884 ; STRCAT_PRINT "." | |
2885 | |
2886 ; Show END/EAD | |
2887 WIN_SMALL dive_ead_column,dive_ead_row | |
2888 STRCPY_TEXT tEAD ; EAD: | |
2889 movff char_O_EAD,lo | |
2890 rcall TFT_end_ead_common ; print "lo m" (or ft) and limit to 8 chars | |
2891 WIN_SMALL dive_end_column,dive_end_row | |
2892 STRCPY_TEXT tEND ; END: | |
2893 movff char_O_END,lo | |
2894 rcall TFT_end_ead_common ; print "lo m" (or ft) and limit to 8 chars | |
2895 | |
2896 ; Show tissue diagram | |
2897 call TFT_divemask_color | |
2898 WIN_TINY dive_tissue_N2_column,dive_tissue_N2_row | |
2899 STRCPY_TEXT_PRINT tN2 | |
2900 WIN_TINY dive_tissue_He_column,dive_tissue_He_row | |
2901 STRCPY_TEXT_PRINT tHe | |
2902 call deco_calc_desaturation_time ; calculate desaturation time (and char_O_tissue_N2_saturation and char_O_tissue_He_saturation) | |
2903 movlb b'00000001' ; select ram bank 1 | |
2904 rcall DISP_tissue_saturation_graph ; Show char_O_tissue_N2_saturation and char_O_tissue_He_saturation | |
2905 return | |
2906 | |
2907 TFT_end_ead_common: ; print "lo m" (or ft) and limit to 8 chars | |
2908 bsf leftbind | |
2909 TSTOSS opt_units ; 0=Meters, 1=Feets | |
2910 bra TFT_end_ead_common_metric | |
2911 ;TFT_end_ead_common_imperial: | |
2912 ; With lo in m | |
2913 movf lo,W | |
2914 mullw .100 ; PRODL:PRODH = mbar/min | |
2915 movff PRODL,lo | |
2916 movff PRODH,hi | |
2917 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
2918 output_16_3 | |
2919 STRCAT_TEXT tFeets | |
2920 clrf WREG | |
2921 movff WREG,buffer+.8 ; limit string length to 8 | |
2922 bra TFT_end_ead_common_exit | |
2923 TFT_end_ead_common_metric: | |
2924 output_8 | |
2925 STRCAT_TEXT tMeters | |
2926 TFT_end_ead_common_exit: | |
2927 bcf leftbind | |
2928 movlw .8 | |
2929 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
2930 STRCAT_PRINT "" | |
2931 return | |
2932 | |
2933 global TFT_surface_tissues | |
2934 TFT_surface_tissues: ; Show Tissue diagram in surface mode | |
2935 WIN_SMALL surf_tissue_N2_column,surf_tissue_N2_row | |
2936 STRCPY_TEXT_PRINT tN2 | |
2937 WIN_SMALL surf_tissue_He_column,surf_tissue_He_row | |
2938 STRCPY_TEXT_PRINT tHe | |
2939 | |
2940 call deco_calc_desaturation_time ; calculate desaturation time (and char_O_tissue_N2_saturation and char_O_tissue_He_saturation) | |
2941 movlb b'00000001' ; select ram bank 1 | |
2942 | |
2943 movlw color_deepblue | |
2944 call TFT_set_color ; Make this configurable? | |
2945 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.29,.29 | |
2946 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.37,.37 | |
2947 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.45,.45 | |
2948 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.53,.53 | |
2949 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.61,.61 | |
2950 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.69,.69 | |
2951 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.77,.77 | |
2952 WIN_FRAME_COLOR16 surf_tissue_diagram_top+.23,surf_tissue_diagram_bottom-.4,.85,.85 | |
2953 WIN_FRAME_STD surf_tissue_diagram_top, surf_tissue_diagram_bottom, surf_tissue_diagram_left, surf_tissue_diagram_right ; outer frame | |
2954 | |
2955 movlw .1 | |
2956 movff WREG,win_height ; row bottom (0-239) | |
2957 movlw surf_tissue_diagram_left+.4 ; Surface mode | |
2958 movff WREG,win_leftx2 ; column left (0-159) | |
2959 movlw surf_tissue_diagram_right-surf_tissue_diagram_left-4 ; Width | |
2960 movff WREG,win_width | |
2961 | |
2962 ;---- Draw N2 Tissues | |
2963 lfsr FSR2, char_O_tissue_N2_saturation | |
2964 movlw d'16' | |
2965 movwf wait_temp ; 16 tissues | |
2966 clrf waitms_temp ; Row offset | |
2967 surf_tissue_saturation_graph_N2: | |
2968 movlw surf_tissue_diagram_top+.23 ; surface mode | |
2969 addwf waitms_temp,W | |
2970 movff WREG,win_top ; row top (0-239) | |
2971 rcall surf_tissue_saturation_loop ; Show one tissue | |
2972 decfsz wait_temp,F | |
2973 bra surf_tissue_saturation_graph_N2 | |
2974 | |
2975 ;---- Draw He Tissues ---------------------------------------------------- | |
2976 lfsr FSR2, char_O_tissue_He_saturation | |
2977 movlw d'16' | |
2978 movwf wait_temp ; 16 tissues | |
2979 clrf waitms_temp ; Row offset | |
2980 surf_tissue_saturation_graph_He: | |
2981 movlw surf_tissue_diagram_top+.23+.56 ; surface mode | |
2982 addwf waitms_temp,W | |
2983 movff WREG,win_top ; row top (0-239) | |
2984 rcall surf_tissue_saturation_loop ; Show one tissue | |
2985 decfsz wait_temp,F | |
2986 bra surf_tissue_saturation_graph_He | |
2987 return | |
2988 | |
2989 surf_tissue_saturation_loop: | |
2990 call TFT_standard_color | |
2991 movlw .2 ; row spacing | |
2992 addwf waitms_temp,F | |
2993 movf POSTINC2,W ; Get tissue load | |
2994 bcf STATUS,C | |
2995 rrcf WREG ; And divide by 2 | |
2996 movwf temp1 | |
2997 movlw .20 | |
2998 subwf temp1,F ; Subtract some offset | |
2999 movff win_width,WREG ; Max width. | |
3000 cpfslt temp1 ; skip if WREG < win_width | |
3001 movwf temp1 | |
3002 movff temp1,win_bargraph | |
3003 call TFT_box | |
3004 return | |
3005 | |
3006 ;============================================================================= | |
3007 ; Draw saturation graph, is surface mode or in dive mode. | |
3008 DISP_tissue_saturation_graph: | |
3009 ;---- Draw Frame | |
3010 WIN_FRAME_STD tissue_diagram_top, tissue_diagram_bottom, tissue_diagram_left, .159 ; outer frame | |
3011 | |
3012 movlw .1 | |
3013 movff WREG,win_height ; row bottom (0-239) | |
3014 movlw tissue_diagram_left+.3 ; divemode | |
3015 movff WREG,win_leftx2 ; column left (0-159) | |
3016 movlw .159-tissue_diagram_left-4 ; Width | |
3017 movff WREG,win_width | |
3018 | |
3019 ;---- Draw N2 Tissues | |
3020 lfsr FSR2, char_O_tissue_N2_saturation | |
3021 movlw d'16' | |
3022 movwf wait_temp ; 16 tissues | |
3023 clrf waitms_temp ; Row offset | |
3024 tissue_saturation_graph_N2: | |
3025 movlw tissue_diagram_top+3 ; divemode | |
3026 addwf waitms_temp,W | |
3027 movff WREG,win_top ; row top (0-239) | |
3028 rcall tissue_saturation_graph_loop ; Show one tissue | |
3029 decfsz wait_temp,F | |
3030 bra tissue_saturation_graph_N2 | |
3031 | |
3032 ;---- Draw He Tissues ---------------------------------------------------- | |
3033 lfsr FSR2, char_O_tissue_He_saturation | |
3034 movlw d'16' | |
3035 movwf wait_temp ; 16 tissues | |
3036 clrf waitms_temp ; Row offset | |
3037 tissue_saturation_graph_He: | |
3038 movlw tissue_diagram_top+3+.22 ; divemode | |
3039 addwf waitms_temp,W | |
3040 movff WREG,win_top ; row top (0-239) | |
3041 | |
3042 rcall tissue_saturation_graph_loop ; Show one tissue | |
3043 | |
3044 decfsz wait_temp,F | |
3045 bra tissue_saturation_graph_He | |
3046 return | |
3047 | |
3048 tissue_saturation_graph_loop: | |
3049 call TFT_standard_color | |
3050 incf waitms_temp,F | |
3051 movf POSTINC2,W | |
3052 bcf STATUS,C | |
3053 rrcf WREG | |
3054 bcf STATUS,C | |
3055 rrcf WREG ; And divide by 4 | |
3056 movwf temp1 | |
3057 movlw .12 | |
3058 subwf temp1,F ; Subtract some offset | |
3059 movff win_width,WREG ; Max width. | |
3060 cpfslt temp1 ; skip if WREG < win_width | |
3061 movwf temp1 | |
3062 movff temp1,win_bargraph | |
3063 call TFT_box | |
3064 return | |
3065 | |
3066 global TFT_display_cns | |
3067 TFT_display_cns: | |
3068 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
3069 tstfsz WREG ; Is there room for the warning? | |
3070 return ; No | |
3071 TFT_color_code warn_cns ; Color-code CNS output | |
3072 STRCPY_TEXT tCNS2 ; CNS: | |
3073 movff int_O_CNS_fraction+0,lo | |
3074 movff int_O_CNS_fraction+1,hi | |
3075 bsf leftbind | |
3076 output_16_3 ;Displays only 0...999 | |
3077 bcf leftbind | |
3078 PUTC "%" | |
3079 movlw warning_length ; Divemode string length | |
3080 btfss divemode ; In Divemode? | |
3081 movlw surf_warning_length ; No, use surface string length | |
3082 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
3083 STRCAT_PRINT "" | |
3084 call TFT_standard_color | |
3085 return | |
3086 | |
3087 global TFT_display_ppo2 | |
3088 TFT_display_ppo2: ; Show ppO2 (ppO2 stored in xC, in mbar!) | |
3089 rcall TFT_warning_set_window ; Sets the row and column for the current warning | |
3090 tstfsz WREG ; Is there room for the warning? | |
3091 return ; No | |
3092 TFT_color_code warn_ppo2 ; Color-code output (ppO2 stored in xC) | |
3093 STRCPY "O2:" | |
3094 ; Check very high ppO2 manually | |
3095 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55bar? | |
3096 bra TFT_show_ppO2_3 ; Yes, display fixed Value! | |
3097 movff xC+0,lo | |
3098 movff xC+1,hi | |
3099 bsf ignore_digit4 | |
3100 output_16dp d'1' | |
3101 TFT_show_ppO2_2: | |
3102 movlw warning_length ; Divemode string length | |
3103 rcall TFT_fillup_with_spaces ; Fillup FSR2 with spaces (Total string length in #WREG) | |
3104 STRCAT_PRINT "" | |
3105 call TFT_standard_color | |
3106 return | |
3107 | |
3108 TFT_show_ppO2_3: | |
3109 STRCAT ">6.6" | |
3110 bra TFT_show_ppO2_2 | |
3111 | |
3112 | |
3113 global TFT_LogOffset_Logtitle | |
3114 TFT_LogOffset_Logtitle: | |
3115 STRCPY_TEXT tLogOffset | |
3116 PUTC ":" | |
3117 call do_logoffset_common_read ; Offset into lo:hi | |
3118 bsf leftbind | |
3119 output_16 | |
3120 bcf leftbind | |
3121 PUTC " " | |
3122 return ; No "_PRINT" here... | |
3123 | |
3124 | |
3125 global adjust_depth_with_salinity | |
3126 adjust_depth_with_salinity: ; computes salinity setting into lo:hi [mbar] | |
3127 btfsc simulatormode_active ; Do apply salinity in Simulatormode | |
3128 return | |
3129 | |
3130 movff opt_salinity,WREG ; 0-5% | |
3131 addlw d'100' ; 1.00kg/l | |
3132 movwf wait_temp | |
3133 | |
3134 movlw d'105' ; 105% ? | |
3135 cpfslt wait_temp ; Salinity higher limit | |
3136 return ; Out of limit, do not adjust lo:hi | |
3137 movlw d'99' ; 99% ? | |
3138 cpfsgt wait_temp ; Salinity lower limit | |
3139 return ; Out of limit, do not adjust lo:hi | |
3140 | |
3141 movff lo,xA+0 | |
3142 movff hi,xA+1 | |
3143 | |
3144 movlw d'102' ; 0,98bar/10m | |
3145 movwf xB+0 | |
3146 clrf xB+1 | |
3147 call mult16x16 ;xA*xB=xC (lo:hi * 100) | |
3148 movff wait_temp,xB+0 ; Salinity | |
3149 clrf xB+1 | |
3150 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3151 movff xC+0,lo | |
3152 movff xC+1,hi ; restore lo and hi with updated value | |
3153 return | |
3154 | |
3155 global convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
3156 convert_mbar_to_feet: ; convert value in lo:hi from mbar to feet | |
3157 movff lo,xA+0 | |
3158 movff hi,xA+1 | |
3159 | |
3160 movlw LOW d'328' ; 328feet/100m | |
3161 movwf xB+0 | |
3162 movlw HIGH d'328' | |
3163 movwf xB+1 | |
3164 | |
3165 call mult16x16 ; xA*xB=xC (lo:hi * 328) | |
3166 | |
3167 movlw d'50' ; round up | |
3168 addwf xC+0,F | |
3169 movlw 0 | |
3170 addwfc xC+1,F | |
3171 addwfc xC+2,F | |
3172 addwfc xC+3,F | |
3173 | |
3174 movlw LOW .10000 | |
3175 movwf xB+0 | |
3176 movlw HIGH .10000 | |
3177 movwf xB+1 | |
3178 | |
3179 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3180 | |
3181 movff xC+0,lo | |
3182 movff xC+1,hi ; restore lo and hi with updated value | |
3183 return | |
3184 | |
3185 global convert_celsius_to_fahrenheit ; convert value in lo:hi from celsius to fahrenheit | |
3186 convert_celsius_to_fahrenheit: ; convert value in lo:hi from celsius to fahrenheit | |
3187 ; Does it work with signed temperature? mH | |
3188 movff lo,xA+0 | |
3189 movff hi,xA+1 | |
3190 | |
3191 movlw d'18' ; 1C = 1.8F | |
3192 movwf xB+0 | |
3193 clrf xB+1 | |
3194 | |
3195 call mult16x16 ;xA*xB=xC (lo:hi * 18) | |
3196 | |
3197 movlw d'10' | |
3198 movwf xB+0 | |
3199 clrf xB+1 | |
3200 | |
3201 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
3202 | |
3203 movlw LOW d'320' ; 0C = 32F | |
3204 addwf xC+0,F | |
3205 movlw HIGH d'320' | |
3206 addwfc xC+1,F | |
3207 | |
3208 movff xC+0,lo | |
3209 movff xC+1,hi ; restore lo and hi with updated value | |
3210 return | |
3211 | |
3212 END |