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