Mercurial > public > hwos_code
annotate src/start.asm @ 656:8af5aefbcdaf default tip
Update to 3.31 beta
| author | heinrichsweikamp |
|---|---|
| date | Thu, 27 Nov 2025 18:32:58 +0100 |
| parents | 75e90cd0c2c3 |
| children |
| rev | line source |
|---|---|
| 0 | 1 ;============================================================================= |
| 2 ; | |
| 640 | 3 ; File start.asm * combined next generation V3.11.1 |
| 0 | 4 ; |
| 5 ; Startup subroutines | |
| 6 ; | |
| 654 | 7 ; Copyright (c) 2011, JD Gascuel, heinrichs weikamp gmbh, all right reserved. |
| 0 | 8 ;============================================================================= |
| 9 ; HISTORY | |
| 10 ; 2011-08-06 : [mH] moving from OSTC code | |
| 11 | |
| 604 | 12 #include "hwos.inc" ; mandatory header |
| 582 | 13 #include "ms5541.inc" |
| 604 | 14 #include "shared_definitions.h" ; mailbox from/to p2_deco.c |
| 582 | 15 #include "eeprom_rs232.inc" |
| 16 #include "math.inc" | |
| 17 #include "tft.inc" | |
| 18 #include "surfmode.inc" | |
| 19 #include "wait.inc" | |
| 20 #include "rtc.inc" | |
| 21 #include "external_flash.inc" | |
| 22 #include "strings.inc" | |
| 23 #include "tft_outputs.inc" | |
| 24 #include "adc_lightsensor.inc" | |
| 25 #include "i2c.inc" | |
| 623 | 26 #include "divemode.inc" |
| 27 #include "rx_ops.inc" | |
| 28 | |
| 0 | 29 |
| 582 | 30 extern init_ostc |
| 623 | 31 extern backup_flash_page |
| 631 | 32 extern eeprom_deco_data_read |
| 33 extern option_restore_and_check_all | |
| 34 extern option_restore_and_check | |
| 35 extern option_check_and_store_all | |
| 36 extern option_check_and_store | |
| 582 | 37 extern option_reset |
| 631 | 38 extern rtc_init |
| 634 | 39 extern new_battery_select |
| 623 | 40 extern get_battery_data |
| 604 | 41 extern get_first_gas_to_WREG |
| 623 | 42 |
| 631 | 43 extern oFirmwareMajor |
| 44 extern oFirmwareMinor | |
| 45 extern oPressureAdjust | |
| 648 | 46 extern get_cpu_version |
| 631 | 47 |
| 623 | 48 IFDEF _ccr_pscr |
| 604 | 49 extern option_cleanup_oCCRMode_pSCR |
| 50 extern option_cleanup_oCCRMode_CCR | |
| 623 | 51 extern get_first_dil_to_WREG |
| 52 ENDIF | |
| 604 | 53 |
| 54 IFDEF _rx_functions | |
| 55 extern option_cleanup_oTrMode_CCR | |
| 56 extern option_cleanup_oTrMode_no_CCR | |
| 628 | 57 ENDIF |
| 58 | |
| 59 IFDEF _rx_update | |
| 623 | 60 extern rx_firmware_new_major |
| 61 extern rx_firmware_new_minor | |
| 634 | 62 extern dyn_show_firmware_rx |
| 604 | 63 ENDIF |
| 64 | |
| 0 | 65 |
| 66 ;============================================================================= | |
| 634 | 67 ; Reset Vector: Entry Point on Device Wake-up and hard Reset |
| 0 | 68 ; |
| 623 | 69 reset_v CODE 0x00000 |
| 70 goto 0x1FF00 ; jump to bootloader | |
| 0 | 71 |
| 623 | 72 start_v CODE 0x00004 ; jump to application (cold-)start |
| 0 | 73 goto start |
| 634 | 74 ; |
| 0 | 75 ;============================================================================= |
| 582 | 76 |
| 604 | 77 |
| 78 ;============================================================================= | |
| 634 | 79 ; Firmware Identification |
| 80 ; | |
| 81 fingerprint CODE 0x0000A | |
| 82 db fw_version_major, fw_version_minor ; major, minor | |
| 83 db fw_version_beta, FW_ID ; beta/release, firmware ID | |
| 84 db firmware_creation_year, firmware_creation_month ; creation year, month | |
| 85 db firmware_creation_day, FW_CONF ; creation day, firmware configuration | |
| 86 db 0x00, 0x00 ; reserved for future use | |
| 87 db 0x00, 0x00 ; reserved for future use | |
| 88 db 0x00, 0x00 ; reserved for future use | |
| 89 ; | |
| 90 ;============================================================================= | |
| 91 | |
| 92 | |
| 93 ;============================================================================= | |
| 94 boot1 CODE | |
| 95 ;============================================================================= | |
| 96 | |
| 97 | |
| 98 ;----------------------------------------------------------------------------- | |
| 99 ; | |
| 100 ; Entry Point after cold Start | |
| 623 | 101 ; |
| 582 | 102 global start |
| 0 | 103 start: |
| 634 | 104 |
| 623 | 105 ; clear RAM banks 0-14 |
| 106 lfsr FSR0,0x000 ; load start address into FSR0 | |
| 107 movlw 0x0F ; load end address into WREG (actually its high byte) | |
| 108 start_clear_rambank: | |
| 109 clrf POSTINC0 ; clear memory location and increment FSR0 | |
| 110 cpfseq FSR0H ; has FSR0 reached begin of bank 15, i.e. banks 0-14 done? | |
| 111 bra start_clear_rambank ; NO - loop | |
| 0 | 112 |
| 634 | 113 ; initialize averaging for analog buttons before IRQ gets enabled |
| 114 movlw .16 ; set averaging span | |
| 115 movff WREG,analog_counter ; write to counter (in bank isr_backup) | |
| 116 | |
| 643 | 117 ; initialize 1/4 second counting register |
| 118 movlw .4 ; 62,5ms * 4 = 1/4 second | |
| 119 movff WREG,isr_tmr7_helper | |
| 120 | |
| 634 | 121 ; initialize hardware (ports, timers) and start interrupts |
| 623 | 122 call init_ostc ; also selects bank common and sets CPU to normal speed |
| 648 | 123 |
| 124 ; get CPU type and set less_io_cpu bit | |
| 125 call get_cpu_version | |
| 623 | 126 |
| 127 ; flag that later restart origins from a cold start | |
| 128 bsf cold_start | |
| 0 | 129 |
| 623 | 130 ; get button type from bootloader info |
| 631 | 131 bsf analog_switches ; assume analog buttons by default |
| 634 | 132 movlw 0x7C ; set up read from 0x01F77C |
| 631 | 133 movwf TBLPTRL ; ... |
| 134 movlw 0xF7 ; ... | |
| 135 movwf TBLPTRH ; ... | |
| 136 movlw 0x01 ; ... | |
| 137 movwf TBLPTRU ; ... | |
| 623 | 138 TBLRD*+ ; read configuration byte |
| 139 movlw 0x07 ; coding for analog buttons | |
| 140 cpfseq TABLAT ; equal? | |
| 141 bcf analog_switches ; NO - no analog buttons | |
| 475 | 142 |
| 623 | 143 ; get screen type (2) from bootloader info |
| 634 | 144 bsf screen_type2 ; set flags for later clear of the false one |
| 145 bsf screen_type3 ; ... | |
| 654 | 146 bsf screen_type4 ; ... |
| 656 | 147 bsf screen_type5 ; ... |
| 634 | 148 movlw 0x80 ; set up read from 0x01F780 |
| 149 movwf TBLPTRL ; ... | |
| 150 ;movlw 0xF7 ; high and upper are still at 0x01F7xx | |
| 151 ;movwf TBLPTRH ; ... | |
| 152 ;movlw 0x01 ; ... | |
| 153 ;movwf TBLPTRU ; ... | |
| 623 | 154 TBLRD*+ ; read configuration byte |
| 155 movlw 0x83 ; coding for screen type 2 | |
| 156 cpfseq TABLAT ; equal? | |
| 628 | 157 bcf screen_type2 ; NO - not screen type 2 |
| 158 movlw 0x84 ; coding for screen type 3 | |
| 159 cpfseq TABLAT ; equal? | |
| 160 bcf screen_type3 ; NO - not screen type 3 | |
| 654 | 161 movlw 0x85 ; coding for screen type 4 |
| 162 cpfseq TABLAT ; equal? | |
| 163 bcf screen_type4 ; NO - not screen type 4 | |
| 656 | 164 movlw 0x86 ; coding for screen type 5 |
| 165 cpfseq TABLAT ; equal? | |
| 166 bcf screen_type5 ; NO - not screen type 5 | |
| 608 | 167 |
| 654 | 168 bcf dn_flag |
| 169 btfsc screen_type4 | |
| 170 bsf dn_flag | |
| 656 | 171 btfsc screen_type5 |
| 172 bsf dn_flag | |
| 654 | 173 |
| 623 | 174 ; get button polarity from configuration data (EEPROM) |
| 631 | 175 EEPROM_CC_READ eeprom_button_polarity,button_polarity |
| 475 | 176 |
| 623 | 177 ; initialize pressure sensor calibration |
| 643 | 178 call I2C_probe_pressure_sensor ; Probe the type of sensor, set/clear press_sensor_type |
| 582 | 179 call get_calibration_data ; get calibration data from pressure sensor |
| 648 | 180 |
| 582 | 181 call TFT_DisplayOff ; turn off display |
| 623 | 182 bsf LEDr ; turn on red LED |
| 582 | 183 |
| 634 | 184 ; wait for valid temperature and pressure |
| 643 | 185 btfsc press_sensor_type ; New sensor found? |
| 186 call I2C_get_temp_val_MS5837 ; (Will set ms5837_state) | |
| 187 WAITMS .250 | |
| 188 btfsc press_sensor_type ; New sensor found? | |
| 189 call I2C_get_press_val_MS5837 ; (Will clear ms5837_state) | |
| 190 WAITMS .250 | |
| 191 btfsc press_sensor_type ; New sensor found? | |
| 192 call I2C_get_temp_val_MS5837 ; (Will set ms5837_state) | |
| 193 WAITMS .250 | |
| 194 btfsc press_sensor_type ; New sensor found? | |
| 195 call I2C_get_press_val_MS5837 ; (Will clear ms5837_state) | |
| 196 WAITMS .250 | |
| 0 | 197 |
| 623 | 198 ; sensor calibration completed, first valid pressure value is available |
| 634 | 199 bcf LEDr ; turn off red LED |
| 0 | 200 |
| 634 | 201 ; initial loading of the surface pressure into the ISR |
| 202 ; needs to be done twice in order to shift the current absolute pressure through | |
| 203 ; the sampling buffer into the reference buffer from where it is loaded by the ISR | |
| 204 call sample_surface_pressure ; 1st pass | |
| 205 call sample_surface_pressure ; 2nd pass | |
| 629 | 206 |
| 207 ; wait until initial surface pressure value has been loaded into the ISR | |
| 623 | 208 btfsc update_surface_pressure ; has the ISR confirmed loading of the surface pressure? |
| 209 bra $-2 ; NO - not yet, loop until ISR has confirmed loading | |
| 560 | 210 |
| 623 | 211 ; reset all tissue pressures to surface pressure equilibrium state by default |
| 212 call deco_clear_tissue ; (C-code) | |
| 631 | 213 banksel common ; back to bank common |
| 0 | 214 |
| 631 | 215 ; restore deco status from EEPROM (if possible) |
| 216 EEPROM_CC_READ eeprom_deco_data_validity,WREG ; read deco data validity | |
| 217 xorlw DECO_DATA_VALID_TOKEN ; deco data valid? | |
| 218 bnz start_clean ; NO - start "clean" | |
| 219 EEPROM_CC_READ eeprom_deco_data_version,WREG ; YES - read deco data format version | |
| 220 xorlw eeprom_vault_version ; - deco data format compatible? | |
| 221 bnz start_clean ; NO - start "clean" | |
| 222 call eeprom_deco_data_read ; YES - restore deco data from EEPROM | |
| 223 bra start_common ; - continue with common part | |
|
133
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
224 |
| 631 | 225 start_clean: |
| 623 | 226 bsf reset_surface_interval ; request ISR to reset the surface interval timer |
| 631 | 227 btfss RCON,POR ; was there a power outage ? |
| 228 call rtc_init ; YES - initialize RTC to firmware creation date | |
| 582 | 229 |
| 631 | 230 start_common: |
| 623 | 231 ; check for power-on reset |
|
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
463
diff
changeset
|
232 |
| 623 | 233 bcf use_old_batt_flag ; default to no reload of last battery data |
| 604 | 234 btfsc RCON,POR ; was this a power-on reset? |
| 623 | 235 bsf use_old_batt_flag ; NO - reload last battery data |
| 236 | |
| 604 | 237 call lt2942_get_status ; check for gauge IC |
| 582 | 238 btfss battery_gauge_available ; cR or 2 hardware? |
| 623 | 239 bra start_check_new_firmware ; NO - skip next |
| 240 movlw .30 ; YES - load default button sensitivity | |
| 241 movff WREG,opt_cR_button_right ; - set default for left button | |
| 242 movff WREG,opt_cR_button_left ; - set default for right button | |
| 243 call piezo_config ; - configure buttons, 1st pass | |
| 244 call piezo_config ; - configure buttons, 2nd pass | |
| 604 | 245 |
| 623 | 246 start_check_new_firmware: |
| 247 call TFT_boot ; initialize TFT (includes clear screen & backlight switch-off) | |
| 604 | 248 |
| 654 | 249 ; show heinrichs weikamp logo |
| 604 | 250 WIN_TOP .40 |
| 251 WIN_LEFT .10 | |
| 623 | 252 TFT_WRITE_PROM_IMAGE_BY_ADDR hw_logo_block |
| 604 | 253 |
| 631 | 254 ; check if a new firmware was loaded |
| 255 lfsr FSR0,oFirmwareMajor ; address firmware version | |
| 256 call option_restore_and_check ; read firmware version, major | |
| 257 call option_restore_and_check ; read firmware version, minor | |
| 258 call option_restore_and_check ; read firmware version, beta | |
| 582 | 259 |
| 631 | 260 movff opt_fw_version_major,WREG ; get stored major version |
| 261 xorlw fw_version_major ; compare with currently active version, equal? | |
| 262 bnz start_check_new_firmware_new ; NO - a new firmware was loaded | |
|
93
5e1ef9bf32ec
clear pressure sensor compensation upon update
heinrichsweikamp
parents:
52
diff
changeset
|
263 |
| 631 | 264 movff opt_fw_version_minor,WREG ; get stored minor version |
| 265 xorlw fw_version_minor ; compare with currently active version, equal? | |
| 266 bnz start_check_new_firmware_new ; NO - a new firmware was loaded | |
| 267 | |
| 268 movff opt_fw_version_beta,WREG ; get stored beta version | |
| 269 xorlw fw_version_beta ; compare with currently active version, equal? | |
| 270 bnz start_check_new_firmware_new ; NO - a new firmware was loaded | |
| 271 ;bz start_check_new_firmware_old ; YES - same firmware as before | |
| 0 | 272 |
| 623 | 273 start_check_new_firmware_old: |
| 634 | 274 call TFT_message_fw_kept ; show firmware is kept message |
| 631 | 275 bra start_check_new_firmware_common ; continue with common part |
| 276 | |
| 277 start_check_new_firmware_new: | |
| 634 | 278 call TFT_message_fw_update ; show firmware is updated message |
| 631 | 279 |
| 634 | 280 ; ; reset the pressure sensor correction to factory default |
| 281 ; lfsr FSR0,oPressureAdjust ; address pressure sensor correction | |
| 282 ; call option_reset ; set correction to default | |
| 283 ; | |
| 284 ; lfsr FSR0,oPressureAdjust ; address pressure sensor correction | |
| 285 ; call option_check_and_store ; update correction in EEPROM | |
| 623 | 286 |
| 287 start_check_new_firmware_common: | |
| 288 call TFT_Display_FadeIn ; display resulting screen | |
| 631 | 289 |
| 623 | 290 call backup_flash_page ; back-up the first 128 bytes from program flash memory to EEPROM |
| 631 | 291 call option_restore_and_check_all ; restore all option values from EEPROM and check them |
| 623 | 292 |
| 634 | 293 WAITS .5 ; wait 5 second |
| 294 | |
| 295 goto restart ; proceed with restart | |
| 604 | 296 |
| 0 | 297 |
| 623 | 298 ;============================================================================= |
| 634 | 299 boot2 CODE |
| 300 ;============================================================================= | |
| 301 | |
| 302 | |
| 303 ;----------------------------------------------------------------------------- | |
| 304 ; Sample and store the current Surface Pressure | |
| 305 ; Update ISR and Deco Engine with Pressure sampled on last Invocation | |
| 306 ; | |
| 307 global sample_surface_pressure | |
| 308 sample_surface_pressure: | |
| 309 ; make sure the ISR does not read the surface pressure reference buffer while it is updated | |
| 310 bcf update_surface_pressure ; cancel any pending load request | |
| 311 | |
| 312 ; propagate the surface pressure sampled on last invocation to the reference pressure buffer | |
| 313 MOVII pressure_abs_sampled,pressure_abs_ref | |
| 314 | |
| 315 ; update surface pressure in the ISR | |
| 316 bsf update_surface_pressure ; request ISR to update its surface pressure | |
| 317 | |
| 318 ; update surface pressure in the deco engine | |
| 319 MOVII pressure_abs_ref,int_I_pres_surface | |
| 320 | |
| 321 ; sample current absolute pressure (ISR-safe 2 byte copy) | |
| 322 SMOVII pressure_abs,pressure_abs_sampled | |
| 323 | |
| 324 ; limit sampled pressure to max allowed surface pressure | |
| 325 MOVLI max_surfpressure, sub_a ; load upper limit into sub_a | |
| 326 MOVII pressure_abs_sampled,sub_b ; copy sampled pressure to sub_b | |
| 327 call cmpU16 ; sub_a - sub_b = max_surfpressure - pressure_abs_sampled | |
| 328 btfss neg_flag ; sampled pressure > max_surfpressure ? | |
| 329 return ; NO - below limit, done | |
| 330 MOVII sub_a,pressure_abs_sampled ; YES - limit to max_surfpressure (still stored in sub_a) | |
| 331 return ; - done | |
| 332 | |
| 333 | |
| 334 ;============================================================================= | |
| 335 boot3 CODE | |
| 336 ;============================================================================= | |
| 337 | |
| 338 | |
| 339 ;----------------------------------------------------------------------------- | |
| 340 ; Entry Point for warm Start | |
| 623 | 341 ; |
| 342 ; called on leaving sleep mode, surface menu, communication mode, and | |
| 634 | 343 ; when a start of a dive is detected in all modes except surface mode |
| 623 | 344 ; |
| 582 | 345 global restart |
| 0 | 346 restart: |
| 634 | 347 |
| 631 | 348 ; for safety purpose only |
| 349 banksel common ; select bank common | |
| 623 | 350 clrf STKPTR ; clear return addresses stack |
| 631 | 351 call request_speed_normal ; request CPU speed change to normal speed |
| 352 | |
| 353 bsf tft_is_dimming ; ignore ambient sensor | |
| 623 | 354 |
| 355 ; clear flag groups | |
| 356 clrf HW_descriptor ; hardware - OSTC model descriptor | |
| 628 | 357 clrf HW_flags_state1 ; hardware - states |
| 634 | 358 ; ; DO NOT clear HW_flags_state2 ! |
| 643 | 359 ; ; DO NOT clear HW_flags_state3 ! |
| 623 | 360 clrf DM_flags_sensor ; hardware - O2 sensors |
| 361 clrf OS_flags_ISR1 ; operating system - ISR control 1 | |
| 362 clrf OS_flags_ISR2 ; operating system - ISR control 2 | |
| 363 clrf eventbase ; event triggers generated by ISR | |
| 364 clrf DM_flags_deco ; dive deco modes | |
| 365 clrf MS_flags_control ; menu system - control | |
| 366 clrf MS_flags_imprint ; menu system - data imprinting | |
| 634 | 367 clrf CVT_flags1 ; control of numerical outputs 1 |
| 368 clrf CVT_flags2 ; control of numerical outputs 2 | |
|
23
e402813343b6
new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents:
21
diff
changeset
|
369 |
| 623 | 370 ; configure the OSTC model descriptor (stored in HW_descriptor) |
| 604 | 371 bcf tft_power ; inverted, here needed for I2C_probe_OSTC_rx, to wake-up RX circuity |
| 623 | 372 bsf ambient_sensor ; set ambient light sensor as available by default |
| 634 | 373 bsf ext_input_optical ; set optical input as available by default |
| 656 | 374 bcf ext_s8_full_digital ; clear flag |
| 582 | 375 |
| 604 | 376 call lt2942_get_status ; check for gauge IC |
| 623 | 377 btfss battery_gauge_available ; OSTC 2, cR or TR? |
| 604 | 378 bra restart2 ; NO |
| 236 | 379 |
| 623 | 380 ; OSTC 2, cR or TR |
| 656 | 381 call battery_gauge_init ; initialize battery gauge IC |
| 382 call lt2942_get_voltage | |
| 634 | 383 bcf ext_input_optical ; OSTC 2, cR and TR do not have an optical input |
| 623 | 384 |
| 385 banksel ANCON0 ; ANCON0 is outside access RAM | |
| 604 | 386 bcf ANCON0,7 ; AN7 digital input |
| 623 | 387 banksel common ; back to bank common |
| 604 | 388 bcf lightsen_power ; power-down ambient light sensor |
| 623 | 389 bcf ambient_sensor ; no ambient light sensor by default |
| 582 | 390 nop |
| 623 | 391 btfss PORTF,2 ; ambient light sensor available? |
| 604 | 392 bsf ambient_sensor ; YES |
| 623 | 393 banksel ANCON0 ; ANCON0 is outside access RAM |
| 604 | 394 bsf ANCON0,7 ; AN7 analog again |
| 623 | 395 banksel common ; back to bank common |
| 604 | 396 bsf lightsen_power ; power-up ambient light sensor again |
| 582 | 397 |
| 243 | 398 restart2: |
| 656 | 399 ; Dual comm hardware (USB and BLE-only)? |
| 400 bsf dual_comm ; assume dual comm hardware by default | |
| 401 movlw 0xFC ; set up read from 0x01FFFC | |
| 402 movwf TBLPTRL ; ... | |
| 403 movlw 0xFF ; ... | |
| 404 movwf TBLPTRH ; ... | |
| 405 movlw 0x01 ; ... | |
| 406 movwf TBLPTRU ; ... | |
| 407 TBLRD*+ ; read configuration byte | |
| 408 movlw 0x6E ; coding for dual comm | |
| 409 cpfseq TABLAT ; equal? | |
| 410 bcf dual_comm ; NO | |
| 411 TBLRD*+ ; read configuration byte | |
| 412 movlw 0x61 ; coding for dual comm | |
| 413 cpfseq TABLAT ; equal? | |
| 414 bcf dual_comm ; NO | |
| 415 TBLRD*+ ; read configuration byte | |
| 416 movlw 0x6E ; coding for dual comm | |
| 417 cpfseq TABLAT ; equal? | |
| 418 bcf dual_comm ; NO | |
| 419 TBLRD*+ ; read configuration byte | |
| 420 movlw 0x6F ; coding for dual comm | |
| 421 cpfseq TABLAT ; equal? | |
| 422 bcf dual_comm ; NO | |
| 423 | |
| 424 btfsc dual_comm | |
| 425 bcf ambient_sensor ; dual-comm has no ambient sensor | |
| 426 | |
| 427 btfsc less_io_cpu ; Less I/O CPU found? | |
| 648 | 428 bsf ble_available ; Yes, must have BLE (old or new) |
| 628 | 429 IFNDEF _hwos_sport |
| 623 | 430 btfsc vusb_in ; USB power detected? |
| 634 | 431 bra restart3 ; YES - no BT then |
| 654 | 432 bcf ble_npower ; NO - power up BT chip (if available) |
| 631 | 433 WAITMS d'5' ; - wait 5 ms |
| 434 btfss vusb_in ; - BT chip detected? | |
| 634 | 435 bra restart3 ; NO - no BT then |
| 628 | 436 ENDIF |
| 634 | 437 bsf ble_available ; YES - BT available |
| 582 | 438 |
| 439 restart3: | |
| 654 | 440 bsf ble_npower ; power down BT chip (if available) |
| 656 | 441 IFDEF _external_sensor_eccr ; Compiled for external analog interface? |
| 650 | 442 bsf ext_input_s8_ana ; YES - Set the flag |
| 443 call eeprom_serial_number_read ; read OSTC serial number | |
| 444 movlw .31 | |
| 445 cpfslt hi ; bigger than WREG? | |
| 446 bsf ble_available ; NO - must be new OSTC+ with interface | |
| 640 | 447 ENDIF |
| 643 | 448 |
| 449 | |
| 640 | 450 bsf lv_core ; default to low voltage core |
| 623 | 451 movlw 0x80 ; point to 0x1F780 |
| 631 | 452 movwf TBLPTRL ; ... |
| 453 movlw 0xF7 ; ... | |
| 454 movwf TBLPTRH ; ... | |
| 455 movlw 0x01 ; ... | |
| 456 movwf TBLPTRU ; ... | |
| 623 | 457 TBLRD*+ ; read from 0x1F780 |
| 458 movlw 0x83 ; coding for low voltage core, part 1 | |
| 459 cpfseq TABLAT ; equal? | |
| 631 | 460 bra restart4a ; NO - no low voltage core then |
| 461 movlw 0x81 ; YES - point to 0x1F781 | |
| 462 movwf TBLPTRL ; - ... | |
| 463 TBLRD*+ ; - read from 0x1F781 | |
| 464 movlw 0x94 ; - coding for low voltage core, part 2 | |
| 465 cpfseq TABLAT ; - equal? | |
| 623 | 466 restart4a: |
| 631 | 467 bcf lv_core ; NO - no low voltage core then |
| 623 | 468 |
| 634 | 469 ; OSTC sport 2019 hardware does not have an optical input |
| 470 btfsc lv_core ; low voltage core? | |
| 471 bcf ext_input_optical ; YES - no optical input available | |
| 640 | 472 btfsc lv_core ; low voltage core? |
| 473 bcf ext_input_s8_ana ; YES - can't be a cR, S8/analog sensor input disabled | |
| 634 | 474 |
| 475 ; check FLASH for block-write capability | |
| 476 bsf flash_block_write ; default to block-write capability available | |
| 477 call ext_flash_read_jedec ; read JEDEC IDs | |
| 478 movlw 0x26 ; device type 26h supports block-write | |
| 479 cpfseq hi ; dive type = 26h ? | |
| 480 bcf flash_block_write ; NO - revoke capability | |
| 481 | |
| 623 | 482 |
| 604 | 483 IFDEF _rx_functions |
| 623 | 484 |
| 485 ; set TR functions as deactivated by default | |
| 486 bcf tr_functions_activated ; clear flag | |
| 487 | |
| 488 ; search for TR module | |
| 489 WAITMS .200 ; wait 200 ms while RX module boots up | |
| 490 call I2C_probe_OSTC_rx ; check for RX module and set ostc_rx_present flag if found | |
| 491 btfss ostc_rx_present ; RX module detected? | |
| 492 bra restart5 ; NO | |
| 493 | |
| 628 | 494 IFDEF _rx_update |
| 495 | |
| 623 | 496 ; check if TR module firmware is up to date |
| 497 movff rx_firmware_cur_major,hi ; copy current firmware on RX module to bank common, major | |
| 498 movff rx_firmware_cur_minor,lo ; copy current firmware on RX module to bank common, minor | |
| 499 call rx_firmware_new_major ; get latest firmware version into WREG, major | |
| 500 cpfseq hi ; equal to current firmware on RX module, major ? | |
| 501 bra restart4b ; NO - update | |
| 502 call rx_firmware_new_minor ; YES - get latest firmware version into WREG, minor | |
| 503 cpfseq lo ; - equal to current firmware on RX module, minor ? | |
| 504 bra restart4b ; NO - update TR module | |
| 505 bra restart4e ; YES - no need to update | |
| 604 | 506 |
| 623 | 507 restart4b: |
| 508 ; print TR module update message | |
| 509 call TFT_boot ; initialize TFT (includes clear screen & backlight switch-off) | |
| 631 | 510 WIN_TOP .40 ; set position |
| 511 WIN_LEFT .10 ; ... | |
| 654 | 512 TFT_WRITE_PROM_IMAGE_BY_ADDR hw_logo_block ; show heinrichs weikamp logo |
| 631 | 513 WIN_SMALL .10,.130 ; set position |
| 623 | 514 STRCAT_PRINT "Updating TR Module..." ; print update message |
| 631 | 515 call TFT_Display_FadeIn ; dimm up backlight to show outputs |
| 623 | 516 |
| 517 ; update firmware in RX module | |
| 518 call I2C_sleep_compass ; stop compass | |
| 519 call update_tr_module ; update TR module | |
| 582 | 520 |
| 623 | 521 WIN_SMALL .10,.160 ; set next output position |
| 522 STRCAT "Update " ; common part of result message | |
| 523 btfss ostc_rx_present ; data transfer successful and TR module up & running again? | |
| 524 bra restart4c ; NO | |
| 525 STRCAT "to " ; YES - print success message | |
| 634 | 526 call dyn_show_firmware_rx ; - print installed version |
| 623 | 527 STRCAT_PRINT " done" ; - complete result message |
| 528 bra restart4d ; - show message for a while | |
| 529 | |
| 530 restart4c: | |
| 531 STRCAT_PRINT "failed" ; complete result message - failure | |
| 532 | |
| 533 restart4d: | |
| 634 | 534 WAITS .3 ; wait 3 seconds |
| 623 | 535 |
| 628 | 536 ENDIF ; _rx_update |
| 537 | |
| 623 | 538 restart4e: |
| 539 btfss ostc_rx_present ; TR module up & running? | |
| 604 | 540 bra restart5 ; NO |
| 623 | 541 movff opt_TR_mode,WREG ; YES - get TR mode |
| 542 tstfsz WREG ; - TR mode <> off ? | |
| 543 bsf tr_functions_activated ; YES - set TR functions as activated | |
| 604 | 544 |
| 623 | 545 ENDIF ; _rx_functions |
| 546 | |
| 604 | 547 |
| 548 restart5: | |
| 640 | 549 ; configure button_hold_down_allowed flag |
| 550 btfsc lv_core | |
| 643 | 551 bsf button_hold_down_allowed ; OSTC sport mod. 2019 |
| 640 | 552 btfsc ext_input_optical |
| 643 | 553 bsf button_hold_down_allowed ; OSTC3/old sport |
| 640 | 554 |
| 623 | 555 ; manage hardware |
| 634 | 556 btfss ext_input_s8_ana ; OSTC with S8/analog input? |
| 623 | 557 bsf TRISB,3 ; NO - shut down power supply for S8 bulkhead |
| 0 | 558 |
| 623 | 559 btfss battery_gauge_available ; OSTC with gauge IC? |
| 560 bsf TRISG,0 ; NO | |
| 561 | |
| 582 | 562 call ext_flash_disable_protection ; disable write protection for external flash |
|
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
463
diff
changeset
|
563 |
| 623 | 564 btfsc use_old_batt_flag ; shall reload last battery data? |
| 565 call get_battery_data ; YES - get last battery data | |
| 566 | |
| 633 | 567 ; check if option values have changed and thus if the EEPROM needs to be updated |
| 634 | 568 btfsc option_changed ; do the options need to be stored to EEPROM ? |
| 633 | 569 call option_check_and_store_all ; YES - check and store all option values in EEPROM |
| 570 | |
| 623 | 571 ; set screen orientation |
| 634 | 572 bcf flip_screen ; disable upside-down orientation by default |
| 623 | 573 TSTOSC opt_flip_screen ; shall show screen outputs upside down? (=1: flip the screen) |
| 634 | 574 bsf flip_screen ; YES - enable upside-down orientation |
| 582 | 575 |
| 623 | 576 ; check if high-altitude mode is applicable |
| 577 bcf high_altitude_mode ; disable high altitude mode by default | |
| 578 MOVII pressure_abs_ref, sub_a ; copy last surface pressure to sub_a | |
| 579 MOVLI high_altitude_threshold+1,sub_b ; copy high-altitude threshold (880 mbar) + 1 to sub_a | |
| 580 call cmpU16 ; sub_a - sub_b = pressure_abs_ref - (high_altitude_threshold + 1) | |
| 581 btfsc neg_flag ; result negative (absolute pressure <= 880 mbar) ? | |
| 582 bsf high_altitude_mode ; YES - enable high altitude mode | |
| 583 | |
| 584 ; check if there was a cold start, if yes do initial computation of further deco data | |
| 585 btfss cold_start ; did a cold start? | |
| 586 bra restart6 ; NO | |
| 587 bcf cold_start ; YES - clear flag | |
| 588 call deco_calc_dive_interval_1min ; - calculate tissues for 1 minute at surface conditions (C-code) | |
| 589 call deco_calc_desaturation_time ; - calculate desaturation and no-fly/no-altitude time (C-code) | |
| 590 banksel common ; - back to bank common | |
| 591 | |
| 592 restart6: | |
| 640 | 593 btfsc ext_input_s8_ana ; analog sensor input available? |
| 594 bra restart7 ; Yes, continue | |
| 595 ; no sensors, reconfigure TRIS and ANSEL bits for AN8 | |
| 596 bcf TRISF,3 | |
| 597 banksel 0xF16 ; addresses F16h ... F5Fh are not part of the access RAM | |
| 598 bcf ANCON1,0 ; ANSEL1: AN8 -> no analog input | |
| 599 banksel common ; back to bank common | |
| 600 | |
| 601 restart7: | |
| 623 | 602 btfsc divemode ; shall enter dive mode? |
| 634 | 603 goto diveloop ; YES - enter dive mode |
| 604 btfsc RCON,POR ; NO - was this a power-on reset? | |
| 605 goto surfloop ; NO - enter surface mode | |
| 606 bsf RCON,POR ; YES - acknowledge detection and re-arm detector | |
| 607 goto new_battery_select ; - prompt for battery selection, will proceed to surface mode | |
| 623 | 608 |
| 0 | 609 |
| 610 ;============================================================================= | |
| 634 | 611 boot4 CODE |
| 612 ;============================================================================= | |
| 613 | |
| 614 ;----------------------------------------------------------------------------- | |
| 615 ; Setup of all Flags and Parameters for Dive Mode and Simulator Computations | |
| 623 | 616 ; |
| 617 ; called from divemode.asm, menu_tree.asm and surfmode.asm | |
| 0 | 618 ; |
| 619 global restart_set_modes_and_flags | |
| 623 | 620 restart_set_modes_and_flags: |
| 634 | 621 call disable_ir_s8_analog ; switch off IR/S8/analog interface by default (for all compile versions!) |
| 623 | 622 |
| 656 | 623 IFDEF _external_sensor_eccr |
| 634 | 624 WAITMS d'100' ; wait 100 ms to S8-HUD powered down properly |
| 623 | 625 ENDIF |
| 629 | 626 |
| 634 | 627 ; setup sampling rate for dice data recording |
| 623 | 628 movlw .2 ; default to 2 seconds |
| 634 | 629 TSTOSC opt_sampling_rate ; check option: 0= 2s, 1= 10s |
| 623 | 630 movlw .10 ; 1 - change to 10 seconds |
| 634 | 631 movwf sampling_rate ; store selection |
| 582 | 632 |
| 634 | 633 ; clear all deco mode flags |
| 634 clrf DM_flags_deco | |
| 0 | 635 |
| 623 | 636 ; initialize active_gas and active_dil for surface mode pressure display |
| 604 | 637 call get_first_gas_to_WREG |
| 638 movwf active_gas | |
| 623 | 639 |
| 640 IFDEF _ccr_pscr | |
| 604 | 641 call get_first_dil_to_WREG |
| 642 movwf active_dil | |
| 623 | 643 ENDIF |
| 582 | 644 |
| 623 | 645 ; configure saturation / desaturation safety factors |
| 646 movff opt_sat_multiplier_gf, char_I_saturation_multiplier ; use factors for GF mode by default | |
| 647 movff opt_desat_multiplier_gf,char_I_desaturation_multiplier ; ... | |
| 631 | 648 TSTOSC char_I_model ; get deco model ZH-L16-GF (1) selected? |
| 623 | 649 bra restart_set_modes_and_flags2 ; YES - keep them |
| 650 movff opt_sat_multiplier_non_gf, char_I_saturation_multiplier ; NO - overwrite them with non-GF factors | |
| 651 movff opt_desat_multiplier_non_gf,char_I_desaturation_multiplier ; - ... | |
| 0 | 652 |
| 653 restart_set_modes_and_flags2: | |
| 634 | 654 |
| 623 | 655 ; configure GF settings, GF high is needed for color-coding the current GF (supersaturation) factor |
| 656 movff opt_GF_low, char_I_GF_Low_percentage | |
| 657 movff opt_GF_high,char_I_GF_High_percentage | |
| 582 | 658 |
| 634 | 659 ; dive mode specific setup |
| 623 | 660 movff opt_dive_mode,lo ; get dive mode: 0= OC, 1= CCR, 2= gauge, 3= apnea, 4= pSCR |
| 661 tstfsz lo ; OC? | |
| 662 bra restart_set_modes_and_flags3 ; NO | |
| 663 bsf FLAG_oc_mode ; YES - set OC flag | |
| 604 | 664 IFDEF _rx_functions |
| 623 | 665 call option_cleanup_oTrMode_no_CCR ; - revert TR mode from 'CCR Dil+O2' to 'on' |
| 604 | 666 ENDIF |
| 623 | 667 return ; - done |
| 0 | 668 |
| 669 restart_set_modes_and_flags3: | |
| 623 | 670 decfsz lo,F ; CCR mode? |
| 671 bra restart_set_modes_and_flags4 ; NO | |
| 672 IFDEF _ccr_pscr | |
| 673 bsf FLAG_ccr_mode ; YES - set CCR flag | |
| 674 call option_cleanup_oCCRMode_CCR ; - revert CCR mode 'Sensor' to 'fixed SP' if no sensor interface available | |
| 604 | 675 IFDEF _rx_functions |
| 623 | 676 call option_cleanup_oTrMode_CCR ; - revert TR mode from 'ind.double' to 'on' |
| 677 ENDIF ; _rx_functions | |
| 656 | 678 IFDEF _external_sensor_eccr |
| 634 | 679 call enable_ir_s8_analog ; - enable IR/S8/analog interface |
| 656 | 680 ENDIF ; _external_sensor_eccr |
| 623 | 681 ENDIF ; _ccr_pscr |
| 682 return ; - done | |
| 0 | 683 |
| 684 restart_set_modes_and_flags4: | |
| 623 | 685 decfsz lo,F ; Gauge mode? |
| 686 bra restart_set_modes_and_flags5 ; NO | |
| 687 bsf FLAG_gauge_mode ; YES - set gauge flag | |
| 604 | 688 IFDEF _rx_functions |
| 623 | 689 call option_cleanup_oTrMode_no_CCR ; - revert TR mode from 'CCR Dil+O2' to 'on' |
| 604 | 690 ENDIF |
| 623 | 691 return ; - done |
| 0 | 692 |
|
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
475
diff
changeset
|
693 restart_set_modes_and_flags5: |
| 623 | 694 decfsz lo,F ; Apnea mode? |
| 695 bra restart_set_modes_and_flags6 ; NO | |
| 696 bsf FLAG_apnoe_mode ; YES - set apnea flag | |
| 631 | 697 movlw samplingrate_apnoe ; - get apnoe sampling rate |
| 698 movwf sampling_rate ; - overwrite user-selected 2/10 seconds setting with apnoe default | |
| 604 | 699 IFDEF _rx_functions |
| 623 | 700 call option_cleanup_oTrMode_no_CCR ; - revert TR mode from 'CCR Dil+O2' to 'on' |
| 604 | 701 ENDIF |
| 623 | 702 return ; - done |
| 703 | |
| 704 restart_set_modes_and_flags6: | |
| 705 ; pSCR mode then | |
| 706 IFDEF _ccr_pscr | |
| 707 bsf FLAG_pscr_mode ; - set pSCR mode flag | |
| 708 call option_cleanup_oCCRMode_pSCR ; - revert AutoSP to calculated SP, additionally revert Sensor to fixed SP if no sensor interface available | |
| 709 IFDEF _rx_functions | |
| 710 call option_cleanup_oTrMode_no_CCR ; - revert TR mode from 'CCR Dil+O2' to 'on' | |
| 711 ENDIF ; _rx_functions | |
| 656 | 712 IFDEF _external_sensor_eccr |
| 634 | 713 call enable_ir_s8_analog ; - enable IR/S8/analog interface |
| 656 | 714 ENDIF ; _external_sensor_eccr |
| 623 | 715 ENDIF ; _ccr_pscr |
| 716 return ; - done | |
| 560 | 717 |
| 634 | 718 ;----------------------------------------------------------------------------- |
|
410
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
719 |
| 634 | 720 END |
