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