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