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