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