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