Mercurial > public > hwos_code
annotate src/start.asm @ 446:77259baf89e2
minor
author | heinrichsweikamp |
---|---|
date | Fri, 19 Aug 2016 14:29:18 +0200 |
parents | 84bb5cbebe57 |
children | 850c1f3c4824 |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File start.asm | |
4 ; | |
5 ; Startup subroutines | |
6 ; | |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-08-06 : [mH] moving from OSTC code | |
11 | |
275 | 12 #include "hwos.inc" ; Mandatory header |
0 | 13 #include "ms5541.inc" |
14 #include "isr.inc" | |
15 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c | |
16 #include "eeprom_rs232.inc" | |
17 #include "math.inc" | |
18 #include "tft.inc" | |
19 #include "surfmode.inc" | |
20 #include "wait.inc" | |
21 #include "rtc.inc" | |
22 #include "external_flash.inc" | |
23 #include "convert.inc" | |
24 #include "strings.inc" | |
25 #include "tft_outputs.inc" | |
113 | 26 #include "adc_lightsensor.inc" |
27 #include "i2c.inc" | |
0 | 28 |
275 | 29 extern init_ostc |
0 | 30 extern option_restore_all |
31 | |
32 ;============================================================================= | |
33 ; Reset vector: What to do on device wake-up and hard reset. | |
34 ; | |
35 reset_v code 0x00000 | |
36 ; goto start | |
37 goto 0x1FF00 ; Bootloader | |
38 | |
39 ORG 0x00004 ; Needed for second-level bootloader | |
40 goto start | |
41 ;============================================================================= | |
42 boot CODE | |
43 global start | |
44 | |
45 start: | |
46 lfsr FSR0,0x000 ; Clear rambank 0-14 | |
47 clear_rambank: | |
48 clrf POSTINC0 | |
49 movlw 0x0F | |
50 cpfseq FSR0H ; Bank 14 done? | |
51 bra clear_rambank ; clear... | |
52 | |
275 | 53 call init_ostc |
0 | 54 |
55 ; Air pressure compensation after reset | |
56 call get_calibration_data ; Get calibration data from pressure sensor | |
57 banksel common ; get_calibration_data uses isr_backup | |
58 bcf no_sensor_int ; normal sensor interrupt mode | |
59 | |
10 | 60 call TFT_DisplayOff ; display off |
61 bsf LEDr ; Status LED | |
0 | 62 bcf pressure_refresh |
63 ; First pass will not have valid temperature! | |
64 btfss pressure_refresh ; Air pressure compensation | |
65 bra $-2 | |
441
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
429
diff
changeset
|
66 ; Second pass |
0 | 67 bcf pressure_refresh |
68 btfss pressure_refresh ; Air pressure compensation | |
69 bra $-2 | |
441
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
429
diff
changeset
|
70 bcf LEDr |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
429
diff
changeset
|
71 |
0 | 72 clrf rel_pressure+0 |
73 clrf rel_pressure+1 | |
74 clrf surface_interval+0 | |
75 clrf surface_interval+1 | |
76 | |
77 SAFE_2BYTE_COPY amb_pressure, last_surfpressure | |
78 | |
79 movlw LOW max_surfpressure | |
80 movff WREG,sub_a+0 ; max. "allowed" airpressure in mbar | |
81 movlw HIGH max_surfpressure | |
82 movff WREG,sub_a+1 ; max. "allowed" airpressure in mbar | |
83 movff last_surfpressure+0,sub_b+0 | |
84 movff last_surfpressure+1,sub_b+1 | |
85 call subU16 ; sub_c = sub_a - sub_b | |
86 btfss neg_flag ; Is 1080mbar < amb_pressure ? | |
87 bra start_copy_pressure ; NO: current airpressure is lower then "allowed" airpressure, ok! | |
88 | |
89 ; not ok! Overwrite with max. "allowed" airpressure | |
90 movlw LOW max_surfpressure | |
91 movff WREG,last_surfpressure+0 ; max. "allowed" airpressure in mbar | |
92 movlw HIGH max_surfpressure | |
93 movff WREG,last_surfpressure+1 ; max. "allowed" airpressure in mbar | |
94 | |
95 start_copy_pressure: | |
96 movff last_surfpressure+0,last_surfpressure_15min+0 | |
97 movff last_surfpressure+1,last_surfpressure_15min+1 | |
98 movff last_surfpressure+0,last_surfpressure_30min+0 | |
99 movff last_surfpressure+1,last_surfpressure_30min+1 ; Rests all airpressure registers | |
100 | |
101 ; reset deco data for surface mode | |
102 movlw d'79' | |
103 movff WREG,char_I_N2_ratio ; 79% N2 | |
104 SAFE_2BYTE_COPY amb_pressure,int_I_pres_respiration ; copy for deco routine | |
105 movff int_I_pres_respiration+0,int_I_pres_surface+0 ; copy for desat routine | |
106 movff int_I_pres_respiration+1,int_I_pres_surface+1 | |
107 | |
108 extern deco_reset | |
109 call deco_reset | |
133
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
110 |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
111 call rtc_init ; init clock |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
112 |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
113 movlw HIGH .512 ; =2 |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
114 movwf EEADRH |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
115 read_int_eeprom .0 |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
116 clrf EEADRH |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
117 movlw 0xAA |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
118 cpfseq EEDATA ; =0xAA |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
119 bra no_deco_restore ; No |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
120 |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
121 extern restore_decodata_from_eeprom |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
122 call restore_decodata_from_eeprom ; Reload deco data and date/time from eeprom |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
123 |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
124 no_deco_restore: |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
125 call deco_calc_desaturation_time ; calculate desaturation time |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
126 banksel common |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
127 call deco_calc_wo_deco_step_1_min ; calculate deco in surface mode |
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
113
diff
changeset
|
128 banksel common |
0 | 129 bcf menubit ; clear menu flag |
215 | 130 |
0 | 131 ; Check for Power-on reset here |
215 | 132 extern new_battery_menu,use_old_batteries |
133 ; ***************************************************************************** | |
134 ; "new_battery_menu" and "use_old_batteries" 'goto' back to "power_on_return" | |
135 ; ***************************************************************************** | |
0 | 136 |
416
4389fe9673b2
NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents:
410
diff
changeset
|
137 btfsc RCON,POR ; Was this a power-on reset? |
4389fe9673b2
NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents:
410
diff
changeset
|
138 goto use_old_batteries ; No, load last stored battery values and return to "power_on_return:" |
441
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
429
diff
changeset
|
139 |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
429
diff
changeset
|
140 ; bsf LEDg |
416
4389fe9673b2
NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents:
410
diff
changeset
|
141 goto new_battery_menu ; No, show "New battery dialog" and return to "power_on_return:" |
4389fe9673b2
NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents:
410
diff
changeset
|
142 |
4389fe9673b2
NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents:
410
diff
changeset
|
143 global power_on_return |
4389fe9673b2
NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents:
410
diff
changeset
|
144 power_on_return: |
4389fe9673b2
NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents:
410
diff
changeset
|
145 bsf RCON,POR ; Set bit for next detection |
0 | 146 |
215 | 147 call lt2942_get_status ; Check for gauge IC |
375
a9e35c1327aa
1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents:
359
diff
changeset
|
148 btfss rechargeable ; cR or 2 hardware? |
416
4389fe9673b2
NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents:
410
diff
changeset
|
149 bra power_on_return2 ; no |
215 | 150 |
375
a9e35c1327aa
1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents:
359
diff
changeset
|
151 movlw .30 |
a9e35c1327aa
1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents:
359
diff
changeset
|
152 movff WREG,opt_cR_button_right |
a9e35c1327aa
1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents:
359
diff
changeset
|
153 movff WREG,opt_cR_button_left ; Reset on power-on reset |
a9e35c1327aa
1.88 release, BUGFIX: Start with Sensor use from sleep (cR only), CHANGE: Apply button settings when button menu is closed, NEW: Reset button settings on a magnet reset (cR and OSTC 2)
heinrichsweikamp
parents:
359
diff
changeset
|
154 call piezo_config ; Yes, configure buttons |
416
4389fe9673b2
NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents:
410
diff
changeset
|
155 call piezo_config ; Yes, configure buttons (2 times) |
0 | 156 |
416
4389fe9673b2
NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents:
410
diff
changeset
|
157 power_on_return2: |
0 | 158 ; check firmware and reset Custom Functions after an update |
159 movlw d'1' | |
281
eb758a5b44eb
BUGFIX: Fix download issue for dives made with 1.80 firmware
heinrichsweikamp
parents:
276
diff
changeset
|
160 movwf EEADR ; =1 |
eb758a5b44eb
BUGFIX: Fix download issue for dives made with 1.80 firmware
heinrichsweikamp
parents:
276
diff
changeset
|
161 movwf EEADRH ; =1 |
0 | 162 call read_eeprom ; read current version x |
163 movff EEDATA,temp1 | |
164 incf EEADR,F ; set to 0x102 | |
165 call read_eeprom ; read current version y | |
166 movff EEDATA,temp2 | |
167 clrf EEADRH ; Reset EEADRH | |
168 | |
443 | 169 movlw softwareversion_x |
170 cpfseq temp1 ; compare version x | |
0 | 171 bra check_firmware_new ; is not equal -> reset CF and store new version in EEPROM |
172 | |
173 movlw softwareversion_y | |
174 cpfseq temp2 ; compare version y | |
175 bra check_firmware_new ; is not equal -> reset CF and store new version in EEPROM | |
176 bra restart ; x and y are equal -> do not reset cf | |
177 | |
178 check_firmware_new: | |
179 call TFT_boot ; Initialize TFT (includes clear screen) | |
180 clrf CCPR1L ; Backlight off | |
181 WIN_TOP .50 | |
182 WIN_LEFT .10 | |
183 movlw LOW 0x1E000 | |
184 movwf TBLPTRL | |
185 movlw HIGH 0x1E000 | |
186 movwf TBLPTRH | |
187 movlw UPPER 0x1E000 | |
188 movwf TBLPTRU | |
189 extern color_image | |
190 call color_image ; Show logo | |
191 call TFT_standard_color | |
192 WIN_SMALL .10,.100 | |
427 | 193 STRCPY_PRINT "Update successful!" ; Hard coded since language switch does not work here |
0 | 194 WIN_SMALL .10,.140 |
427 | 195 STRCPY "New Firmware: " |
0 | 196 movlw softwareversion_x |
197 movwf lo | |
198 bsf leftbind | |
199 output_8 | |
200 PUTC "." | |
201 movlw softwareversion_y | |
202 movwf lo | |
45 | 203 output_99x |
0 | 204 bcf leftbind |
205 STRCAT_PRINT "" ; Print second row | |
206 call TFT_Display_FadeIn ; Display resulting surface screen. | |
207 | |
208 ; place "after-update reset" here... | |
93
5e1ef9bf32ec
clear pressure sensor compensation upon update
heinrichsweikamp
parents:
52
diff
changeset
|
209 |
5e1ef9bf32ec
clear pressure sensor compensation upon update
heinrichsweikamp
parents:
52
diff
changeset
|
210 extern oPressureAdjust, option_reset, option_save |
5e1ef9bf32ec
clear pressure sensor compensation upon update
heinrichsweikamp
parents:
52
diff
changeset
|
211 lfsr FSR0,oPressureAdjust |
5e1ef9bf32ec
clear pressure sensor compensation upon update
heinrichsweikamp
parents:
52
diff
changeset
|
212 call option_reset ; Reset FSR0 option to factory default. |
5e1ef9bf32ec
clear pressure sensor compensation upon update
heinrichsweikamp
parents:
52
diff
changeset
|
213 lfsr FSR0,oPressureAdjust |
5e1ef9bf32ec
clear pressure sensor compensation upon update
heinrichsweikamp
parents:
52
diff
changeset
|
214 call option_save ; Save in EEPROM |
5e1ef9bf32ec
clear pressure sensor compensation upon update
heinrichsweikamp
parents:
52
diff
changeset
|
215 |
281
eb758a5b44eb
BUGFIX: Fix download issue for dives made with 1.80 firmware
heinrichsweikamp
parents:
276
diff
changeset
|
216 call fix_180_dives ; fix dives made with the 1.80 |
eb758a5b44eb
BUGFIX: Fix download issue for dives made with 1.80 firmware
heinrichsweikamp
parents:
276
diff
changeset
|
217 |
410
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
218 rcall backup_flash_page ; backup the first 128bytes from flash to EEPROM |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
219 |
0 | 220 movlw d'1' ; store current version in EEPROM |
281
eb758a5b44eb
BUGFIX: Fix download issue for dives made with 1.80 firmware
heinrichsweikamp
parents:
276
diff
changeset
|
221 movwf EEADR ; =1 |
eb758a5b44eb
BUGFIX: Fix download issue for dives made with 1.80 firmware
heinrichsweikamp
parents:
276
diff
changeset
|
222 movwf EEADRH ; =1 |
0 | 223 movlw softwareversion_x |
224 movwf EEDATA | |
225 call write_eeprom ; write version x | |
226 incf EEADR,F ; set to 0x102 | |
227 movlw softwareversion_y | |
228 movwf EEDATA | |
229 call write_eeprom ; write version y | |
230 clrf EEADRH ; Reset EEADRH | |
231 | |
232 movlw .7 | |
233 movwf lo | |
234 check_firmware_new2: | |
235 ; Wait 1 second | |
236 bcf onesecupdate | |
237 btfss onesecupdate | |
238 bra $-2 | |
239 decfsz lo,F ; Wait 10 seconds... | |
240 bra check_firmware_new2 | |
241 | |
242 global restart | |
243 restart: | |
244 clrf STKPTR ; Never return from here | |
276
e4cb495aed3d
Increase byte timeout in PC download mode, faster response to "Exit" in main menu
heinrichsweikamp
parents:
275
diff
changeset
|
245 clrf CCP1CON ; stop PWM |
e4cb495aed3d
Increase byte timeout in PC download mode, faster response to "Exit" in main menu
heinrichsweikamp
parents:
275
diff
changeset
|
246 bcf PORTC,2 ; Pull PWM out to GND |
e4cb495aed3d
Increase byte timeout in PC download mode, faster response to "Exit" in main menu
heinrichsweikamp
parents:
275
diff
changeset
|
247 |
21
79b2084fd75a
Reset options to default if they are not within the allowed min/max values
heinrichsweikamp
parents:
16
diff
changeset
|
248 extern option_save_all, option_check_all |
79b2084fd75a
Reset options to default if they are not within the allowed min/max values
heinrichsweikamp
parents:
16
diff
changeset
|
249 |
0 | 250 btfsc menubit ; Return from Menu/COMM mode or timeout? |
251 call option_save_all ; Yes, save all settings into EEPROM | |
252 | |
429 | 253 call option_restore_all ; Restore everything from EEPROM into RAM |
23
e402813343b6
new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents:
21
diff
changeset
|
254 call option_check_all ; Check all options (and reset if not within their min/max boundaries) |
429 | 255 call option_save_all ; Save all settings into EEPROM after they have been checked |
23
e402813343b6
new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents:
21
diff
changeset
|
256 |
429 | 257 clrf flag1 ; clear all flags |
258 clrf flag2 | |
259 clrf flag3 | |
260 clrf flag4 | |
261 clrf flag5 | |
262 clrf flag6 | |
0 | 263 clrf flag7 |
264 clrf flag8 | |
429 | 265 clrf flag9 |
266 clrf flag10 | |
267
f64afa14ef07
BUGFIX: Analog sensors were ignored in 1.76
heinrichsweikamp
parents:
255
diff
changeset
|
267 ; Do not clear flag11 (Sensor calibration and charger status) |
255 | 268 clrf flag12 |
319 | 269 clrf flag13 |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
224
diff
changeset
|
270 clrf hardware_flag ; hardware descriptor flag |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
224
diff
changeset
|
271 bsf tft_is_dimming ; TFT is dimming up (soon), ignore ambient sensor! |
23
e402813343b6
new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents:
21
diff
changeset
|
272 |
236 | 273 ; configure hardware_flag byte |
274 | |
429 | 275 bsf ambient_sensor ; Set flag |
276 bsf optical_input ; Set flag | |
236 | 277 |
113 | 278 call lt2942_get_status ; Check for gauge IC |
429 | 279 btfss rechargeable ; cR/2 hardware? |
236 | 280 bra restart2 ; No |
281 | |
113 | 282 call lt2942_init ; Yes, init battery gauge IC |
429 | 283 bcf optical_input ; Clear flag |
284 | |
441
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
429
diff
changeset
|
285 banksel 0xF16 |
429 | 286 bcf ANCON0,7 ; AN7 Digital input |
441
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
429
diff
changeset
|
287 banksel common |
429 | 288 bcf lightsen_power ; Power-down ambient light sensor |
236 | 289 bcf ambient_sensor ; Clear flag |
441
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
429
diff
changeset
|
290 nop |
429 | 291 btfss PORTF,2 ; Light sensor available? |
292 bsf ambient_sensor ; Yes. | |
441
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
429
diff
changeset
|
293 banksel 0xF16 |
429 | 294 bsf ANCON0,7 ; AN7 Analog again |
441
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
429
diff
changeset
|
295 banksel common |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
429
diff
changeset
|
296 bsf lightsen_power ; Power-up ambient light sensor again |
429 | 297 |
243 | 298 restart2: |
299 btfsc vusb_in | |
300 bra restart3 ; USB (and powered on) | |
301 bcf PORTE,0 ; Start comms | |
302 WAITMS d'1' | |
303 btfss vusb_in | |
304 bra restart3 ; USB (and powered off) | |
305 bsf ble_available ; ble available | |
306 restart3: | |
307 bsf PORTE,0 ; Stop comms | |
248
afe73e1a0181
support hardware_flag for all possible hardware combinations
heinrichsweikamp
parents:
243
diff
changeset
|
308 btfsc ble_available ; ble available? |
afe73e1a0181
support hardware_flag for all possible hardware combinations
heinrichsweikamp
parents:
243
diff
changeset
|
309 bra restart4 ; Yes, can't be a cR |
afe73e1a0181
support hardware_flag for all possible hardware combinations
heinrichsweikamp
parents:
243
diff
changeset
|
310 btfss rechargeable ; Rechargeable |
afe73e1a0181
support hardware_flag for all possible hardware combinations
heinrichsweikamp
parents:
243
diff
changeset
|
311 bra restart4 ; No, can't be a cR |
afe73e1a0181
support hardware_flag for all possible hardware combinations
heinrichsweikamp
parents:
243
diff
changeset
|
312 bsf analog_o2_input ; Set flag for analog |
249 | 313 restart4: |
314 ; The hardware_flag is now: | |
315 ; 3: 0x0A | |
316 ; cR: 0x05 | |
317 ; 2 with BLE: 0x11 | |
318 ; 3 with BLE: 0x1A | |
429 | 319 ; 2 with ambient: 0x13 |
113 | 320 |
0 | 321 ; Select high altitude (Fly) mode? |
322 movff last_surfpressure_30min+0,sub_b+0 | |
323 movff last_surfpressure_30min+1,sub_b+1 | |
324 movlw HIGH high_altitude_threshold | |
325 movwf sub_a+1 | |
326 movlw LOW high_altitude_threshold ; Hard-wired 880mbar | |
327 movwf sub_a+0 | |
328 call subU16 ; sub_c = sub_a - sub_b | |
329 btfss neg_flag ; Result negative (Ambient>880mbar)? | |
330 bsf high_altitude_mode ; No, Set Flag! | |
331 | |
236 | 332 btfss analog_o2_input |
165 | 333 bsf TRISB,3 |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
224
diff
changeset
|
334 btfss rechargeable |
165 | 335 bsf TRISG,0 |
0 | 336 call ext_flash_disable_protection ; Disable write protection for external flash |
337 | |
155
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
338 bsf flip_screen ; Flip 180° |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
339 TSTOSS opt_flip_screen ; =1: Flip the screen |
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
154
diff
changeset
|
340 bcf flip_screen ; Normal orientation |
151 | 341 |
0 | 342 goto surfloop ; Jump to Surfaceloop! |
343 | |
344 ;============================================================================= | |
345 ; Setup all flags and parameters for divemode and simulator computations. | |
346 ; | |
347 global restart_set_modes_and_flags | |
348 restart_set_modes_and_flags: ; "Call"ed from divemode, as well! | |
349 call option_restore_all ; Restore everything from EEPROM | |
24 | 350 |
351 ; Setup sampling rate | |
352 movlw .2 | |
353 movwf samplingrate | |
354 TSTOSS opt_sampling_rate ; =1: 10s, =0: 2s | |
355 bra restart_set_modes_and_flags1 | |
356 movlw .10 | |
357 movwf samplingrate | |
358 restart_set_modes_and_flags1: | |
0 | 359 movff opt_dive_mode,lo ; 0=OC, 1=CC, 2=Gauge, 3=Apnea |
360 | |
361 bcf FLAG_apnoe_mode | |
362 bcf FLAG_ccr_mode ; =1: CCR mode (Fixed ppO2 or Sensor) active | |
363 bcf FLAG_gauge_mode ; =1: In Gauge mode | |
224
5a4801918be9
temporally disable "Copy disable flags from digital input" routine
heinrichsweikamp
parents:
220
diff
changeset
|
364 call disable_ir_s8 ; IR off |
0 | 365 |
366 tstfsz lo | |
367 bra restart_set_modes_and_flags2 | |
368 ; OC Mode | |
369 return | |
370 | |
371 restart_set_modes_and_flags2: | |
372 decfsz lo,F | |
373 bra restart_set_modes_and_flags3 | |
374 ; CC Mode | |
359 | 375 btfsc analog_o2_input ; cR? |
376 bra restart_set_modes_and_flags2b ; Yes, skip mode check | |
377 btfsc optical_input ; 3 | |
378 bra restart_set_modes_and_flags2b ; Yes, skip mode check | |
379 ; Make sure Sensor is not selected | |
380 ; opt_ccr_mode must be <> 1 (=0: Fixed SP, =1: Sensor, =2: Auto SP) | |
381 banksel opt_ccr_mode | |
382 movlw .1 | |
383 cpfseq opt_ccr_mode ; = Sensor? | |
384 bra restart_set_modes_and_flags2b ; No | |
385 clrf opt_ccr_mode ; Yes, reset to Fixed SP | |
386 restart_set_modes_and_flags2b: | |
387 banksel common | |
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
319
diff
changeset
|
388 bsf FLAG_ccr_mode ; =1: CCR mode (Fixed SP, Auto SP or Sensor) active |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
165
diff
changeset
|
389 call enable_ir_s8 ; Enable IR/S8-Port |
0 | 390 return |
391 | |
392 restart_set_modes_and_flags3: | |
393 decfsz lo,F | |
394 bra restart_set_modes_and_flags4 | |
395 ; Gauge Mode | |
396 bsf FLAG_gauge_mode ; =1: In Gauge mode | |
397 return | |
398 | |
399 restart_set_modes_and_flags4: | |
400 ; Apnea Mode | |
401 bsf FLAG_apnoe_mode | |
402 return ; start in Surfacemode | |
403 | |
410
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
404 backup_flash_page: ; backup the first 128bytes from flash to EEPROM |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
405 ; Start address in internal flash |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
406 movlw 0x00 |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
407 movwf TBLPTRL |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
408 movwf TBLPTRH |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
409 movwf TBLPTRU |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
410 |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
411 movlw .128 |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
412 movwf lo ; Byte counter |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
413 clrf EEADR |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
414 movlw .3 |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
415 movwf EEADRH ; Setup backup address |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
416 |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
417 TBLRD*- ; Dummy read to be in 128 byte block |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
418 backup_flash_loop: |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
419 tblrd+* ; Table Read with Pre-Increment |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
420 movff TABLAT,EEDATA ; put 1 byte |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
421 call write_eeprom ; save it in EEPROM |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
422 incf EEADR,F |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
423 decfsz lo,F ; 128byte done? |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
424 bra backup_flash_loop ; No |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
425 clrf EEADRH ; Reset EEADRH |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
426 return ; Done. |
d3087a8ed7e1
BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents:
375
diff
changeset
|
427 |
0 | 428 END |