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