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