Mercurial > public > hwos_code
annotate src/isr.asm @ 277:24daa6523218
1.79beta - update internal sensor registers during boot
author | heinrichsweikamp |
---|---|
date | Mon, 18 May 2015 14:24:50 +0200 |
parents | 653a3ab08062 |
children | cf929551d31c |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File isr.asm | |
4 ; | |
5 ; INTERUPT subroutines | |
6 ; | |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-05-24 : [jDG] Cleanups from initial Matthias code. | |
11 | |
275 | 12 #include "hwos.inc" |
0 | 13 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c |
14 #include "ms5541.inc" | |
15 #include "adc_lightsensor.inc" | |
16 | |
17 ;============================================================================= | |
18 | |
19 extern start | |
20 | |
21 isr_high CODE 0x0008 ;High Priority Interrups | |
22 bra HighInt | |
23 nop | |
24 nop | |
25 nop | |
26 nop | |
27 nop | |
28 nop | |
29 bra HighInt | |
30 | |
31 isr_low CODE 0x00018 ;Low Priority Interrups | |
32 ; *** low priority interrupts not used | |
33 retfie FAST ; Restores BSR, STATUS and WREG | |
34 | |
35 HighInt: | |
36 movff PRODL,isr_prod+0 | |
37 movff PRODH,isr_prod+1 | |
38 | |
39 ; Buttons | |
40 btfsc PIR1,TMR1IF ; Timer1 INT (Button hold-down Timer) | |
41 rcall timer1int | |
42 btfsc INTCON,INT0IF ; Buttons | |
43 rcall isr_switch_right | |
44 btfsc INTCON3,INT1IF ; Buttons | |
45 rcall isr_switch_left | |
46 | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
47 ; IR/S8-Link |
113 | 48 btfsc PIR3,RC2IF ; UART2 |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
49 rcall isr_uart2 ; IR/S8-Link |
0 | 50 btfsc PIR2,TMR3IF ; Timer 3 |
51 rcall isr_timer3 ; IR-Link Timeout | |
113 | 52 |
53 ; Pressure sensor and others | |
54 btfsc PIR5,TMR7IF ; Timer 7 | |
55 rcall isr_tmr7 ; Every 62,5ms | |
56 | |
0 | 57 ; RTCC |
58 btfsc PIR3,RTCCIF ; Real-time-clock interrupt | |
59 rcall isr_rtcc ; May return in bank common! | |
60 | |
61 movff isr_prod+1,PRODH | |
62 movff isr_prod+0,PRODL | |
63 retfie FAST ; Restores BSR, STATUS and WREG | |
64 | |
65 ;============================================================================= | |
66 | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
67 isr_uart2: ; IR/S8-Link |
0 | 68 banksel RCREG2 |
69 movf RCREG2,W | |
70 bcf RCSTA2,CREN ; Clear receiver status | |
71 bsf RCSTA2,CREN | |
72 banksel isr_backup | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
73 incf ir_s8_counter,F ; Increase counter |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
74 movff ir_s8_counter,isr1_temp ; Copy |
0 | 75 dcfsnz isr1_temp,F |
204 | 76 movwf ir_s8_buffer+.0 |
0 | 77 dcfsnz isr1_temp,F |
204 | 78 movwf ir_s8_buffer+.1 |
0 | 79 dcfsnz isr1_temp,F |
204 | 80 movwf ir_s8_buffer+.2 |
0 | 81 dcfsnz isr1_temp,F |
204 | 82 movwf ir_s8_buffer+.3 |
0 | 83 dcfsnz isr1_temp,F |
204 | 84 movwf ir_s8_buffer+.4 |
0 | 85 dcfsnz isr1_temp,F |
204 | 86 movwf ir_s8_buffer+.5 |
0 | 87 dcfsnz isr1_temp,F |
204 | 88 movwf ir_s8_buffer+.6 |
0 | 89 dcfsnz isr1_temp,F |
204 | 90 movwf ir_s8_buffer+.7 |
0 | 91 dcfsnz isr1_temp,F |
204 | 92 movwf ir_s8_buffer+.8 |
0 | 93 dcfsnz isr1_temp,F |
204 | 94 movwf ir_s8_buffer+.9 |
0 | 95 dcfsnz isr1_temp,F |
204 | 96 movwf ir_s8_buffer+.10 |
0 | 97 dcfsnz isr1_temp,F |
204 | 98 movwf ir_s8_buffer+.11 |
0 | 99 dcfsnz isr1_temp,F |
204 | 100 movwf ir_s8_buffer+.12 |
0 | 101 dcfsnz isr1_temp,F |
204 | 102 movwf ir_s8_buffer+.13 |
0 | 103 dcfsnz isr1_temp,F |
204 | 104 movwf ir_s8_buffer+.14 |
0 | 105 dcfsnz isr1_temp,F |
204 | 106 movwf ir_s8_buffer+.15 |
113 | 107 dcfsnz isr1_temp,F |
204 | 108 movwf ir_s8_buffer+.16 |
113 | 109 dcfsnz isr1_temp,F |
204 | 110 movwf ir_s8_buffer+.17 |
113 | 111 |
0 | 112 clrf TMR3L ; Preload timer |
113 movlw .253 | |
114 movwf TMR3H | |
115 bsf T3CON,TMR3ON ; (Re)Start Timeout counter | |
116 return | |
117 | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
118 isr_timer3: ; IR/S8-Link Timeout |
0 | 119 bcf T3CON,TMR3ON ; Stop Timer3 |
120 banksel isr_backup ; Select Bank0 for ISR data. | |
121 movlw .15 | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
122 cpfseq ir_s8_counter ; Got exact 15bytes? |
0 | 123 bra isr_timer3_1 ; No, test for 16bytes |
113 | 124 bra isr_timer3_ir ; Got 15 bytes, compute local checksum |
0 | 125 isr_timer3_1: |
126 movlw .16 | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
127 cpfseq ir_s8_counter ; Got exact 16bytes? |
113 | 128 bra isr_timer3_2 ; No, test for 17bytes |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
129 tstfsz ir_s8_buffer+.15 ; Last byte=0x00 |
0 | 130 bra isr_timer3_exit ; No, exit |
113 | 131 bra isr_timer3_ir ; Got 16 bytes, compute local checksum |
132 isr_timer3_2: | |
133 movlw .17 | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
134 cpfseq ir_s8_counter ; Got exact 17bytes? |
113 | 135 bra isr_timer3_exit ; No, exit |
136 bra isr_timer3_s8 ; S8 data | |
0 | 137 |
113 | 138 isr_timer3_ir: ; IR input |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
139 movff ir_s8_buffer+.0,PRODL |
0 | 140 clrf PRODH |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
141 movf ir_s8_buffer+.1,W |
0 | 142 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
143 movf ir_s8_buffer+.2,W |
0 | 144 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
145 movf ir_s8_buffer+.3,W |
0 | 146 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
147 movf ir_s8_buffer+.4,W |
0 | 148 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
149 movf ir_s8_buffer+.5,W |
0 | 150 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
151 movf ir_s8_buffer+.6,W |
0 | 152 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
153 movf ir_s8_buffer+.7,W |
0 | 154 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
155 movf ir_s8_buffer+.8,W |
0 | 156 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
157 movf ir_s8_buffer+.9,W |
0 | 158 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
159 movf ir_s8_buffer+.10,W |
0 | 160 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
161 movf ir_s8_buffer+.11,W |
0 | 162 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
163 movf ir_s8_buffer+.12,W |
0 | 164 rcall isr_timer3_checksum |
165 | |
166 ; Compare checksum | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
167 movf ir_s8_buffer+.13,W |
0 | 168 cpfseq PRODL ; Checksum ok? |
169 bra isr_timer3_exit ; No, exit | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
170 movf ir_s8_buffer+.14,W |
0 | 171 cpfseq PRODH ; Checksum ok? |
172 bra isr_timer3_exit ; No, exit | |
173 | |
174 ; Checksum OK, copy results | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
175 movff ir_s8_buffer+.1,hud_status_byte |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
176 movff ir_s8_buffer+.2,o2_mv_sensor1+0 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
177 movff ir_s8_buffer+.3,o2_mv_sensor1+1 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
178 movff ir_s8_buffer+.4,o2_mv_sensor2+0 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
179 movff ir_s8_buffer+.5,o2_mv_sensor2+1 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
180 movff ir_s8_buffer+.6,o2_mv_sensor3+0 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
181 movff ir_s8_buffer+.7,o2_mv_sensor3+1 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
182 movff ir_s8_buffer+.8,o2_ppo2_sensor1 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
183 movff ir_s8_buffer+.9,o2_ppo2_sensor2 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
184 movff ir_s8_buffer+.10,o2_ppo2_sensor3 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
185 movff ir_s8_buffer+.11,hud_battery_mv+0 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
186 movff ir_s8_buffer+.12,hud_battery_mv+1 |
0 | 187 |
188 movlw ir_timeout_value ; multiples of 62,5ms | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
189 movwf ir_S8_timeout ; Reload timeout |
227
03946aa48fa5
NEW: Support for hwHUD without the LED module
heinrichsweikamp
parents:
204
diff
changeset
|
190 |
03946aa48fa5
NEW: Support for hwHUD without the LED module
heinrichsweikamp
parents:
204
diff
changeset
|
191 banksel hud_status_byte |
03946aa48fa5
NEW: Support for hwHUD without the LED module
heinrichsweikamp
parents:
204
diff
changeset
|
192 bsf hud_connection_ok ; Set manually for hwHUD w/o the HUD module... |
03946aa48fa5
NEW: Support for hwHUD without the LED module
heinrichsweikamp
parents:
204
diff
changeset
|
193 banksel isr_backup ; Select Bank0 for ISR data. |
0 | 194 |
195 isr_timer3_exit: | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
196 clrf ir_s8_counter ; Clear pointer |
0 | 197 bcf PIR2,TMR3IF ; Clear flag |
198 return | |
199 | |
200 isr_timer3_checksum: | |
201 addwf PRODL,F | |
202 movlw .0 | |
203 addwfc PRODH,F | |
204 return | |
205 | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
206 isr_timer3_s8: ; S8 input |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
207 movff ir_s8_buffer+.0,PRODL |
113 | 208 clrf PRODH |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
209 movf ir_s8_buffer+.1,W |
113 | 210 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
211 movf ir_s8_buffer+.2,W |
113 | 212 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
213 movf ir_s8_buffer+.3,W |
113 | 214 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
215 movf ir_s8_buffer+.4,W |
113 | 216 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
217 movf ir_s8_buffer+.5,W |
113 | 218 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
219 movf ir_s8_buffer+.6,W |
113 | 220 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
221 movf ir_s8_buffer+.7,W |
113 | 222 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
223 movf ir_s8_buffer+.8,W |
113 | 224 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
225 movf ir_s8_buffer+.9,W |
113 | 226 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
227 movf ir_s8_buffer+.10,W |
113 | 228 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
229 movf ir_s8_buffer+.11,W |
113 | 230 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
231 movf ir_s8_buffer+.12,W |
113 | 232 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
233 movf ir_s8_buffer+.13,W |
113 | 234 rcall isr_timer3_checksum |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
235 movf ir_s8_buffer+.14,W |
113 | 236 rcall isr_timer3_checksum |
237 | |
238 ; Compare checksum | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
239 movf ir_s8_buffer+.15,W |
113 | 240 cpfseq PRODL ; Checksum ok? |
241 bra isr_timer3_exit ; No, exit | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
242 movf ir_s8_buffer+.16,W |
113 | 243 cpfseq PRODH ; Checksum ok? |
244 bra isr_timer3_exit ; No, exit | |
245 | |
246 ; Checksum OK, copy results | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
247 movff ir_s8_buffer+.3,hud_status_byte |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
248 movff ir_s8_buffer+.13,hud_battery_mv+0 |
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
249 movff ir_s8_buffer+.14,hud_battery_mv+1 |
113 | 250 |
251 banksel common | |
271 | 252 btfsc new_s8_data_available ; =1: Old data already processed? |
268
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
253 bra isr_timer3_skip ; No, skip copying new results |
113 | 254 |
268
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
255 movff ir_s8_buffer+.6,s8_rawdata_sensor1+2 |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
256 movff ir_s8_buffer+.5,s8_rawdata_sensor1+1 |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
257 movff ir_s8_buffer+.4,s8_rawdata_sensor1+0 |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
258 movff ir_s8_buffer+.9,s8_rawdata_sensor2+2 |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
259 movff ir_s8_buffer+.8,s8_rawdata_sensor2+1 |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
260 movff ir_s8_buffer+.7,s8_rawdata_sensor2+0 |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
261 movff ir_s8_buffer+.12,s8_rawdata_sensor3+2 |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
262 movff ir_s8_buffer+.11,s8_rawdata_sensor3+1 |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
263 movff ir_s8_buffer+.10,s8_rawdata_sensor3+0 |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
264 banksel common |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
265 bsf new_s8_data_available ; set flag |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
266 |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
267 isr_timer3_skip: |
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
268 banksel ir_S8_timeout |
113 | 269 movlw ir_timeout_value ; multiples of 62,5ms |
268
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
236
diff
changeset
|
270 movwf ir_S8_timeout ; Reload timeout |
113 | 271 bra isr_timer3_exit ; Exit |
272 | |
273 | |
0 | 274 ;============================================================================= |
275 | |
276 isr_tmr7: ; each 62,5ms | |
277 bcf PIR5,TMR7IF ; clear flag | |
278 banksel 0xF16 ; Addresses, F16h through F5Fh, are also used by SFRs, but are not part of the Access RAM. | |
279 movlw .248 | |
280 movwf TMR7H ; -> Rollover after 2048 cycles -> 62,5ms | |
281 | |
282 banksel isr_backup | |
283 movf max_CCPR1L,W ; Dimm value | |
284 cpfseq CCPR1L ; = current PWM value? | |
285 rcall isr_dimm_tft ; No, adjust until max_CCPR1L=CCPR1L ! | |
286 | |
287 banksel isr_backup | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
288 decfsz ir_S8_timeout,F ; IR Data still valid? |
0 | 289 bra isr_tmr7_2 ; Yes, continue |
290 ; timeout, clear IR-Data | |
291 | |
292 movlw ir_timeout_value ; multiples of 62,5ms | |
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
178
diff
changeset
|
293 movwf ir_S8_timeout ; Reload timeout |
0 | 294 |
295 banksel common | |
236 | 296 btfss analog_o2_input |
113 | 297 bra isr_tmr7_1a ; Always with normal ostc3 hardware |
298 btfss s8_digital | |
299 bra isr_tmr7_2 ; only when digital | |
300 isr_tmr7_1a: | |
0 | 301 clrf o2_mv_sensor1+0 |
302 clrf o2_mv_sensor1+1 | |
303 clrf o2_mv_sensor2+0 | |
304 clrf o2_mv_sensor2+1 | |
305 clrf o2_mv_sensor3+0 | |
306 clrf o2_mv_sensor3+1 | |
307 clrf hud_battery_mv+0 | |
308 clrf hud_battery_mv+1 | |
309 clrf hud_status_byte | |
310 clrf o2_ppo2_sensor1 | |
311 clrf o2_ppo2_sensor2 | |
312 clrf o2_ppo2_sensor3 | |
313 | |
314 isr_tmr7_2: | |
315 banksel common | |
316 btfss no_sensor_int ; No sensor interrupt (because it's addressed during sleep) | |
317 bra isr_sensor_state2 ; No, continue | |
318 banksel isr_backup ; Back to Bank0 ISR data | |
319 return | |
320 | |
321 isr_set_speed_to_normal: | |
322 ; Set Speed to normal | |
323 movlw b'01110010' | |
324 movwf OSCCON ; 16MHz INTOSC | |
325 movlw b'00000000' | |
326 movwf OSCTUNE ; 4x PLL Disable (Bit6) - only works with 8 or 16MHz (=32 or 64MHz) | |
327 movlw b'00001101' ; 1:2 Postscaler, 1:4 Prescaler, Timer 2 start -> 1960Hz (no-flicker) | |
328 movwf T2CON | |
329 btfss OSCCON,HFIOFS | |
330 bra $-2 ; Wait until clock is stable | |
331 return | |
332 | |
333 isr_sensor_state2: | |
334 banksel common | |
335 movff sensor_state_counter,WREG | |
336 btfss WREG,0 ; every 1/4 second | |
337 bsf quarter_second_update ; Set flag | |
338 movlw d'2' | |
339 cpfseq speed_setting ; Set to normal in case it's not already in normal speed mode | |
340 rcall isr_set_speed_to_normal | |
341 banksel isr_backup ; Back to Bank0 ISR data | |
342 | |
343 incf sensor_state_counter,F ; counts to eight for state maschine | |
344 | |
345 ; State 1: Clear flags and average registers, get temperature (51us) and start pressure integration (73,5us) | |
346 ; State 2: Get pressure (51us), start temperature integration (73,5us) and calculate temperature compensated pressure (233us) | |
347 ; State 3: Get temperature (51us) and start pressure integration (73,5us) | |
348 ; State 4: Get pressure (51us), start temperature integration (73,5us) and calculate temperature compensated pressure (233us) | |
349 ; State 5: Get temperature (51us) and start pressure integration (73,5us) | |
350 ; State 6: Get pressure (51us), start temperature integration (73,5us) and calculate temperature compensated pressure (233us) | |
351 ; State 7: Get temperature (51us) and start pressure integration (73,5us) | |
352 ; State 8: Get pressure (51us), start temperature integration (73,5us), calculate temperature compensated pressure (233us) and build average for half-second update of tempperature and pressure | |
353 | |
354 movff sensor_state_counter,WREG ; WREG used as temp here... | |
355 dcfsnz WREG,F | |
356 bra sensor_int_state1_plus_restart ; Do State 1 | |
357 dcfsnz WREG,F | |
358 bra sensor_int_state2 ; Do State 2 | |
359 dcfsnz WREG,F | |
360 bra sensor_int_state1 ; Do State 3 | |
361 dcfsnz WREG,F | |
362 bra sensor_int_state2 ; Do State 4 | |
363 dcfsnz WREG,F | |
364 bra sensor_int_state1 ; Do State 5 | |
365 dcfsnz WREG,F | |
366 bra sensor_int_state2 ; Do State 6 | |
367 dcfsnz WREG,F | |
368 bra sensor_int_state1 ; Do State 7 | |
369 ; bra sensor_int2_plus_average ; Do State 8 | |
370 ;sensor_int2_plus_average: | |
371 ; First, do state2: | |
372 call get_pressure_value ; State2: Get pressure (51us) | |
373 call get_temperature_start ; and start temperature integration (73,5us) | |
374 call calculate_compensation ; calculate temperature compensated pressure (27us) | |
375 ; Build average | |
376 bcf STATUS,C ; clear carry bit. | |
377 rrcf amb_pressure_avg+1 ; amb_pressure sum / 2 | |
378 rrcf amb_pressure_avg+0 | |
379 bcf STATUS,C ; clear carry bit, twice. | |
380 rrcf amb_pressure_avg+1 ; amb_pressure sum / 4 | |
381 rrcf amb_pressure_avg+0 | |
382 | |
383 movff amb_pressure_avg+1,amb_pressure+1 ; copy into actual register | |
384 movff amb_pressure_avg+0,amb_pressure+0 | |
385 | |
386 bcf STATUS,C | |
387 btfsc temperature_avg+1,7 ; Copy sign bit to carry | |
388 bsf STATUS,C | |
389 rrcf temperature_avg+1 ; Signed temperature /2 | |
390 rrcf temperature_avg+0 | |
391 bcf STATUS,C | |
392 btfsc temperature_avg+1,7 ; Copy sign bit to carry | |
393 bsf STATUS,C | |
394 rrcf temperature_avg+1 ; Signed temperature /4 | |
395 rrcf temperature_avg+0 | |
396 | |
397 movff temperature_avg+1,temperature+1 ; copy into actual register | |
398 movff temperature_avg+0,temperature+0 | |
399 | |
400 banksel common ; flag1 is in Bank1 | |
401 bcf temp_changed ; Clear flag for temperature update | |
402 bcf pressure_refresh ; Clear flag for pressure update | |
403 banksel isr_backup ; Back to Bank0 ISR data | |
404 | |
405 ; Temp changed? | |
406 movf temperature+0,W | |
407 cpfseq last_temperature+0 | |
408 bra isr_sensor_state2_2 ; Yes | |
409 movf temperature+1,W | |
410 cpfseq last_temperature+1 | |
411 bra isr_sensor_state2_2 ; Yes | |
412 | |
413 bra isr_sensor_state2_3 ; no change | |
414 | |
415 isr_sensor_state2_2: | |
416 banksel common ; flag1 is in Bank1 | |
417 bsf temp_changed ; Yes | |
418 banksel isr_backup ; Back to Bank0 ISR data | |
419 isr_sensor_state2_3: | |
420 movff temperature+0,last_temperature+0 ; Copy for compare | |
421 movff temperature+1,last_temperature+1 | |
422 | |
423 movf amb_pressure+0,W | |
424 cpfseq last_pressure+0 | |
425 bra isr_sensor_state2_4 ; Yes | |
426 movf amb_pressure+1,W | |
427 cpfseq last_pressure+1 | |
428 bra isr_sensor_state2_4 ; Yes | |
429 | |
430 bra isr_sensor_state2_5 ; No change | |
431 isr_sensor_state2_4: | |
432 banksel common ; flag1 is in Bank1 | |
433 bsf pressure_refresh ; Yes | |
434 banksel isr_backup ; Back to Bank0 ISR data | |
435 isr_sensor_state2_5: | |
436 movff amb_pressure+0,last_pressure+0 ; Copy for compare | |
437 movff amb_pressure+1,last_pressure+1 | |
438 | |
439 clrf sensor_state_counter ; Then reset State counter | |
176 | 440 banksel common ; flag2 is in Bank1 |
0 | 441 btfss simulatormode_active ; are we in simulator mode? |
442 bra comp_air_pressure ; no | |
176 | 443 ; Always set pressure_refresh flag in simulator mode |
444 bsf pressure_refresh ; Yes | |
445 banksel isr_backup ; Back to Bank0 ISR data | |
0 | 446 movlw LOW d'1000' ; yes, so simulate 1000mbar surface pressure |
447 movwf last_surfpressure+0 | |
448 movlw HIGH d'1000' | |
449 movwf last_surfpressure+1 | |
450 | |
451 comp_air_pressure: | |
176 | 452 banksel isr_backup ; Back to Bank0 ISR data |
0 | 453 movf last_surfpressure+0,W ; compensate airpressure |
454 subwf amb_pressure+0,W | |
455 movwf rel_pressure+0 ; rel_pressure stores depth! | |
456 | |
457 movf last_surfpressure+1,W | |
458 subwfb amb_pressure+1,W | |
459 movwf rel_pressure+1 | |
460 btfss STATUS,N ; result is below zero? | |
461 bra sensor_int_state_exit | |
462 clrf rel_pressure+0 ; Yes, do not display negative depths | |
463 clrf rel_pressure+1 ; e.g. when surface air pressure dropped during the dive | |
464 bra sensor_int_state_exit | |
465 | |
466 sensor_int_state1_plus_restart: | |
467 clrf amb_pressure_avg+0 ; pressure average registers | |
468 clrf amb_pressure_avg+1 | |
469 clrf temperature_avg+0 | |
470 clrf temperature_avg+1 | |
471 | |
472 sensor_int_state1: | |
473 call get_temperature_value ; State 1: Get temperature | |
474 call get_pressure_start ; and start pressure integration. | |
475 bra sensor_int_state_exit | |
476 | |
477 sensor_int_state2: | |
478 call get_pressure_value ; State2: Get pressure (51us) | |
479 call get_temperature_start ; and start temperature integration (73,5us) | |
480 call calculate_compensation ; calculate temperature compensated pressure (233us) | |
481 ; bra sensor_int_state_exit | |
482 sensor_int_state_exit: | |
483 rcall isr_restore_clock ; Restore clock | |
484 return | |
485 ;============================================================================= | |
486 | |
487 isr_dimm_tft: ; Adjust until max_CCPR1L=CCPR1L ! | |
488 banksel common | |
489 btfsc tft_is_dimming ; Ignore while dimming | |
490 return | |
491 banksel isr_backup | |
492 movf max_CCPR1L,W | |
493 cpfsgt CCPR1L ; CCPR1L>max_CCPR1L? | |
494 bra isr_dimm_tft2 ; No, dimm up | |
495 ; dimm down | |
496 decf CCPR1L,F ; -1 | |
497 return | |
498 isr_dimm_tft2: | |
499 movf max_CCPR1L,W | |
31
53a09c1b7410
BUGFIX: alternating brightness at very low ambient light
heinrichsweikamp
parents:
30
diff
changeset
|
500 sublw ambient_light_min_eco |
53a09c1b7410
BUGFIX: alternating brightness at very low ambient light
heinrichsweikamp
parents:
30
diff
changeset
|
501 cpfsgt CCPR1L ; CCPR1L>max_CCPR1L-ambient_light_min_eco? |
0 | 502 bra isr_dimm_tft3 ; No, dimm up slow |
503 ; dimm up faster | |
504 movlw .5 | |
505 addwf CCPR1L,F | |
506 isr_dimm_tft3: | |
507 incf CCPR1L,F ; +1 | |
508 return | |
509 | |
510 | |
511 isr_rtcc: ; each second | |
512 bcf PIR3,RTCCIF ; clear flag | |
513 banksel 0xF16 ; Addresses, F16h through F5Fh, are also used by SFRs, but are not part of the Access RAM. | |
514 bsf RTCCFG,RTCPTR1 | |
515 bsf RTCCFG,RTCPTR0 ; year | |
516 movff RTCVALL,year ; format is BCD! | |
517 movff RTCVALH,day ; dummy read | |
518 movff RTCVALL,day ; format is BCD! | |
519 movff RTCVALH,month ; format is BCD! | |
520 movff RTCVALL,hours ; format is BCD! | |
521 movff RTCVALH,secs ; format is BCD! | |
522 movff RTCVALL,secs ; format is BCD! | |
523 movff RTCVALH,mins ; format is BCD! | |
524 banksel isr_backup ; Back to Bank0 ISR data | |
525 | |
526 ; Convert BCD to DEC and set registers | |
527 movff mins, isr1_temp | |
528 rcall isr_rtcc_convert ; Converts to dec with result in WREG | |
529 movff WREG,mins | |
530 movff secs, isr1_temp | |
531 rcall isr_rtcc_convert ; Converts to dec with result in WREG | |
532 movff WREG,secs | |
533 movff hours, isr1_temp | |
534 rcall isr_rtcc_convert ; Converts to dec with result in WREG | |
535 movff WREG,hours | |
536 movff month, isr1_temp | |
537 rcall isr_rtcc_convert ; Converts to dec with result in WREG | |
538 movff WREG,month | |
539 movff day, isr1_temp | |
540 rcall isr_rtcc_convert ; Converts to dec with result in WREG | |
541 movff WREG,day | |
542 movff year, isr1_temp | |
543 rcall isr_rtcc_convert ; Converts to dec with result in WREG | |
544 movff WREG,year | |
545 | |
546 ; Place once/second tasks for ISR here (Be sure of the right bank!) | |
547 banksel common ; flag1 is in Bank1 | |
548 btfss sleepmode ; in Sleepmode? | |
549 call get_ambient_level ; No, get ambient light level and set max_CCPR1L | |
550 | |
551 rcall isr_battery_gauge ; Add amount of battery consumption to battery_gauge:6 | |
552 | |
553 banksel common ; flag1 is in Bank1 | |
554 bsf onesecupdate ; A new second has begun | |
555 btfsc divemode ; in divemode? | |
556 rcall isr_divemode_1sec ; Yes, do some divemode stuff in bank common | |
557 | |
558 tstfsz secs ; Secs == 0 ? | |
559 return ; No, Done. | |
560 | |
561 bsf oneminupdate ; A new minute has begun | |
562 | |
563 btfss divemode ; In Divemode? | |
564 rcall check_nofly_desat_time ; No, so reduce NoFly and Desat and increase interval | |
565 | |
566 ; Check if a new hour has just begun | |
567 tstfsz mins ; mins=0? | |
568 bra isr_rtcc2 ; No | |
569 bsf onehourupdate ; Yes, set flag | |
570 | |
571 isr_rtcc2: | |
572 banksel isr_backup ; Back to Bank0 ISR data | |
573 return ; Done. | |
574 | |
575 isr_battery_gauge: | |
576 banksel isr_backup ; Bank0 ISR data | |
577 movlw current_sleepmode ; 100µA/3600 -> nAs (Sleepmode current) | |
578 movwf isr1_temp ; Store value (low byte) | |
579 clrf isr2_temp ; High byte | |
580 | |
581 banksel common ; flag1 is in Bank1 | |
582 btfss sleepmode ; in Sleepmode? | |
583 rcall isr_battery_gauge2 ; No, compute current consumtion value into isr1_temp and isr2_temp | |
584 | |
585 banksel isr_backup ; Bank0 ISR data | |
586 movf isr1_temp,W ; 48Bit add of isr1_temp and isr2_temp into battery_gauge:6 | |
587 addwf battery_gauge+0,F | |
588 movf isr2_temp,W | |
589 addwfc battery_gauge+1,F | |
590 movlw .0 | |
591 addwfc battery_gauge+2,F | |
592 addwfc battery_gauge+3,F | |
593 addwfc battery_gauge+4,F | |
594 addwfc battery_gauge+5,F | |
595 return | |
596 | |
597 isr_battery_gauge2: | |
598 ; set consumtion rate in nAs for an one second interval | |
599 ; Example: | |
600 ; movlw LOW .55556 ; 0,2A/3600*1e9s = nAs | |
601 ; movwf isr1_temp ; Low byte | |
602 ; movlw HIGH .55556 ; 0,2A/3600*1e9s = nAs | |
603 ; movwf isr2_temp ; High byte | |
604 | |
605 ; Current consumption for LED backlight is 47*CCPR1L+272 | |
606 movf CCPR1L,W | |
607 mullw current_backlight_multi | |
608 movlw LOW current_backlight_offset | |
609 addwf PRODL,F | |
610 movlw HIGH current_backlight_offset | |
611 addwfc PRODH,F | |
612 movff PRODL,isr1_temp | |
613 movff PRODH,isr2_temp ; isr1_temp and isr2_temp hold value for backlight | |
614 | |
615 ; Add current for CPU and GPU | |
616 ; speed_setting=1: ECO (3,1mA -> 861nAs), =2: NORMAL (5,50mA -> 1528nAs) or =3: FASTEST (8,04mA -> 2233nAs) | |
617 movlw .1 | |
618 cpfseq speed_setting | |
619 bra isr_battery_gauge3 | |
620 banksel isr_backup ; Bank0 ISR data | |
621 movlw LOW current_speed_eco | |
622 addwf isr1_temp,F | |
623 movlw HIGH current_speed_eco | |
624 addwfc isr2_temp,F | |
625 bra isr_battery_gauge5 | |
626 isr_battery_gauge3: | |
627 movlw .2 | |
628 cpfseq speed_setting | |
629 bra isr_battery_gauge4 | |
630 banksel isr_backup ; Bank0 ISR data | |
631 movlw LOW current_speed_normal | |
632 addwf isr1_temp,F | |
633 movlw HIGH current_speed_normal | |
634 addwfc isr2_temp,F | |
635 bra isr_battery_gauge5 | |
636 isr_battery_gauge4: | |
637 banksel isr_backup ; Bank0 ISR data | |
638 movlw LOW current_speed_fastest | |
639 addwf isr1_temp,F | |
640 movlw HIGH current_speed_fastest | |
641 addwfc isr2_temp,F | |
642 isr_battery_gauge5: | |
643 ; Add current if IR reciever is on | |
644 btfss ir_power ; IR enabled? | |
645 bra isr_battery_gauge6 ; no | |
646 movlw LOW current_ir_reciever | |
647 addwf isr1_temp,F | |
648 movlw HIGH current_ir_reciever | |
649 addwfc isr2_temp,F | |
650 isr_battery_gauge6: | |
651 ; Add current for compass/accelerometer | |
652 btfss compass_enabled ; compass active? | |
653 bra isr_battery_gauge7 ; no | |
654 movlw LOW current_compass | |
655 addwf isr1_temp,F | |
656 movlw HIGH current_compass | |
657 addwfc isr2_temp,F | |
658 isr_battery_gauge7: | |
659 return | |
660 | |
661 isr_divemode_1sec: | |
662 incf samplesecs,F ; "samplingrate" diving seconds done | |
663 decf samplesecs_value,W ; holds "samplingrate" value (minus 1 into WREG) | |
664 cpfsgt samplesecs ; Done? | |
665 bra isr_divemode_1sec2 ; no | |
666 | |
667 clrf samplesecs ; clear counter... | |
668 bsf store_sample ; ...and set bit for profile storage | |
669 isr_divemode_1sec2: | |
670 ; Increase re-setable average depth divetime counter | |
176 | 671 infsnz average_divesecs+0,F ; increase stopwatch registers |
0 | 672 incf average_divesecs+1,F ; increase stopwatch registers |
673 ; Increase total divetime (Regardless of start_dive_threshold) | |
148 | 674 infsnz total_divetime_seconds+0,F |
675 incf total_divetime_seconds+1,F ; Total dive time (Regardless of start_dive_threshold) | |
0 | 676 |
677 btfss divemode2 ; displayed divetime is running? | |
678 return ; No (e.g. too shallow) | |
679 | |
680 ; increase divetime registers (Displayed dive time) | |
681 incf divesecs,F | |
682 movlw d'59' | |
683 cpfsgt divesecs | |
684 bra isr_divemode_1sec2a | |
685 | |
686 clrf divesecs | |
687 bsf realdive ; this bit is always set (again) if the dive is longer then one minute | |
148 | 688 infsnz divemins+0,F |
689 incf divemins+1,F ; increase divemins | |
0 | 690 |
691 isr_divemode_1sec2a: | |
692 btfss FLAG_apnoe_mode ; Are we in Apnoe mode? | |
693 return ; No | |
694 | |
695 incf apnoe_secs,F ; increase descent registers | |
696 movlw d'59' | |
697 cpfsgt apnoe_secs ; full minute? | |
698 return ; No | |
699 clrf apnoe_secs | |
700 incf apnoe_mins,F ; increase descent mins | |
701 return | |
702 | |
703 ;============================================================================= | |
704 ; BCD to Binary convertion. | |
705 ; Input: isr1_temp = Value in BCD | |
706 ; Output WREG = value in binary. | |
707 isr_rtcc_convert: | |
708 swapf isr1_temp, W | |
709 andlw 0x0F ; W= tens | |
710 rlncf WREG, W ; W= 2*tens | |
711 subwf isr1_temp, F ; 16*tens + ones - 2*tens | |
712 subwf isr1_temp, F ; 14*tens + ones - 2*tens | |
713 subwf isr1_temp, W ; 12*tens + ones - 2*tens | |
714 return | |
715 | |
716 ;============================================================================= | |
717 | |
718 isr_switch_right: ; | |
719 bcf INTCON,INT0IE ; Disable INT0 | |
720 banksel common ; flag1 is in Bank1 | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
721 btfss flip_screen ; 180° flipped? |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
722 bsf switch_right ; Set flag |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
723 btfsc flip_screen ; 180° flipped? |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
724 bsf switch_left ; Set flag |
0 | 725 bra isr_switch_common ; Continue... |
726 | |
727 isr_switch_left: ; | |
728 bcf INTCON3,INT1IE ; Disable INT1 | |
729 banksel common ; flag1 is in Bank1 | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
730 btfss flip_screen ; 180° flipped? |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
731 bsf switch_left ; Set flag |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
732 btfsc flip_screen ; 180° flipped? |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
733 bsf switch_right ; Set flag |
0 | 734 isr_switch_common: |
735 ; load timer1 for first press | |
736 clrf TMR1L | |
737 movlw TMR1H_VALUE_FIRST ; in steps of 7,8125ms | |
738 movwf TMR1H | |
739 bsf T1CON,TMR1ON ; Start Timer 1 | |
740 banksel isr_backup ; Select Bank0 for ISR data. | |
741 bcf INTCON3,INT1IF ; Clear flag | |
742 bcf INTCON,INT0IF ; Clear flag | |
743 return | |
744 | |
745 timer1int: | |
746 bcf PIR1,TMR1IF ; Clear flag | |
747 banksel common ; flag1 is in Bank1 | |
204 | 748 bcf INTCON,INT0IF ; Clear flag |
749 bcf INTCON3,INT1IF ; Clear flag | |
0 | 750 btfss switch_left1 ; Left button hold-down? |
751 bra timer1int_left ; Yes | |
752 btfss switch_right2 ; Right button hold-down? | |
753 bra timer1int_right ; Yes | |
754 | |
755 ; No button hold-down, stop Timer 1 | |
756 bcf T1CON,TMR1ON ; Stop Timer 1 | |
757 bsf INTCON,INT0IE ; Enable INT0 | |
758 bsf INTCON3,INT1IE ; Enable INT1 | |
759 return | |
760 | |
761 timer1int_left: | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
762 btfss flip_screen ; 180° flipped? |
0 | 763 bsf switch_left ; (Re-)Set flag |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
764 btfsc flip_screen ; 180° flipped? |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
765 bsf switch_right ; (Re-)Set flag |
0 | 766 bra timer1int_common ; Continue |
767 timer1int_right: | |
152
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
768 btfss flip_screen ; 180° flipped? |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
769 bsf switch_right ; Set flag |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
770 btfsc flip_screen ; 180° flipped? |
19ad15f04f60
BUGFIX: Clear Setpoint-Fallback warning when in bailout
heinrichsweikamp
parents:
148
diff
changeset
|
771 bsf switch_left ; Set flag |
0 | 772 timer1int_common: |
773 ; load timer1 for next press | |
774 clrf TMR1L | |
775 movlw TMR1H_VALUE_CONT ; Surface mode | |
776 btfsc divemode | |
777 movlw TMR1H_VALUE_CONT_DIVE ; Dive mode | |
778 movwf TMR1H | |
779 return ; Return from timer1int with timer1 kept running | |
780 | |
781 ;============================================================================= | |
782 | |
783 check_nofly_desat_time: | |
784 movf nofly_time+0,W ; Is nofly null ? | |
785 iorwf nofly_time+1,W | |
786 bz check_nofly_desat_time2 ; yes... | |
787 | |
788 movlw d'1' | |
789 subwf nofly_time+0,F | |
790 movlw d'0' | |
791 subwfb nofly_time+1,F ; reduce by one | |
792 | |
793 check_nofly_desat_time2: | |
794 movf desaturation_time+0,W ; Is Desat null ? | |
795 iorwf desaturation_time+1,W | |
796 bz check_nofly_desat_time3 ; yes... | |
797 | |
798 movlw d'1' | |
799 subwf desaturation_time+0,F | |
800 movlw d'0' | |
801 subwfb desaturation_time+1,F ; reduce by one... | |
802 | |
147 | 803 ; Increase surface interval timer |
804 infsnz surface_interval+0,F | |
805 incf surface_interval+1,F | |
0 | 806 return ; Done |
807 | |
808 check_nofly_desat_time3: | |
809 clrf surface_interval+0 | |
810 clrf surface_interval+1 ; Clear surface interval timer | |
811 return ; Done. | |
812 | |
813 ;============================================================================= | |
814 | |
815 isr_restore_clock: | |
816 banksel isr_backup | |
817 movff speed_setting,isr1_temp ; Copy to Bank0 | |
818 movlw d'1' | |
819 cpfseq isr1_temp | |
820 bra isr_restore_speed2 | |
821 ; Reset to eco | |
822 movlw b'00000000' | |
823 movwf OSCTUNE ; 4x PLL Disable (Bit6) - only works with 8 or 16MHz (=32 or 64MHz) | |
824 movlw b'00110010' | |
825 movwf OSCCON ; 1MHz INTOSC | |
826 movlw T2CON_ECO | |
827 movwf T2CON | |
828 bra isr_restore_exit | |
829 isr_restore_speed2: | |
830 movlw d'2' | |
831 cpfseq isr1_temp | |
832 bra isr_restore_speed3 | |
833 ; Reset to normal | |
834 movlw b'01110010' | |
835 movwf OSCCON ; 16MHz INTOSC | |
836 movlw b'00000000' | |
837 movwf OSCTUNE ; 4x PLL Disable (Bit6) - only works with 8 or 16MHz (=32 or 64MHz) | |
838 movlw T2CON_NORMAL | |
839 movwf T2CON | |
840 bra isr_restore_exit | |
841 | |
842 isr_restore_speed3: | |
843 ; Reset to fastest | |
844 movlw b'01110010' ; 16MHz INTOSC | |
845 movwf OSCCON | |
846 movlw b'01000000' | |
847 movwf OSCTUNE ; 4x PLL Enable (Bit6) - only works with 8 or 16MHz (=32 or 64MHz) | |
848 movlw T2CON_FASTEST | |
849 movwf T2CON | |
850 ; bra isr_restore_exit | |
851 isr_restore_exit: | |
852 btfss OSCCON,HFIOFS | |
853 bra isr_restore_exit ; loop until PLL is stable | |
854 return | |
855 | |
856 END |