annotate src/ghostwriter.asm @ 170:8bcb064b4fb8

CHANGE: Compass readout smoothed 1.53 beta release
author heinrichsweikamp
date Tue, 30 Sep 2014 10:35:47 +0200
parents 30ebaf72170d
children 932e91074bdb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
heinrichsweikamp
parents:
diff changeset
3 ; File ghostwriter.asm
heinrichsweikamp
parents:
diff changeset
4 ;
heinrichsweikamp
parents:
diff changeset
5 ; Ghostwriter (Log profile recorder)
heinrichsweikamp
parents:
diff changeset
6 ;
heinrichsweikamp
parents:
diff changeset
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
heinrichsweikamp
parents:
diff changeset
8 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
9 ; HISTORY
heinrichsweikamp
parents:
diff changeset
10 ; 2011-11-27 : [mH] Creation
heinrichsweikamp
parents:
diff changeset
11
heinrichsweikamp
parents:
diff changeset
12 #include "ostc3.inc" ; Mandatory header
heinrichsweikamp
parents:
diff changeset
13 #include "shared_definitions.h" ; Mailbox from/to p2_deco.c
heinrichsweikamp
parents:
diff changeset
14 #include "external_flash.inc"
heinrichsweikamp
parents:
diff changeset
15 #include "surfmode.inc"
133
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
16 #include "eeprom_rs232.inc"
0
heinrichsweikamp
parents:
diff changeset
17 #include "strings.inc"
heinrichsweikamp
parents:
diff changeset
18 #include "isr.inc"
heinrichsweikamp
parents:
diff changeset
19 #include "tft_outputs.inc"
heinrichsweikamp
parents:
diff changeset
20 #include "divemode.inc"
133
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
21 #include "rtc.inc"
0
heinrichsweikamp
parents:
diff changeset
22
heinrichsweikamp
parents:
diff changeset
23 ghostwriter CODE
heinrichsweikamp
parents:
diff changeset
24
heinrichsweikamp
parents:
diff changeset
25 global store_dive_data
heinrichsweikamp
parents:
diff changeset
26 store_dive_data: ; 5 seconds gone
heinrichsweikamp
parents:
diff changeset
27 bcf store_sample ; update only any 5 seconds
heinrichsweikamp
parents:
diff changeset
28
heinrichsweikamp
parents:
diff changeset
29 ifndef __DEBUG
heinrichsweikamp
parents:
diff changeset
30 btfsc simulatormode_active ; Are we in simulator mode?
heinrichsweikamp
parents:
diff changeset
31 return ; Yes, discard everything
heinrichsweikamp
parents:
diff changeset
32 endif
heinrichsweikamp
parents:
diff changeset
33
35
eca4a201d8cf change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents: 23
diff changeset
34 btfsc FLAG_apnoe_mode ; In Apnoe mode?
eca4a201d8cf change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents: 23
diff changeset
35 return ; Yes, discard everything
eca4a201d8cf change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents: 23
diff changeset
36
0
heinrichsweikamp
parents:
diff changeset
37 SAFE_2BYTE_COPY rel_pressure, lo
heinrichsweikamp
parents:
diff changeset
38 movf lo,W ; store depth with every sample
35
eca4a201d8cf change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents: 23
diff changeset
39 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
0
heinrichsweikamp
parents:
diff changeset
40 movf hi,W
35
eca4a201d8cf change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents: 23
diff changeset
41 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
0
heinrichsweikamp
parents:
diff changeset
42
heinrichsweikamp
parents:
diff changeset
43 ;First, find out how many bytes will append to this sample....
heinrichsweikamp
parents:
diff changeset
44 clrf ProfileFlagByte ; clear number of bytes to append
heinrichsweikamp
parents:
diff changeset
45
heinrichsweikamp
parents:
diff changeset
46 ; Check Extented informations
heinrichsweikamp
parents:
diff changeset
47 decfsz divisor_temperature,W ; Check divisor
heinrichsweikamp
parents:
diff changeset
48 bra check_extended1
heinrichsweikamp
parents:
diff changeset
49 movlw infolength_temperature
heinrichsweikamp
parents:
diff changeset
50 addwf ProfileFlagByte,F ; add to ProfileFlagByte
heinrichsweikamp
parents:
diff changeset
51 check_extended1:
heinrichsweikamp
parents:
diff changeset
52 decfsz divisor_deco,W ; Check divisor
heinrichsweikamp
parents:
diff changeset
53 bra check_extended2
heinrichsweikamp
parents:
diff changeset
54 movlw infolength_deco
heinrichsweikamp
parents:
diff changeset
55 addwf ProfileFlagByte,F ; add to ProfileFlagByte
heinrichsweikamp
parents:
diff changeset
56 check_extended2:
heinrichsweikamp
parents:
diff changeset
57 decfsz divisor_gf,W ; Check divisor
heinrichsweikamp
parents:
diff changeset
58 bra check_extended3
heinrichsweikamp
parents:
diff changeset
59 movlw infolength_gf
heinrichsweikamp
parents:
diff changeset
60 addwf ProfileFlagByte,F ; add to ProfileFlagByte
heinrichsweikamp
parents:
diff changeset
61 check_extended3:
heinrichsweikamp
parents:
diff changeset
62 decfsz divisor_ppo2_sensors,W ; Check divisor
heinrichsweikamp
parents:
diff changeset
63 bra check_extended4
heinrichsweikamp
parents:
diff changeset
64 movlw infolength_ppo2_sensors
heinrichsweikamp
parents:
diff changeset
65 addwf ProfileFlagByte,F ; add to ProfileFlagByte
heinrichsweikamp
parents:
diff changeset
66 check_extended4:
heinrichsweikamp
parents:
diff changeset
67 decfsz divisor_decoplan,W ; Check divisor
heinrichsweikamp
parents:
diff changeset
68 bra check_extended5
heinrichsweikamp
parents:
diff changeset
69 movlw infolength_decoplan
heinrichsweikamp
parents:
diff changeset
70 addwf ProfileFlagByte,F ; add to ProfileFlagByte
heinrichsweikamp
parents:
diff changeset
71 check_extended5:
heinrichsweikamp
parents:
diff changeset
72 decfsz divisor_cns,W ; Check divisor
heinrichsweikamp
parents:
diff changeset
73 bra check_extended6
heinrichsweikamp
parents:
diff changeset
74 movlw infolength_cns
heinrichsweikamp
parents:
diff changeset
75 addwf ProfileFlagByte,F ; add to ProfileFlagByte
heinrichsweikamp
parents:
diff changeset
76 check_extended6:
heinrichsweikamp
parents:
diff changeset
77 decfsz divisor_tank,W ; Check divisor
heinrichsweikamp
parents:
diff changeset
78 bra check_extended7
heinrichsweikamp
parents:
diff changeset
79 movlw infolength_tank
heinrichsweikamp
parents:
diff changeset
80 addwf ProfileFlagByte,F ; add to ProfileFlagByte
heinrichsweikamp
parents:
diff changeset
81 check_extended7:
heinrichsweikamp
parents:
diff changeset
82
heinrichsweikamp
parents:
diff changeset
83 ; Second, check global event flag
heinrichsweikamp
parents:
diff changeset
84 btfss event_occured ; Check global event flag
heinrichsweikamp
parents:
diff changeset
85 bra store_dive_data3 ; No Event
99
87cc1adfe4da show event "bailout" in the internal logbook
heinrichsweikamp
parents: 98
diff changeset
86
0
heinrichsweikamp
parents:
diff changeset
87 incf ProfileFlagByte,F ; add one byte (The EventByte)
heinrichsweikamp
parents:
diff changeset
88
heinrichsweikamp
parents:
diff changeset
89 clrf EventByte ; reset EventByte
98
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
90 clrf EventByte2 ; reset EventByte2
0
heinrichsweikamp
parents:
diff changeset
91
heinrichsweikamp
parents:
diff changeset
92 movf AlarmType,W ; Type of Alarm Bit 0-3
heinrichsweikamp
parents:
diff changeset
93 addwf EventByte,F ; Copy to EventByte Bit 0-3
heinrichsweikamp
parents:
diff changeset
94 clrf AlarmType ; Reset AlarmType
heinrichsweikamp
parents:
diff changeset
95
heinrichsweikamp
parents:
diff changeset
96 ; Third, check events and add aditional bytes
heinrichsweikamp
parents:
diff changeset
97 btfss gas6_changed ; Check flag
heinrichsweikamp
parents:
diff changeset
98 bra check_event2
heinrichsweikamp
parents:
diff changeset
99 movlw d'2' ; Information length
heinrichsweikamp
parents:
diff changeset
100 addwf ProfileFlagByte,F ; add to ProfileFlagByte
heinrichsweikamp
parents:
diff changeset
101 bsf EventByte,4 ; Also set Flag in EventByte!
heinrichsweikamp
parents:
diff changeset
102 check_event2:
heinrichsweikamp
parents:
diff changeset
103 btfss stored_gas_changed ; Check flag
heinrichsweikamp
parents:
diff changeset
104 bra check_event3
heinrichsweikamp
parents:
diff changeset
105 movlw d'1' ; Information length
heinrichsweikamp
parents:
diff changeset
106 addwf ProfileFlagByte,F ; add to ProfileFlagByte
heinrichsweikamp
parents:
diff changeset
107 bsf EventByte,5 ; Also set Flag in EventByte!
heinrichsweikamp
parents:
diff changeset
108 check_event3:
heinrichsweikamp
parents:
diff changeset
109 btfss setpoint_changed ; Check flag
heinrichsweikamp
parents:
diff changeset
110 bra check_event4
heinrichsweikamp
parents:
diff changeset
111 movlw d'1' ; Information length
heinrichsweikamp
parents:
diff changeset
112 addwf ProfileFlagByte,F ; add to ProfileFlagByte
heinrichsweikamp
parents:
diff changeset
113 bsf EventByte,6 ; Also set Flag in EventByte!
heinrichsweikamp
parents:
diff changeset
114 check_event4:
98
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
115 btfss bailoutgas_event ; =1: bailout was selected or a gaschange during bailout
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
116 bra check_event5
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
117 movlw d'2' ; Information length
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
118 addwf ProfileFlagByte,F ; add to ProfileFlagByte
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
119 bsf EventByte2,0 ; set flag in EventByte2!
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
120 bsf EventByte,7 ; =1: Another Eventbyte is available
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
121
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
122 check_event5:
0
heinrichsweikamp
parents:
diff changeset
123 ; more events?
heinrichsweikamp
parents:
diff changeset
124
heinrichsweikamp
parents:
diff changeset
125 store_dive_data3:
98
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
126 btfsc EventByte,7 ; =1: Another Eventbyte is available
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
127 incf ProfileFlagByte,F ; add one byte (The EventByte2)
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
128
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
129 btfsc event_occured ; Check global event flag
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
130 bsf ProfileFlagByte,7 ; Set EventByte Flag in ProfileFlagByte
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
131
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
132 movf ProfileFlagByte,W ; finally, write ProfileFlagByte!
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
133 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
134
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
135 btfss event_occured ; Check global event flag (again)
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
136 bra store_dive_data4 ; No Event
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
137
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
138 ; Store the EventByte(s) + additional bytes now
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
139 movf EventByte,W
99
87cc1adfe4da show event "bailout" in the internal logbook
heinrichsweikamp
parents: 98
diff changeset
140 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
0
heinrichsweikamp
parents:
diff changeset
141
98
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
142 movf EventByte2,W ; Write second event byte...
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
143 btfsc EventByte,7 ; =1: Another Eventbyte is available
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
144 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
0
heinrichsweikamp
parents:
diff changeset
145
99
87cc1adfe4da show event "bailout" in the internal logbook
heinrichsweikamp
parents: 98
diff changeset
146 btfss gas6_changed ; Check flag
0
heinrichsweikamp
parents:
diff changeset
147 bra store_dive_data3b
heinrichsweikamp
parents:
diff changeset
148 movff char_I_O2_ratio,WREG
99
87cc1adfe4da show event "bailout" in the internal logbook
heinrichsweikamp
parents: 98
diff changeset
149 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
0
heinrichsweikamp
parents:
diff changeset
150 movff char_I_He_ratio,WREG
99
87cc1adfe4da show event "bailout" in the internal logbook
heinrichsweikamp
parents: 98
diff changeset
151 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
0
heinrichsweikamp
parents:
diff changeset
152 bcf gas6_changed ; Clear this event
heinrichsweikamp
parents:
diff changeset
153 store_dive_data3b:
heinrichsweikamp
parents:
diff changeset
154 btfss stored_gas_changed ; Check flag
heinrichsweikamp
parents:
diff changeset
155 bra store_dive_data3c
heinrichsweikamp
parents:
diff changeset
156 movf active_gas,W ; Store active gas
heinrichsweikamp
parents:
diff changeset
157 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
158 bcf stored_gas_changed ; Clear this event
heinrichsweikamp
parents:
diff changeset
159 store_dive_data3c:
heinrichsweikamp
parents:
diff changeset
160 btfss setpoint_changed ; Check flag
heinrichsweikamp
parents:
diff changeset
161 bra store_dive_data3d
heinrichsweikamp
parents:
diff changeset
162 movff char_I_const_ppO2,WREG
heinrichsweikamp
parents:
diff changeset
163 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
164 bcf setpoint_changed ; Clear this event
heinrichsweikamp
parents:
diff changeset
165 store_dive_data3d:
98
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
166 btfss bailoutgas_event ; Check flag
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
167 bra store_dive_data3e
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
168 movff char_I_O2_ratio,WREG
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
169 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
170 movff char_I_He_ratio,WREG
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
171 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
172 bcf bailoutgas_event ; Clear this event
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
173 store_dive_data3e:
0
heinrichsweikamp
parents:
diff changeset
174
heinrichsweikamp
parents:
diff changeset
175 store_dive_data4:
heinrichsweikamp
parents:
diff changeset
176
heinrichsweikamp
parents:
diff changeset
177 ; Store extended informations
heinrichsweikamp
parents:
diff changeset
178 decfsz divisor_temperature,F ; Check divisor
heinrichsweikamp
parents:
diff changeset
179 bra store_extended1
heinrichsweikamp
parents:
diff changeset
180 rcall store_dive_temperature
heinrichsweikamp
parents:
diff changeset
181 store_extended1:
heinrichsweikamp
parents:
diff changeset
182 decfsz divisor_deco,F ; Check divisor
heinrichsweikamp
parents:
diff changeset
183 bra store_extended2
heinrichsweikamp
parents:
diff changeset
184 rcall store_dive_decodata
heinrichsweikamp
parents:
diff changeset
185 store_extended2:
heinrichsweikamp
parents:
diff changeset
186 decfsz divisor_gf,F ; Check divisor
heinrichsweikamp
parents:
diff changeset
187 bra store_extended3
heinrichsweikamp
parents:
diff changeset
188 rcall store_dive_gf
heinrichsweikamp
parents:
diff changeset
189 store_extended3:
heinrichsweikamp
parents:
diff changeset
190 decfsz divisor_ppo2_sensors,F ; Check divisor
heinrichsweikamp
parents:
diff changeset
191 bra store_extended4
heinrichsweikamp
parents:
diff changeset
192 rcall store_dive_ppO2_sensors
heinrichsweikamp
parents:
diff changeset
193 store_extended4:
heinrichsweikamp
parents:
diff changeset
194 decfsz divisor_decoplan,F ; Check divisor
heinrichsweikamp
parents:
diff changeset
195 bra store_extended5
heinrichsweikamp
parents:
diff changeset
196 rcall store_dive_decoplan
heinrichsweikamp
parents:
diff changeset
197 store_extended5:
heinrichsweikamp
parents:
diff changeset
198 decfsz divisor_cns,F ; Check divisor
heinrichsweikamp
parents:
diff changeset
199 bra store_extended6
heinrichsweikamp
parents:
diff changeset
200 rcall store_dive_cns
heinrichsweikamp
parents:
diff changeset
201 store_extended6:
heinrichsweikamp
parents:
diff changeset
202 decfsz divisor_tank,F ; Check divisor
heinrichsweikamp
parents:
diff changeset
203 bra store_extended7
heinrichsweikamp
parents:
diff changeset
204 rcall store_dive_tank
heinrichsweikamp
parents:
diff changeset
205 store_extended7:
heinrichsweikamp
parents:
diff changeset
206
heinrichsweikamp
parents:
diff changeset
207 ; The next block is required to take care of "store never"
heinrichsweikamp
parents:
diff changeset
208 btfsc divisor_temperature,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
heinrichsweikamp
parents:
diff changeset
209 clrf divisor_temperature ; And clear register again, so it will never reach zero...
heinrichsweikamp
parents:
diff changeset
210 btfsc divisor_deco,7
heinrichsweikamp
parents:
diff changeset
211 clrf divisor_deco
heinrichsweikamp
parents:
diff changeset
212 btfsc divisor_gf,7
heinrichsweikamp
parents:
diff changeset
213 clrf divisor_gf
heinrichsweikamp
parents:
diff changeset
214 btfsc divisor_ppo2_sensors,7
heinrichsweikamp
parents:
diff changeset
215 clrf divisor_ppo2_sensors
heinrichsweikamp
parents:
diff changeset
216 btfsc divisor_decoplan,7
heinrichsweikamp
parents:
diff changeset
217 clrf divisor_decoplan
heinrichsweikamp
parents:
diff changeset
218 btfsc divisor_cns,7
heinrichsweikamp
parents:
diff changeset
219 clrf divisor_cns
heinrichsweikamp
parents:
diff changeset
220 btfsc divisor_tank,7
heinrichsweikamp
parents:
diff changeset
221 clrf divisor_tank
heinrichsweikamp
parents:
diff changeset
222
heinrichsweikamp
parents:
diff changeset
223 store_dive_data5:
heinrichsweikamp
parents:
diff changeset
224 bcf event_occured ; Clear the global event flag
99
87cc1adfe4da show event "bailout" in the internal logbook
heinrichsweikamp
parents: 98
diff changeset
225 clrf EventByte ; reset EventByte
87cc1adfe4da show event "bailout" in the internal logbook
heinrichsweikamp
parents: 98
diff changeset
226 clrf EventByte2 ; reset EventByte2
0
heinrichsweikamp
parents:
diff changeset
227 return ; Done. (Sample with all informations written to external flash)
heinrichsweikamp
parents:
diff changeset
228
heinrichsweikamp
parents:
diff changeset
229 store_dive_cns:
heinrichsweikamp
parents:
diff changeset
230 movff int_O_CNS_fraction+0,WREG
heinrichsweikamp
parents:
diff changeset
231 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
232 movff int_O_CNS_fraction+1,WREG
heinrichsweikamp
parents:
diff changeset
233 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
234 movlw div_cns
heinrichsweikamp
parents:
diff changeset
235 movwf divisor_cns ; Reload divisor from CF
heinrichsweikamp
parents:
diff changeset
236 return
heinrichsweikamp
parents:
diff changeset
237
heinrichsweikamp
parents:
diff changeset
238 store_dive_tank:
heinrichsweikamp
parents:
diff changeset
239 movlw div_tank
heinrichsweikamp
parents:
diff changeset
240 movwf divisor_tank ; Reload divisor from CF
heinrichsweikamp
parents:
diff changeset
241 return
heinrichsweikamp
parents:
diff changeset
242
heinrichsweikamp
parents:
diff changeset
243 store_dive_decoplan:
heinrichsweikamp
parents:
diff changeset
244 ; Store the decoplan
heinrichsweikamp
parents:
diff changeset
245 lfsr FSR1,char_O_deco_time_for_log+.0
heinrichsweikamp
parents:
diff changeset
246 movlw .15
heinrichsweikamp
parents:
diff changeset
247 movwf lo
heinrichsweikamp
parents:
diff changeset
248 store_dive_decoplan_loop:
heinrichsweikamp
parents:
diff changeset
249 movf POSTINC1,W
heinrichsweikamp
parents:
diff changeset
250 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
251 decfsz lo,F
heinrichsweikamp
parents:
diff changeset
252 bra store_dive_decoplan_loop
heinrichsweikamp
parents:
diff changeset
253 movlw div_decoplan
heinrichsweikamp
parents:
diff changeset
254 movwf divisor_decoplan ; Reload divisor from CF
heinrichsweikamp
parents:
diff changeset
255 return
heinrichsweikamp
parents:
diff changeset
256
heinrichsweikamp
parents:
diff changeset
257 store_dive_ppO2_sensors:
heinrichsweikamp
parents:
diff changeset
258 movf o2_ppo2_sensor1,W ; Sensor1 ppO2 (in 0.01bar steps)
heinrichsweikamp
parents:
diff changeset
259 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
260 SAFE_2BYTE_COPY o2_mv_sensor1,lo ; o2_mv_sensor may be modifified via ISR during the two writes here...
heinrichsweikamp
parents:
diff changeset
261 movf lo,W ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
262 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
263 movf hi,W ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
264 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
265
heinrichsweikamp
parents:
diff changeset
266 movf o2_ppo2_sensor2,W ; Sensor2 ppO2 (in 0.01bar steps)
heinrichsweikamp
parents:
diff changeset
267 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
268 SAFE_2BYTE_COPY o2_mv_sensor2,lo ; o2_mv_sensor may be modifified via ISR during the two writes here...
heinrichsweikamp
parents:
diff changeset
269 movf lo,W ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
270 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
271 movf hi,W ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
272 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
273
heinrichsweikamp
parents:
diff changeset
274 movf o2_ppo2_sensor3,W ; Sensor3 ppO2 (in 0.01bar steps)
heinrichsweikamp
parents:
diff changeset
275 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
276 SAFE_2BYTE_COPY o2_mv_sensor3,lo ; o2_mv_sensor may be modifified via ISR during the two writes here...
heinrichsweikamp
parents:
diff changeset
277 movf lo,W ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
278 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
279 movf hi,W ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
280 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
281
heinrichsweikamp
parents:
diff changeset
282 movlw div_ppo2_sensors
heinrichsweikamp
parents:
diff changeset
283 movwf divisor_ppo2_sensors ; Reload divisor
heinrichsweikamp
parents:
diff changeset
284 return
heinrichsweikamp
parents:
diff changeset
285
heinrichsweikamp
parents:
diff changeset
286 store_dive_gf:
heinrichsweikamp
parents:
diff changeset
287 movff char_O_gradient_factor,WREG ; gradient factor absolute
heinrichsweikamp
parents:
diff changeset
288 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
289 movlw div_gf
heinrichsweikamp
parents:
diff changeset
290 movwf divisor_gf ; Reload divisor
heinrichsweikamp
parents:
diff changeset
291 return
heinrichsweikamp
parents:
diff changeset
292
heinrichsweikamp
parents:
diff changeset
293 store_dive_decodata:
heinrichsweikamp
parents:
diff changeset
294 movf decodata+0,W ; =0:no stop dive, if in deco mode: ceiling in m
heinrichsweikamp
parents:
diff changeset
295 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
296 movf decodata+1,W ; no stop time of length of first stop
heinrichsweikamp
parents:
diff changeset
297 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
298 movlw div_deco
heinrichsweikamp
parents:
diff changeset
299 movwf divisor_deco ; Reload divisor
heinrichsweikamp
parents:
diff changeset
300 return
heinrichsweikamp
parents:
diff changeset
301
heinrichsweikamp
parents:
diff changeset
302 store_dive_temperature:
heinrichsweikamp
parents:
diff changeset
303 SAFE_2BYTE_COPY temperature,lo
heinrichsweikamp
parents:
diff changeset
304 movf lo,W ; append temperature to current sample!
heinrichsweikamp
parents:
diff changeset
305 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
306 movf hi,W
heinrichsweikamp
parents:
diff changeset
307 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
308 movlw div_temperature
heinrichsweikamp
parents:
diff changeset
309 movwf divisor_temperature ; Reload divisor
heinrichsweikamp
parents:
diff changeset
310 return
heinrichsweikamp
parents:
diff changeset
311
heinrichsweikamp
parents:
diff changeset
312 ghostwrite_byte_header:
heinrichsweikamp
parents:
diff changeset
313 goto write_byte_ext_flash_plus_header ; (This call will also delete the 4kB TOC entry first)
heinrichsweikamp
parents:
diff changeset
314 ; returns...
heinrichsweikamp
parents:
diff changeset
315
heinrichsweikamp
parents:
diff changeset
316 ghostwrite_byte_profile:
heinrichsweikamp
parents:
diff changeset
317 goto write_byte_ext_flash_plus ; writes byte and increases address with banking at 0x200000
heinrichsweikamp
parents:
diff changeset
318 ; returns...
heinrichsweikamp
parents:
diff changeset
319
heinrichsweikamp
parents:
diff changeset
320 global ghostwriter_end_dive
heinrichsweikamp
parents:
diff changeset
321 ghostwriter_end_dive:
heinrichsweikamp
parents:
diff changeset
322 movff ext_flash_address+0,ext_flash_log_pointer+0
heinrichsweikamp
parents:
diff changeset
323 movff ext_flash_address+1,ext_flash_log_pointer+1
heinrichsweikamp
parents:
diff changeset
324 movff ext_flash_address+2,ext_flash_log_pointer+2 ; Save end-of-profile pointer to store in header
heinrichsweikamp
parents:
diff changeset
325
39
e4e91fe8b09d remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents: 35
diff changeset
326 movff menupos3,customview_divemode ; store last customview
e4e91fe8b09d remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents: 35
diff changeset
327
0
heinrichsweikamp
parents:
diff changeset
328 btfss realdive ; dive longer then one minute
heinrichsweikamp
parents:
diff changeset
329 goto ghostwriter_end_dive_common ; No, discard everything
heinrichsweikamp
parents:
diff changeset
330
heinrichsweikamp
parents:
diff changeset
331 ; In DEBUG compile, keep all simulated dives in logbook, Desat time, nofly, etc...
heinrichsweikamp
parents:
diff changeset
332 ifndef __DEBUG
heinrichsweikamp
parents:
diff changeset
333 btfsc simulatormode_active ; Are we in simulator mode?
166
30ebaf72170d BUGFIX: Flip compass with flipped screen, too
heinrichsweikamp
parents: 147
diff changeset
334 goto ghostwriter_end_dive_common_sim ; Yes, discard everything
0
heinrichsweikamp
parents:
diff changeset
335 endif
heinrichsweikamp
parents:
diff changeset
336
35
eca4a201d8cf change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents: 23
diff changeset
337 btfsc FLAG_apnoe_mode ; In Apnoe mode?
eca4a201d8cf change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents: 23
diff changeset
338 goto ghostwriter_end_dive_common ; Yes, discard everything
eca4a201d8cf change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents: 23
diff changeset
339
eca4a201d8cf change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents: 23
diff changeset
340 ; Dive finished (and longer then one minute)
0
heinrichsweikamp
parents:
diff changeset
341
heinrichsweikamp
parents:
diff changeset
342 btfsc FLAG_apnoe_mode ; Calc max. depth (again) for very short apnoe dives
heinrichsweikamp
parents:
diff changeset
343 call apnoe_calc_maxdepth
heinrichsweikamp
parents:
diff changeset
344
heinrichsweikamp
parents:
diff changeset
345 ; calculate desaturation time
heinrichsweikamp
parents:
diff changeset
346 movff last_surfpressure_30min+0,int_I_pres_surface+0 ; Pass surface to desat routine !
heinrichsweikamp
parents:
diff changeset
347 movff last_surfpressure_30min+1,int_I_pres_surface+1
heinrichsweikamp
parents:
diff changeset
348
heinrichsweikamp
parents:
diff changeset
349 call deco_calc_desaturation_time ; calculate desaturation time
heinrichsweikamp
parents:
diff changeset
350 movlb b'00000001' ; select ram bank 1
heinrichsweikamp
parents:
diff changeset
351 movff int_O_desaturation_time+0, desaturation_time+0
heinrichsweikamp
parents:
diff changeset
352 movff int_O_desaturation_time+1, desaturation_time+1 ; Buffer
heinrichsweikamp
parents:
diff changeset
353 call calc_deko_surfmode
heinrichsweikamp
parents:
diff changeset
354 rcall calculate_noflytime ; Calc NoFly time
heinrichsweikamp
parents:
diff changeset
355
heinrichsweikamp
parents:
diff changeset
356 ; store header and ...
heinrichsweikamp
parents:
diff changeset
357 movlw 0xFD ; .... End-of-Profile Bytes
heinrichsweikamp
parents:
diff changeset
358 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
359 movlw 0xFD
heinrichsweikamp
parents:
diff changeset
360 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. Flash
heinrichsweikamp
parents:
diff changeset
361 movff ext_flash_address+0,ext_flash_log_pointer+0
heinrichsweikamp
parents:
diff changeset
362 movff ext_flash_address+1,ext_flash_log_pointer+1
heinrichsweikamp
parents:
diff changeset
363 movff ext_flash_address+2,ext_flash_log_pointer+2 ; Save end-of-profile pointer to store in header
heinrichsweikamp
parents:
diff changeset
364
heinrichsweikamp
parents:
diff changeset
365 ; Set to first address again to store dive length ext_flash_dive_counter:3
heinrichsweikamp
parents:
diff changeset
366 clrf EEADRH ; Make sure to select eeprom bank 0
heinrichsweikamp
parents:
diff changeset
367 read_int_eeprom .4
heinrichsweikamp
parents:
diff changeset
368 movff EEDATA,ext_flash_address+0
heinrichsweikamp
parents:
diff changeset
369 read_int_eeprom .5
heinrichsweikamp
parents:
diff changeset
370 movff EEDATA,ext_flash_address+1
heinrichsweikamp
parents:
diff changeset
371 read_int_eeprom .6
heinrichsweikamp
parents:
diff changeset
372 movff EEDATA,ext_flash_address+2
heinrichsweikamp
parents:
diff changeset
373
heinrichsweikamp
parents:
diff changeset
374 incf_ext_flash_address_0x20 d'6' ; Skip internal "0xFA 0xFA #Divenumber:2 0xFA 0xFA" Header
heinrichsweikamp
parents:
diff changeset
375 ; Store dive length
heinrichsweikamp
parents:
diff changeset
376 movf ext_flash_dive_counter+0,W
6
13cda523891f bugfix: dive length in normal header
heinrichsweikamp
parents: 5
diff changeset
377 call write_byte_ext_flash_plus_nocnt ; WREG -> Profile in ext. flash (No ext_flash_dive_counter:3 increase)
0
heinrichsweikamp
parents:
diff changeset
378 movf ext_flash_dive_counter+1,W
6
13cda523891f bugfix: dive length in normal header
heinrichsweikamp
parents: 5
diff changeset
379 call write_byte_ext_flash_plus_nocnt ; WREG -> Profile in ext. flash (No ext_flash_dive_counter:3 increase)
0
heinrichsweikamp
parents:
diff changeset
380 movf ext_flash_dive_counter+2,W
6
13cda523891f bugfix: dive length in normal header
heinrichsweikamp
parents: 5
diff changeset
381 call write_byte_ext_flash_plus_nocnt ; WREG -> Profile in ext. flash (No ext_flash_dive_counter:3 increase)
0
heinrichsweikamp
parents:
diff changeset
382
heinrichsweikamp
parents:
diff changeset
383 ; profile recording done.
heinrichsweikamp
parents:
diff changeset
384
heinrichsweikamp
parents:
diff changeset
385 ; Load total number of dives
heinrichsweikamp
parents:
diff changeset
386 read_int_eeprom .2
heinrichsweikamp
parents:
diff changeset
387 movff EEDATA,lo
heinrichsweikamp
parents:
diff changeset
388 read_int_eeprom .3
heinrichsweikamp
parents:
diff changeset
389 movff EEDATA,hi
heinrichsweikamp
parents:
diff changeset
390 ; +1 increase total dive counter
147
fdd4e30846ae some cleanup
heinrichsweikamp
parents: 139
diff changeset
391 infsnz lo,F
fdd4e30846ae some cleanup
heinrichsweikamp
parents: 139
diff changeset
392 incf hi,F
0
heinrichsweikamp
parents:
diff changeset
393 ; Store new number in EEPROM
heinrichsweikamp
parents:
diff changeset
394 movff lo,EEDATA
heinrichsweikamp
parents:
diff changeset
395 write_int_eeprom .2
heinrichsweikamp
parents:
diff changeset
396 movff hi,EEDATA
heinrichsweikamp
parents:
diff changeset
397 write_int_eeprom .3
heinrichsweikamp
parents:
diff changeset
398
heinrichsweikamp
parents:
diff changeset
399 decf lo,F ; -1
heinrichsweikamp
parents:
diff changeset
400 ; Set ext_flash_address:3 to TOC entry of this dive
heinrichsweikamp
parents:
diff changeset
401 ; 1st: 200000h-200FFFh -> lo=0
heinrichsweikamp
parents:
diff changeset
402 ; 2nd: 201000h-201FFFh -> lo=1
heinrichsweikamp
parents:
diff changeset
403 ; 3rd: 202000h-202FFFh -> lo=2
heinrichsweikamp
parents:
diff changeset
404 ; 255: 2FF000h-2FFFFFh -> lo=255
heinrichsweikamp
parents:
diff changeset
405
heinrichsweikamp
parents:
diff changeset
406 clrf ext_flash_address+0
heinrichsweikamp
parents:
diff changeset
407 clrf ext_flash_address+1
heinrichsweikamp
parents:
diff changeset
408 movlw 0x20
heinrichsweikamp
parents:
diff changeset
409 movwf ext_flash_address+2
heinrichsweikamp
parents:
diff changeset
410 movlw .16
heinrichsweikamp
parents:
diff changeset
411 mulwf lo ; lo*16 = offset to 0x2000 (up:hi)
heinrichsweikamp
parents:
diff changeset
412 movf PRODL,W
heinrichsweikamp
parents:
diff changeset
413 addwf ext_flash_address+1,F
heinrichsweikamp
parents:
diff changeset
414 movf PRODH,W
heinrichsweikamp
parents:
diff changeset
415 addwfc ext_flash_address+2,F
heinrichsweikamp
parents:
diff changeset
416
heinrichsweikamp
parents:
diff changeset
417 ; Now, write header
heinrichsweikamp
parents:
diff changeset
418
heinrichsweikamp
parents:
diff changeset
419 movlw 0xFA ; Header start
heinrichsweikamp
parents:
diff changeset
420 rcall ghostwrite_byte_header ; (This call will also delete the 4kB TOC entry first)
heinrichsweikamp
parents:
diff changeset
421 movlw 0xFA
heinrichsweikamp
parents:
diff changeset
422 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
423
heinrichsweikamp
parents:
diff changeset
424 ; store pointer to begin of diveprofile
heinrichsweikamp
parents:
diff changeset
425 read_int_eeprom .4
heinrichsweikamp
parents:
diff changeset
426 movf EEDATA,W
heinrichsweikamp
parents:
diff changeset
427 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
428 read_int_eeprom .5
heinrichsweikamp
parents:
diff changeset
429 movf EEDATA,W
heinrichsweikamp
parents:
diff changeset
430 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
431 read_int_eeprom .6
heinrichsweikamp
parents:
diff changeset
432 movf EEDATA,W
heinrichsweikamp
parents:
diff changeset
433 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
434
heinrichsweikamp
parents:
diff changeset
435 ; store pointer to end of diveprofile
heinrichsweikamp
parents:
diff changeset
436 movf ext_flash_log_pointer+0,W
heinrichsweikamp
parents:
diff changeset
437 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
438 movf ext_flash_log_pointer+1,W
heinrichsweikamp
parents:
diff changeset
439 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
440 movf ext_flash_log_pointer+2,W
heinrichsweikamp
parents:
diff changeset
441 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
442
heinrichsweikamp
parents:
diff changeset
443 ; write rest of header
heinrichsweikamp
parents:
diff changeset
444 movlw logbook_profile_version ; Defined in ostc3.inc
heinrichsweikamp
parents:
diff changeset
445 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
446
heinrichsweikamp
parents:
diff changeset
447 ; Store dive length
heinrichsweikamp
parents:
diff changeset
448 movf ext_flash_dive_counter+0,W
heinrichsweikamp
parents:
diff changeset
449 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
450 movf ext_flash_dive_counter+1,W
heinrichsweikamp
parents:
diff changeset
451 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
452 movf ext_flash_dive_counter+2,W
heinrichsweikamp
parents:
diff changeset
453 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
454
heinrichsweikamp
parents:
diff changeset
455 movf year,W ; Date
heinrichsweikamp
parents:
diff changeset
456 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
457 movf month,W
heinrichsweikamp
parents:
diff changeset
458 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
459 movf day,W
heinrichsweikamp
parents:
diff changeset
460 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
461 movf hours,W ; End of dive time
heinrichsweikamp
parents:
diff changeset
462 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
463 movf mins,W
heinrichsweikamp
parents:
diff changeset
464 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
465
heinrichsweikamp
parents:
diff changeset
466 btfss FLAG_apnoe_mode ; Store apnoe max or normal max (Which is only max from the last descent)
heinrichsweikamp
parents:
diff changeset
467 bra end_dive1 ; Store normal depth
heinrichsweikamp
parents:
diff changeset
468
heinrichsweikamp
parents:
diff changeset
469 movff apnoe_max_pressure+0,lo
heinrichsweikamp
parents:
diff changeset
470 movff apnoe_max_pressure+1,hi
heinrichsweikamp
parents:
diff changeset
471 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar]
heinrichsweikamp
parents:
diff changeset
472 movff lo,apnoe_max_pressure+0
heinrichsweikamp
parents:
diff changeset
473 movff hi,apnoe_max_pressure+1
heinrichsweikamp
parents:
diff changeset
474
heinrichsweikamp
parents:
diff changeset
475 movf apnoe_max_pressure+0,W ; Max. depth
heinrichsweikamp
parents:
diff changeset
476 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
477 movf apnoe_max_pressure+1,W
heinrichsweikamp
parents:
diff changeset
478 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
479 bra end_dive2 ; skip normal max. depth
heinrichsweikamp
parents:
diff changeset
480
heinrichsweikamp
parents:
diff changeset
481 end_dive1:
heinrichsweikamp
parents:
diff changeset
482 movff max_pressure+0,lo
heinrichsweikamp
parents:
diff changeset
483 movff max_pressure+1,hi
heinrichsweikamp
parents:
diff changeset
484 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mbar]
heinrichsweikamp
parents:
diff changeset
485 movff lo,max_pressure+0
heinrichsweikamp
parents:
diff changeset
486 movff hi,max_pressure+1
heinrichsweikamp
parents:
diff changeset
487
heinrichsweikamp
parents:
diff changeset
488 movff max_pressure+0,WREG ; Max. depth
heinrichsweikamp
parents:
diff changeset
489 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
490 movff max_pressure+1,WREG
heinrichsweikamp
parents:
diff changeset
491 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
492
heinrichsweikamp
parents:
diff changeset
493 end_dive2:
heinrichsweikamp
parents:
diff changeset
494 movf divemins+0,W ; divetime minutes
heinrichsweikamp
parents:
diff changeset
495 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
496 movf divemins+1,W
heinrichsweikamp
parents:
diff changeset
497 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
498 movf divesecs,W ; divetime seconds
heinrichsweikamp
parents:
diff changeset
499 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
500 movff minimum_temperature+0,WREG ; minimum temperature
heinrichsweikamp
parents:
diff changeset
501 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
502 movff minimum_temperature+1,WREG
heinrichsweikamp
parents:
diff changeset
503 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
504 movff last_surfpressure_30min+0,WREG ; airpressure before dive
heinrichsweikamp
parents:
diff changeset
505 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
506 movff last_surfpressure_30min+1,WREG
heinrichsweikamp
parents:
diff changeset
507 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
508 movff int_O_desaturation_time+0,WREG ; desaturation time in minutes
heinrichsweikamp
parents:
diff changeset
509 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
510 movff int_O_desaturation_time+1,WREG
heinrichsweikamp
parents:
diff changeset
511 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
512
heinrichsweikamp
parents:
diff changeset
513 btfss FLAG_ccr_mode ; In CCR mode...
heinrichsweikamp
parents:
diff changeset
514 bra end_dive_oc_gaslist ; No, write OC gases
heinrichsweikamp
parents:
diff changeset
515 ; Write Diluents...
heinrichsweikamp
parents:
diff changeset
516 movff opt_dil_O2_ratio+0,WREG
heinrichsweikamp
parents:
diff changeset
517 rcall ghostwrite_byte_header ; %O2
heinrichsweikamp
parents:
diff changeset
518 movff opt_dil_He_ratio+0,WREG
heinrichsweikamp
parents:
diff changeset
519 rcall ghostwrite_byte_header ; %He
heinrichsweikamp
parents:
diff changeset
520 movff char_I_dil_change+0,WREG
heinrichsweikamp
parents:
diff changeset
521 rcall ghostwrite_byte_header ; Configured change depth in m
heinrichsweikamp
parents:
diff changeset
522 movff opt_dil_type+0,WREG
heinrichsweikamp
parents:
diff changeset
523 rcall ghostwrite_byte_header ; 0=Disabled, 1=First, 2=Normal
heinrichsweikamp
parents:
diff changeset
524
heinrichsweikamp
parents:
diff changeset
525 movff opt_dil_O2_ratio+1,WREG
heinrichsweikamp
parents:
diff changeset
526 rcall ghostwrite_byte_header ; %O2
heinrichsweikamp
parents:
diff changeset
527 movff opt_dil_He_ratio+1,WREG
heinrichsweikamp
parents:
diff changeset
528 rcall ghostwrite_byte_header ; %He
heinrichsweikamp
parents:
diff changeset
529 movff char_I_dil_change+1,WREG
heinrichsweikamp
parents:
diff changeset
530 rcall ghostwrite_byte_header ; Configured change depth in m
heinrichsweikamp
parents:
diff changeset
531 movff opt_dil_type+1,WREG
heinrichsweikamp
parents:
diff changeset
532 rcall ghostwrite_byte_header ; 0=Disabled, 1=First, 2=Normal
heinrichsweikamp
parents:
diff changeset
533
heinrichsweikamp
parents:
diff changeset
534 movff opt_dil_O2_ratio+2,WREG
heinrichsweikamp
parents:
diff changeset
535 rcall ghostwrite_byte_header ; %O2
heinrichsweikamp
parents:
diff changeset
536 movff opt_dil_He_ratio+2,WREG
heinrichsweikamp
parents:
diff changeset
537 rcall ghostwrite_byte_header ; %He
heinrichsweikamp
parents:
diff changeset
538 movff char_I_dil_change+2,WREG
heinrichsweikamp
parents:
diff changeset
539 rcall ghostwrite_byte_header ; Configured change depth in m
heinrichsweikamp
parents:
diff changeset
540 movff opt_dil_type+2,WREG
heinrichsweikamp
parents:
diff changeset
541 rcall ghostwrite_byte_header ; 0=Disabled, 1=First, 2=Normal
heinrichsweikamp
parents:
diff changeset
542
heinrichsweikamp
parents:
diff changeset
543 movff opt_dil_O2_ratio+3,WREG
heinrichsweikamp
parents:
diff changeset
544 rcall ghostwrite_byte_header ; %O2
heinrichsweikamp
parents:
diff changeset
545 movff opt_dil_He_ratio+3,WREG
heinrichsweikamp
parents:
diff changeset
546 rcall ghostwrite_byte_header ; %He
heinrichsweikamp
parents:
diff changeset
547 movff char_I_dil_change+3,WREG
heinrichsweikamp
parents:
diff changeset
548 rcall ghostwrite_byte_header ; Configured change depth in m
heinrichsweikamp
parents:
diff changeset
549 movff opt_dil_type+3,WREG
heinrichsweikamp
parents:
diff changeset
550 rcall ghostwrite_byte_header ; 0=Disabled, 1=First, 2=Normal
heinrichsweikamp
parents:
diff changeset
551
heinrichsweikamp
parents:
diff changeset
552 movff opt_dil_O2_ratio+4,WREG
heinrichsweikamp
parents:
diff changeset
553 rcall ghostwrite_byte_header ; %O2
heinrichsweikamp
parents:
diff changeset
554 movff opt_dil_He_ratio+4,WREG
heinrichsweikamp
parents:
diff changeset
555 rcall ghostwrite_byte_header ; %He
heinrichsweikamp
parents:
diff changeset
556 movff char_I_dil_change+4,WREG
heinrichsweikamp
parents:
diff changeset
557 rcall ghostwrite_byte_header ; Configured change depth in m
heinrichsweikamp
parents:
diff changeset
558 movff opt_dil_type+4,WREG
heinrichsweikamp
parents:
diff changeset
559 rcall ghostwrite_byte_header ; 0=Disabled, 1=First, 2=Normal
heinrichsweikamp
parents:
diff changeset
560 bra end_dive_oc_cc_common
heinrichsweikamp
parents:
diff changeset
561
heinrichsweikamp
parents:
diff changeset
562 end_dive_oc_gaslist: ; OC Gases...
heinrichsweikamp
parents:
diff changeset
563 movff opt_gas_O2_ratio+0,WREG
heinrichsweikamp
parents:
diff changeset
564 rcall ghostwrite_byte_header ; %O2
heinrichsweikamp
parents:
diff changeset
565 movff opt_gas_He_ratio+0,WREG
heinrichsweikamp
parents:
diff changeset
566 rcall ghostwrite_byte_header ; %He
97
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 39
diff changeset
567 movff opt_OC_bail_gas_change+0,WREG
0
heinrichsweikamp
parents:
diff changeset
568 rcall ghostwrite_byte_header ; Configured change depth in m
heinrichsweikamp
parents:
diff changeset
569 movff opt_gas_type+0,WREG
heinrichsweikamp
parents:
diff changeset
570 rcall ghostwrite_byte_header ; 0=Disabled, 1=First, 2= Travel, 3= Deco
heinrichsweikamp
parents:
diff changeset
571
heinrichsweikamp
parents:
diff changeset
572 movff opt_gas_O2_ratio+1,WREG
heinrichsweikamp
parents:
diff changeset
573 rcall ghostwrite_byte_header ; %O2
heinrichsweikamp
parents:
diff changeset
574 movff opt_gas_He_ratio+1,WREG
heinrichsweikamp
parents:
diff changeset
575 rcall ghostwrite_byte_header ; %He
97
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 39
diff changeset
576 movff opt_OC_bail_gas_change+1,WREG
0
heinrichsweikamp
parents:
diff changeset
577 rcall ghostwrite_byte_header ; Configured change depth in m
heinrichsweikamp
parents:
diff changeset
578 movff opt_gas_type+1,WREG
heinrichsweikamp
parents:
diff changeset
579 rcall ghostwrite_byte_header ; 0=Disabled, 1=First, 2= Travel, 3= Deco
heinrichsweikamp
parents:
diff changeset
580
heinrichsweikamp
parents:
diff changeset
581 movff opt_gas_O2_ratio+2,WREG
heinrichsweikamp
parents:
diff changeset
582 rcall ghostwrite_byte_header ; %O2
heinrichsweikamp
parents:
diff changeset
583 movff opt_gas_He_ratio+2,WREG
heinrichsweikamp
parents:
diff changeset
584 rcall ghostwrite_byte_header ; %He
97
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 39
diff changeset
585 movff opt_OC_bail_gas_change+2,WREG
0
heinrichsweikamp
parents:
diff changeset
586 rcall ghostwrite_byte_header ; Configured change depth in m
heinrichsweikamp
parents:
diff changeset
587 movff opt_gas_type+2,WREG
heinrichsweikamp
parents:
diff changeset
588 rcall ghostwrite_byte_header ; 0=Disabled, 1=First, 2= Travel, 3= Deco
heinrichsweikamp
parents:
diff changeset
589
heinrichsweikamp
parents:
diff changeset
590 movff opt_gas_O2_ratio+3,WREG
heinrichsweikamp
parents:
diff changeset
591 rcall ghostwrite_byte_header ; %O2
heinrichsweikamp
parents:
diff changeset
592 movff opt_gas_He_ratio+3,WREG
heinrichsweikamp
parents:
diff changeset
593 rcall ghostwrite_byte_header ; %He
97
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 39
diff changeset
594 movff opt_OC_bail_gas_change+3,WREG
0
heinrichsweikamp
parents:
diff changeset
595 rcall ghostwrite_byte_header ; Configured change depth in m
heinrichsweikamp
parents:
diff changeset
596 movff opt_gas_type+3,WREG
heinrichsweikamp
parents:
diff changeset
597 rcall ghostwrite_byte_header ; 0=Disabled, 1=First, 2= Travel, 3= Deco
heinrichsweikamp
parents:
diff changeset
598
heinrichsweikamp
parents:
diff changeset
599 movff opt_gas_O2_ratio+4,WREG
heinrichsweikamp
parents:
diff changeset
600 rcall ghostwrite_byte_header ; %O2
heinrichsweikamp
parents:
diff changeset
601 movff opt_gas_He_ratio+4,WREG
heinrichsweikamp
parents:
diff changeset
602 rcall ghostwrite_byte_header ; %He
97
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 39
diff changeset
603 movff opt_OC_bail_gas_change+4,WREG
0
heinrichsweikamp
parents:
diff changeset
604 rcall ghostwrite_byte_header ; Configured change depth in m
heinrichsweikamp
parents:
diff changeset
605 movff opt_gas_type+4,WREG
heinrichsweikamp
parents:
diff changeset
606 rcall ghostwrite_byte_header ; 0=Disabled, 1=First, 2= Travel, 3= Deco
heinrichsweikamp
parents:
diff changeset
607 ; bra end_dive_oc_cc_common
heinrichsweikamp
parents:
diff changeset
608
heinrichsweikamp
parents:
diff changeset
609 end_dive_oc_cc_common:
heinrichsweikamp
parents:
diff changeset
610 movlw softwareversion_x ; Firmware version
heinrichsweikamp
parents:
diff changeset
611 rcall ghostwrite_byte_header
heinrichsweikamp
parents:
diff changeset
612 movlw softwareversion_y
heinrichsweikamp
parents:
diff changeset
613 rcall ghostwrite_byte_header
heinrichsweikamp
parents:
diff changeset
614 movf batt_voltage+0,W ; Battery voltage
heinrichsweikamp
parents:
diff changeset
615 rcall ghostwrite_byte_header
heinrichsweikamp
parents:
diff changeset
616 movf batt_voltage+1,W
heinrichsweikamp
parents:
diff changeset
617 rcall ghostwrite_byte_header
heinrichsweikamp
parents:
diff changeset
618
23
e402813343b6 new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents: 6
diff changeset
619 movf samplingrate,W ; Sampling rate
e402813343b6 new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents: 6
diff changeset
620 btfsc FLAG_apnoe_mode ; Apnoe mode?
e402813343b6 new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents: 6
diff changeset
621 movlw samplingrate_apnoe ; Apnoe sampling rate
0
heinrichsweikamp
parents:
diff changeset
622 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
623
heinrichsweikamp
parents:
diff changeset
624 ; CNS at gebinning of dive
heinrichsweikamp
parents:
diff changeset
625 movff CNS_start+0,WREG
heinrichsweikamp
parents:
diff changeset
626 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
627 movff CNS_start+1,WREG
heinrichsweikamp
parents:
diff changeset
628 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
629 ; Gradient factor
heinrichsweikamp
parents:
diff changeset
630 movff GF_start,WREG
heinrichsweikamp
parents:
diff changeset
631 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
632 movff char_O_relative_gradient_GF,WREG
heinrichsweikamp
parents:
diff changeset
633 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
5
ed1dec74d5fd Put logbook offset into dive header
heinrichsweikamp
parents: 0
diff changeset
634
ed1dec74d5fd Put logbook offset into dive header
heinrichsweikamp
parents: 0
diff changeset
635 ; Logbook offset
ed1dec74d5fd Put logbook offset into dive header
heinrichsweikamp
parents: 0
diff changeset
636 call do_logoffset_common_read; Read into lo:hi
ed1dec74d5fd Put logbook offset into dive header
heinrichsweikamp
parents: 0
diff changeset
637 movf lo,W
0
heinrichsweikamp
parents:
diff changeset
638 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
5
ed1dec74d5fd Put logbook offset into dive header
heinrichsweikamp
parents: 0
diff changeset
639 movf hi,W
0
heinrichsweikamp
parents:
diff changeset
640 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
5
ed1dec74d5fd Put logbook offset into dive header
heinrichsweikamp
parents: 0
diff changeset
641
ed1dec74d5fd Put logbook offset into dive header
heinrichsweikamp
parents: 0
diff changeset
642 ; Spare at Byte 60
0
heinrichsweikamp
parents:
diff changeset
643 movlw 0xFF
heinrichsweikamp
parents:
diff changeset
644 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
645 ; Store 5 Setpoints
heinrichsweikamp
parents:
diff changeset
646 movff char_I_setpoint_cbar+0,WREG
heinrichsweikamp
parents:
diff changeset
647 rcall ghostwrite_byte_header ; Setpoint in cbar
heinrichsweikamp
parents:
diff changeset
648 movff char_I_setpoint_change+0,WREG
heinrichsweikamp
parents:
diff changeset
649 rcall ghostwrite_byte_header ; Change depth
heinrichsweikamp
parents:
diff changeset
650 movff char_I_setpoint_cbar+1,WREG
heinrichsweikamp
parents:
diff changeset
651 rcall ghostwrite_byte_header ; Setpoint in cbar
heinrichsweikamp
parents:
diff changeset
652 movff char_I_setpoint_change+1,WREG
heinrichsweikamp
parents:
diff changeset
653 rcall ghostwrite_byte_header ; Change depth
heinrichsweikamp
parents:
diff changeset
654 movff char_I_setpoint_cbar+2,WREG
heinrichsweikamp
parents:
diff changeset
655 rcall ghostwrite_byte_header ; Setpoint in cbar
heinrichsweikamp
parents:
diff changeset
656 movff char_I_setpoint_change+2,WREG
heinrichsweikamp
parents:
diff changeset
657 rcall ghostwrite_byte_header ; Change depth
heinrichsweikamp
parents:
diff changeset
658 movff char_I_setpoint_cbar+3,WREG
heinrichsweikamp
parents:
diff changeset
659 rcall ghostwrite_byte_header ; Setpoint in cbar
heinrichsweikamp
parents:
diff changeset
660 movff char_I_setpoint_change+3,WREG
heinrichsweikamp
parents:
diff changeset
661 rcall ghostwrite_byte_header ; Change depth
heinrichsweikamp
parents:
diff changeset
662 movff char_I_setpoint_cbar+4,WREG
heinrichsweikamp
parents:
diff changeset
663 rcall ghostwrite_byte_header ; Setpoint in cbar
heinrichsweikamp
parents:
diff changeset
664 movff char_I_setpoint_change+4,WREG
heinrichsweikamp
parents:
diff changeset
665 rcall ghostwrite_byte_header ; Change depth
heinrichsweikamp
parents:
diff changeset
666
heinrichsweikamp
parents:
diff changeset
667 movff opt_salinity,WREG ; Salinity (0-5%)
heinrichsweikamp
parents:
diff changeset
668 rcall ghostwrite_byte_header ; Store Salinity to Dive
heinrichsweikamp
parents:
diff changeset
669
heinrichsweikamp
parents:
diff changeset
670 movff int_O_CNS_fraction+0,WREG ; copy into bank1
heinrichsweikamp
parents:
diff changeset
671 rcall ghostwrite_byte_header; Stores CNS%
heinrichsweikamp
parents:
diff changeset
672 movff int_O_CNS_fraction+1,WREG ; copy into bank1
heinrichsweikamp
parents:
diff changeset
673 rcall ghostwrite_byte_header; Stores CNS%
heinrichsweikamp
parents:
diff changeset
674
heinrichsweikamp
parents:
diff changeset
675 movff avr_rel_pressure_total+0,WREG ; Average Depth
heinrichsweikamp
parents:
diff changeset
676 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
677 movff avr_rel_pressure_total+1,WREG ; Average Depth
heinrichsweikamp
parents:
diff changeset
678 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
679
heinrichsweikamp
parents:
diff changeset
680 movff total_divetime_seconds+0,WREG ; Total dive time (Regardless of start_dive_threshold)
heinrichsweikamp
parents:
diff changeset
681 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
682 movff total_divetime_seconds+1,WREG ; Total dive time (Regardless of start_dive_threshold)
heinrichsweikamp
parents:
diff changeset
683 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
684
heinrichsweikamp
parents:
diff changeset
685 movff char_I_GF_Low_percentage,WREG ; GF_lo
heinrichsweikamp
parents:
diff changeset
686 movff char_I_deco_model,lo
heinrichsweikamp
parents:
diff changeset
687 decfsz lo,F ; jump over next line if char_I_deco_model == 1
heinrichsweikamp
parents:
diff changeset
688 movff char_I_saturation_multiplier,WREG ; Saturation Multiplier
heinrichsweikamp
parents:
diff changeset
689 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
690
heinrichsweikamp
parents:
diff changeset
691 movff char_I_GF_High_percentage,WREG ; GF_hi
heinrichsweikamp
parents:
diff changeset
692 movff char_I_deco_model,lo
heinrichsweikamp
parents:
diff changeset
693 decfsz lo,F ; jump over next line if char_I_deco_model == 1
heinrichsweikamp
parents:
diff changeset
694 movff char_I_desaturation_multiplier,WREG ; Desaturation Multiplier
heinrichsweikamp
parents:
diff changeset
695 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
696
heinrichsweikamp
parents:
diff changeset
697 movff char_I_deco_model,WREG ; 0 = ZH-L16, 1 = ZH-L16-GF
heinrichsweikamp
parents:
diff changeset
698 rcall ghostwrite_byte_header; writes byte and increases address (no banking)
heinrichsweikamp
parents:
diff changeset
699
heinrichsweikamp
parents:
diff changeset
700 read_int_eeprom .2
heinrichsweikamp
parents:
diff changeset
701 movf EEDATA,W
heinrichsweikamp
parents:
diff changeset
702 rcall ghostwrite_byte_header ; Total dive counter, low
heinrichsweikamp
parents:
diff changeset
703 read_int_eeprom .3
heinrichsweikamp
parents:
diff changeset
704 movf EEDATA,W
heinrichsweikamp
parents:
diff changeset
705 rcall ghostwrite_byte_header ; Total dive counter, high
heinrichsweikamp
parents:
diff changeset
706
heinrichsweikamp
parents:
diff changeset
707 movff opt_dive_mode,WREG
heinrichsweikamp
parents:
diff changeset
708 rcall ghostwrite_byte_header ; 0=OC, 1=CC, 2=Gauge, 3=Apnea
heinrichsweikamp
parents:
diff changeset
709
heinrichsweikamp
parents:
diff changeset
710 ; Store all tissue data available
heinrichsweikamp
parents:
diff changeset
711 movlw .16
heinrichsweikamp
parents:
diff changeset
712 movwf lo
heinrichsweikamp
parents:
diff changeset
713 lfsr FSR1,char_O_tissue_N2_saturation+0
heinrichsweikamp
parents:
diff changeset
714 end_dive_store_tissues_N2:
heinrichsweikamp
parents:
diff changeset
715 movf POSTINC1,W
heinrichsweikamp
parents:
diff changeset
716 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
717 decfsz lo,F
heinrichsweikamp
parents:
diff changeset
718 bra end_dive_store_tissues_N2 ; No
heinrichsweikamp
parents:
diff changeset
719
heinrichsweikamp
parents:
diff changeset
720 movlw .64
heinrichsweikamp
parents:
diff changeset
721 movwf lo
heinrichsweikamp
parents:
diff changeset
722 lfsr FSR1,0x700;pres_tissue_N2+0 ; 16*4Byte Float = 64Bytes
heinrichsweikamp
parents:
diff changeset
723 end_dive_store_tissues_N2_2:
heinrichsweikamp
parents:
diff changeset
724 movf POSTINC1,W
heinrichsweikamp
parents:
diff changeset
725 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
726 decfsz lo,F
heinrichsweikamp
parents:
diff changeset
727 bra end_dive_store_tissues_N2_2 ; No
heinrichsweikamp
parents:
diff changeset
728
heinrichsweikamp
parents:
diff changeset
729 movlw .16
heinrichsweikamp
parents:
diff changeset
730 movwf lo
heinrichsweikamp
parents:
diff changeset
731 lfsr FSR1,char_O_tissue_He_saturation+0
heinrichsweikamp
parents:
diff changeset
732 end_dive_store_tissues_He:
heinrichsweikamp
parents:
diff changeset
733 movf POSTINC1,W
heinrichsweikamp
parents:
diff changeset
734 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
735 decfsz lo,F
heinrichsweikamp
parents:
diff changeset
736 bra end_dive_store_tissues_He ; No
heinrichsweikamp
parents:
diff changeset
737
heinrichsweikamp
parents:
diff changeset
738 movlw .64
heinrichsweikamp
parents:
diff changeset
739 movwf lo
heinrichsweikamp
parents:
diff changeset
740 lfsr FSR1,0x740;pres_tissue_He+0 ; 16*4Byte Float = 64Bytes
heinrichsweikamp
parents:
diff changeset
741 end_dive_store_tissues_He_2:
heinrichsweikamp
parents:
diff changeset
742 movf POSTINC1,W
heinrichsweikamp
parents:
diff changeset
743 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
744 decfsz lo,F
heinrichsweikamp
parents:
diff changeset
745 bra end_dive_store_tissues_He_2 ; No
heinrichsweikamp
parents:
diff changeset
746
heinrichsweikamp
parents:
diff changeset
747 ; Some deco stuff
heinrichsweikamp
parents:
diff changeset
748 movff char_I_depth_last_deco,WREG ; last stop [m]
heinrichsweikamp
parents:
diff changeset
749 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
750 movff char_I_deco_distance,WREG ; assumed distance to shown stop
heinrichsweikamp
parents:
diff changeset
751 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
752
heinrichsweikamp
parents:
diff changeset
753 ; Last HUD data
heinrichsweikamp
parents:
diff changeset
754 movff hud_battery_mv+0,WREG ; Last HUD battery value
heinrichsweikamp
parents:
diff changeset
755 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
756 movff hud_battery_mv+1,WREG ; Last HUD battery value
heinrichsweikamp
parents:
diff changeset
757 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
758 movff hud_status_byte,WREG ; Last HUD status
heinrichsweikamp
parents:
diff changeset
759 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
760
heinrichsweikamp
parents:
diff changeset
761 ; Battery gauge registers [nAs]
heinrichsweikamp
parents:
diff changeset
762 movff battery_gauge+0,WREG ; Battery gauge register
heinrichsweikamp
parents:
diff changeset
763 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
764 movff battery_gauge+1,WREG ; Battery gauge register
heinrichsweikamp
parents:
diff changeset
765 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
766 movff battery_gauge+2,WREG ; Battery gauge register
heinrichsweikamp
parents:
diff changeset
767 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
768 movff battery_gauge+3,WREG ; Battery gauge register
heinrichsweikamp
parents:
diff changeset
769 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
770 movff battery_gauge+4,WREG ; Battery gauge register
heinrichsweikamp
parents:
diff changeset
771 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
772 movff battery_gauge+5,WREG ; Battery gauge register
heinrichsweikamp
parents:
diff changeset
773 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
774
heinrichsweikamp
parents:
diff changeset
775 ; Header stop
heinrichsweikamp
parents:
diff changeset
776 movlw 0xFB
heinrichsweikamp
parents:
diff changeset
777 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
778 movlw 0xFB
heinrichsweikamp
parents:
diff changeset
779 rcall ghostwrite_byte_header ; WREG -> Header in ext. flash
heinrichsweikamp
parents:
diff changeset
780
heinrichsweikamp
parents:
diff changeset
781 call divemode_store_statistics ; Store/update statistics for this unit
heinrichsweikamp
parents:
diff changeset
782
heinrichsweikamp
parents:
diff changeset
783 clrf surface_interval+0
heinrichsweikamp
parents:
diff changeset
784 clrf surface_interval+1 ; Clear surface interval timer
heinrichsweikamp
parents:
diff changeset
785
heinrichsweikamp
parents:
diff changeset
786 ghostwriter_end_dive_common:
heinrichsweikamp
parents:
diff changeset
787 ; Update ext_flash_log_pointer into EEPROM
heinrichsweikamp
parents:
diff changeset
788 clrf EEADRH
heinrichsweikamp
parents:
diff changeset
789 movff ext_flash_log_pointer+0,EEDATA
heinrichsweikamp
parents:
diff changeset
790 write_int_eeprom .4
heinrichsweikamp
parents:
diff changeset
791 movff ext_flash_log_pointer+1,EEDATA
heinrichsweikamp
parents:
diff changeset
792 write_int_eeprom .5
heinrichsweikamp
parents:
diff changeset
793 movff ext_flash_log_pointer+2,EEDATA
heinrichsweikamp
parents:
diff changeset
794 write_int_eeprom .6
heinrichsweikamp
parents:
diff changeset
795
heinrichsweikamp
parents:
diff changeset
796 bcf simulatormode_active ; if we were in simulator mode
heinrichsweikamp
parents:
diff changeset
797
heinrichsweikamp
parents:
diff changeset
798 ; In DEBUG compile, keep all simulated dives in logbook, Desat time, nofly, etc...
heinrichsweikamp
parents:
diff changeset
799 ifndef __DEBUG
heinrichsweikamp
parents:
diff changeset
800 extern deco_pull_tissues_from_vault
heinrichsweikamp
parents:
diff changeset
801 btfsc restore_deco_data ; Restore decodata?
heinrichsweikamp
parents:
diff changeset
802 call deco_pull_tissues_from_vault
heinrichsweikamp
parents:
diff changeset
803 banksel common ; Bank1
heinrichsweikamp
parents:
diff changeset
804 endif
heinrichsweikamp
parents:
diff changeset
805 call update_battery_registers ; update battery registers into EEPROM
heinrichsweikamp
parents:
diff changeset
806 goto surfloop ; and return to surfaceloop
heinrichsweikamp
parents:
diff changeset
807
166
30ebaf72170d BUGFIX: Flip compass with flipped screen, too
heinrichsweikamp
parents: 147
diff changeset
808 ghostwriter_end_dive_common_sim:
30ebaf72170d BUGFIX: Flip compass with flipped screen, too
heinrichsweikamp
parents: 147
diff changeset
809 movf divemins+0,W
30ebaf72170d BUGFIX: Flip compass with flipped screen, too
heinrichsweikamp
parents: 147
diff changeset
810 addwf surface_interval+0,F
30ebaf72170d BUGFIX: Flip compass with flipped screen, too
heinrichsweikamp
parents: 147
diff changeset
811 movf divemins+1,W
30ebaf72170d BUGFIX: Flip compass with flipped screen, too
heinrichsweikamp
parents: 147
diff changeset
812 addwfc surface_interval+1 ; Add simulated divetime to surface interval
30ebaf72170d BUGFIX: Flip compass with flipped screen, too
heinrichsweikamp
parents: 147
diff changeset
813 bra ghostwriter_end_dive_common
30ebaf72170d BUGFIX: Flip compass with flipped screen, too
heinrichsweikamp
parents: 147
diff changeset
814
0
heinrichsweikamp
parents:
diff changeset
815 global ghostwriter_short_header
heinrichsweikamp
parents:
diff changeset
816 ghostwriter_short_header: ; Write short header with divenumber into profile memory
heinrichsweikamp
parents:
diff changeset
817
heinrichsweikamp
parents:
diff changeset
818 ; load pointer for profile storing into RAM (Updated in EEPROM after the dive)
heinrichsweikamp
parents:
diff changeset
819 clrf EEADRH ; Make sure to select eeprom bank 0
heinrichsweikamp
parents:
diff changeset
820 read_int_eeprom .4
heinrichsweikamp
parents:
diff changeset
821 movff EEDATA,ext_flash_address+0
heinrichsweikamp
parents:
diff changeset
822 read_int_eeprom .5
heinrichsweikamp
parents:
diff changeset
823 movff EEDATA,ext_flash_address+1
heinrichsweikamp
parents:
diff changeset
824 read_int_eeprom .6
heinrichsweikamp
parents:
diff changeset
825 movff EEDATA,ext_flash_address+2
heinrichsweikamp
parents:
diff changeset
826
heinrichsweikamp
parents:
diff changeset
827 ; Clear dive length counter
heinrichsweikamp
parents:
diff changeset
828 clrf ext_flash_dive_counter+0
heinrichsweikamp
parents:
diff changeset
829 clrf ext_flash_dive_counter+1
heinrichsweikamp
parents:
diff changeset
830 clrf ext_flash_dive_counter+2
heinrichsweikamp
parents:
diff changeset
831
heinrichsweikamp
parents:
diff changeset
832 ; Write short header with divenumber into profile memory
heinrichsweikamp
parents:
diff changeset
833 movlw 0xFA
heinrichsweikamp
parents:
diff changeset
834 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
835 movlw 0xFA
heinrichsweikamp
parents:
diff changeset
836 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
837 ; Load total number of dives (low byte only)
heinrichsweikamp
parents:
diff changeset
838 read_int_eeprom .2
heinrichsweikamp
parents:
diff changeset
839 incf EEDATA,W ;+1
heinrichsweikamp
parents:
diff changeset
840 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
841 read_int_eeprom .3
heinrichsweikamp
parents:
diff changeset
842 movf EEDATA,W
heinrichsweikamp
parents:
diff changeset
843 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
844 movlw 0xFA
heinrichsweikamp
parents:
diff changeset
845 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
846 movlw 0xFA
heinrichsweikamp
parents:
diff changeset
847 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
848 ; Keep room for dive length ext_flash_dive_counter:3 (Stored at the end of the dive)
heinrichsweikamp
parents:
diff changeset
849 incf_ext_flash_address_0x20 d'3' ; Skip Bytes in external flash (faster)
heinrichsweikamp
parents:
diff changeset
850
23
e402813343b6 new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents: 6
diff changeset
851 movf samplingrate,W ; Sampling rate
0
heinrichsweikamp
parents:
diff changeset
852 btfsc FLAG_apnoe_mode ; Apnoe mode?
heinrichsweikamp
parents:
diff changeset
853 movlw samplingrate_apnoe ; Apnoe sampling rate
heinrichsweikamp
parents:
diff changeset
854 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
855
heinrichsweikamp
parents:
diff changeset
856 movlw .7 ; Number of divisors
heinrichsweikamp
parents:
diff changeset
857 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
858
heinrichsweikamp
parents:
diff changeset
859 movlw .0 ; Type
heinrichsweikamp
parents:
diff changeset
860 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
861 movlw infolength_temperature
heinrichsweikamp
parents:
diff changeset
862 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
863 movlw div_temperature ; Divisor temperature
heinrichsweikamp
parents:
diff changeset
864 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
865
heinrichsweikamp
parents:
diff changeset
866 movlw .1 ; Type
heinrichsweikamp
parents:
diff changeset
867 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
868 movlw infolength_deco
heinrichsweikamp
parents:
diff changeset
869 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
870 movlw div_deco ; Divisor decodata
heinrichsweikamp
parents:
diff changeset
871 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
872
heinrichsweikamp
parents:
diff changeset
873 movlw .2 ; Type
heinrichsweikamp
parents:
diff changeset
874 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
875 movlw infolength_gf
heinrichsweikamp
parents:
diff changeset
876 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
877 movlw div_gf ; Divisor gf
heinrichsweikamp
parents:
diff changeset
878 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
879
heinrichsweikamp
parents:
diff changeset
880 movlw .3 ; Type
heinrichsweikamp
parents:
diff changeset
881 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
882 movlw infolength_ppo2_sensors
heinrichsweikamp
parents:
diff changeset
883 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
884 movlw div_ppo2_sensors ; Divisor ppO2
107
dc44aa645549 BUGFIX: wrong ppo2 recording parameter in short header
heinrichsweikamp
parents: 99
diff changeset
885 btfss FLAG_ccr_mode ; =1: CCR mode (Fixed ppO2 or Sensor) active
dc44aa645549 BUGFIX: wrong ppo2 recording parameter in short header
heinrichsweikamp
parents: 99
diff changeset
886 movlw .0 ; No ppO2 data in OC mode
0
heinrichsweikamp
parents:
diff changeset
887 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
888
heinrichsweikamp
parents:
diff changeset
889 movlw .4 ; Type
heinrichsweikamp
parents:
diff changeset
890 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
891 movlw infolength_decoplan
heinrichsweikamp
parents:
diff changeset
892 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
893 movlw div_decoplan ; Divisor debug
heinrichsweikamp
parents:
diff changeset
894 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
895
heinrichsweikamp
parents:
diff changeset
896 movlw .5 ; Type
heinrichsweikamp
parents:
diff changeset
897 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
898 movlw infolength_cns
heinrichsweikamp
parents:
diff changeset
899 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
900 movlw div_cns ; Divisor CNS
heinrichsweikamp
parents:
diff changeset
901 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
902
heinrichsweikamp
parents:
diff changeset
903 movlw .6 ; Type
heinrichsweikamp
parents:
diff changeset
904 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
905 movlw infolength_tank
heinrichsweikamp
parents:
diff changeset
906 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
907 movlw div_tank ; Divisor Tank
heinrichsweikamp
parents:
diff changeset
908 rcall ghostwrite_byte_profile ; WREG -> Profile in ext. flash
heinrichsweikamp
parents:
diff changeset
909
heinrichsweikamp
parents:
diff changeset
910 return
heinrichsweikamp
parents:
diff changeset
911
heinrichsweikamp
parents:
diff changeset
912 calculate_noflytime:
heinrichsweikamp
parents:
diff changeset
913 ; calculate nofly time
heinrichsweikamp
parents:
diff changeset
914 movff int_O_desaturation_time+0,xA+0
heinrichsweikamp
parents:
diff changeset
915 movff int_O_desaturation_time+1,xA+1
heinrichsweikamp
parents:
diff changeset
916
heinrichsweikamp
parents:
diff changeset
917 btfsc xA+1,7 ; Is desat time negative ?
heinrichsweikamp
parents:
diff changeset
918 bra calculate_noflytime_3 ; Then surely not valid !
heinrichsweikamp
parents:
diff changeset
919
heinrichsweikamp
parents:
diff changeset
920 tstfsz xA+0 ; Desat=0?
heinrichsweikamp
parents:
diff changeset
921 bra calculate_noflytime2
heinrichsweikamp
parents:
diff changeset
922 tstfsz xA+1 ; Desat=0?
heinrichsweikamp
parents:
diff changeset
923 bra calculate_noflytime2
heinrichsweikamp
parents:
diff changeset
924
heinrichsweikamp
parents:
diff changeset
925 calculate_noflytime_3:
heinrichsweikamp
parents:
diff changeset
926 ; Desaturation time = zero
heinrichsweikamp
parents:
diff changeset
927 clrf nofly_time+0 ; Clear nofly time
heinrichsweikamp
parents:
diff changeset
928 clrf nofly_time+1 ; Clear nofly time
heinrichsweikamp
parents:
diff changeset
929 return
heinrichsweikamp
parents:
diff changeset
930
heinrichsweikamp
parents:
diff changeset
931 calculate_noflytime2:
heinrichsweikamp
parents:
diff changeset
932 movff xA+0,int_I_temp+0
heinrichsweikamp
parents:
diff changeset
933 movff xA+1,int_I_temp+1
heinrichsweikamp
parents:
diff changeset
934 movlw no_fly_time_ratio ; nofly_time_ratio
heinrichsweikamp
parents:
diff changeset
935 movff WREG,char_I_temp
heinrichsweikamp
parents:
diff changeset
936 call deco_calc_percentage
heinrichsweikamp
parents:
diff changeset
937 movlb b'00000001' ; select ram bank 1
heinrichsweikamp
parents:
diff changeset
938 movff int_I_temp+0,xA+0
heinrichsweikamp
parents:
diff changeset
939 movff int_I_temp+1,xA+1
heinrichsweikamp
parents:
diff changeset
940 tstfsz xA+0 ; Desat=0?
heinrichsweikamp
parents:
diff changeset
941 bra calculate_noflytime_2_final
heinrichsweikamp
parents:
diff changeset
942 tstfsz xA+1 ; Desat=0?
heinrichsweikamp
parents:
diff changeset
943 bra calculate_noflytime_2_final
heinrichsweikamp
parents:
diff changeset
944 bra calculate_noflytime_3
heinrichsweikamp
parents:
diff changeset
945
heinrichsweikamp
parents:
diff changeset
946 calculate_noflytime_2_final:
heinrichsweikamp
parents:
diff changeset
947 movff xA+0,nofly_time+0
heinrichsweikamp
parents:
diff changeset
948 movff xA+1,nofly_time+1
heinrichsweikamp
parents:
diff changeset
949 return
heinrichsweikamp
parents:
diff changeset
950
heinrichsweikamp
parents:
diff changeset
951
heinrichsweikamp
parents:
diff changeset
952 divemode_store_statistics: ; Store/update statistics for this unit
133
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
953 rcall vault_decodata_into_eeprom ; update deco data
0
heinrichsweikamp
parents:
diff changeset
954 rcall do_logoffset_common_read ; Existing logbook offset into lo:hi
heinrichsweikamp
parents:
diff changeset
955
heinrichsweikamp
parents:
diff changeset
956 tstfsz lo ; lo=0?
heinrichsweikamp
parents:
diff changeset
957 bra change_logbook_offset1 ; No, adjust offset
heinrichsweikamp
parents:
diff changeset
958 tstfsz hi ; hi=0?
heinrichsweikamp
parents:
diff changeset
959 bra change_logbook_offset1 ; No, adjust offset
heinrichsweikamp
parents:
diff changeset
960 bra change_logbook_offset2 ; lo=0 and hi=0 -> skip Offset routine
heinrichsweikamp
parents:
diff changeset
961 change_logbook_offset1:
heinrichsweikamp
parents:
diff changeset
962 movlw d'1'
heinrichsweikamp
parents:
diff changeset
963 addwf lo
heinrichsweikamp
parents:
diff changeset
964 movlw d'0'
heinrichsweikamp
parents:
diff changeset
965 addwfc hi
heinrichsweikamp
parents:
diff changeset
966 rcall do_logoffset_common_write ; lo:hi -> EEPROM
heinrichsweikamp
parents:
diff changeset
967 change_logbook_offset2:
heinrichsweikamp
parents:
diff changeset
968 ; Add more here...
heinrichsweikamp
parents:
diff changeset
969 return
heinrichsweikamp
parents:
diff changeset
970
heinrichsweikamp
parents:
diff changeset
971 global do_logoffset_common_write
heinrichsweikamp
parents:
diff changeset
972 do_logoffset_common_write:
heinrichsweikamp
parents:
diff changeset
973 movff lo,EEDATA
heinrichsweikamp
parents:
diff changeset
974 write_int_eeprom 0x0D
heinrichsweikamp
parents:
diff changeset
975 movff hi,EEDATA
heinrichsweikamp
parents:
diff changeset
976 write_int_eeprom 0x0E
heinrichsweikamp
parents:
diff changeset
977 return
heinrichsweikamp
parents:
diff changeset
978
heinrichsweikamp
parents:
diff changeset
979 global do_logoffset_common_read
heinrichsweikamp
parents:
diff changeset
980 do_logoffset_common_read:
heinrichsweikamp
parents:
diff changeset
981 clrf EEADRH
heinrichsweikamp
parents:
diff changeset
982 read_int_eeprom 0x0D
heinrichsweikamp
parents:
diff changeset
983 movff EEDATA,lo
heinrichsweikamp
parents:
diff changeset
984 read_int_eeprom 0x0E
heinrichsweikamp
parents:
diff changeset
985 movff EEDATA,hi ; Existing logbook offset into lo:hi
heinrichsweikamp
parents:
diff changeset
986 return
heinrichsweikamp
parents:
diff changeset
987
heinrichsweikamp
parents:
diff changeset
988
heinrichsweikamp
parents:
diff changeset
989 global update_battery_registers
heinrichsweikamp
parents:
diff changeset
990 update_battery_registers:
heinrichsweikamp
parents:
diff changeset
991 ; save battery_gauge:6 into EEPROM 0x07-0x0C
heinrichsweikamp
parents:
diff changeset
992 clrf EEADRH
heinrichsweikamp
parents:
diff changeset
993 movff battery_gauge+0,EEDATA
heinrichsweikamp
parents:
diff changeset
994 write_int_eeprom 0x07
heinrichsweikamp
parents:
diff changeset
995 movff battery_gauge+1,EEDATA
heinrichsweikamp
parents:
diff changeset
996 write_int_eeprom 0x08
heinrichsweikamp
parents:
diff changeset
997 movff battery_gauge+2,EEDATA
heinrichsweikamp
parents:
diff changeset
998 write_int_eeprom 0x09
heinrichsweikamp
parents:
diff changeset
999 movff battery_gauge+3,EEDATA
heinrichsweikamp
parents:
diff changeset
1000 write_int_eeprom 0x0A
heinrichsweikamp
parents:
diff changeset
1001 movff battery_gauge+4,EEDATA
heinrichsweikamp
parents:
diff changeset
1002 write_int_eeprom 0x0B
heinrichsweikamp
parents:
diff changeset
1003 movff battery_gauge+5,EEDATA
heinrichsweikamp
parents:
diff changeset
1004 write_int_eeprom 0x0C
heinrichsweikamp
parents:
diff changeset
1005 return
heinrichsweikamp
parents:
diff changeset
1006
heinrichsweikamp
parents:
diff changeset
1007
133
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1008 global vault_decodata_into_eeprom
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1009 vault_decodata_into_eeprom:
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1010 ; Vault in EEPROM 512...1023
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1011 ; Write 0xAA at 512 to indicate valid data in vault
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1012 ; Store last time/date
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1013 ; Store 0x700 to 0x780 (pres_tissue_N2 and pres_tissue_He)
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1014 movlw HIGH .512 ; =2
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1015 movwf EEADRH
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1016 movlw 0xAA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1017 movwf EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1018 write_int_eeprom .0
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1019 ; Store date/time
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1020 movff year,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1021 write_int_eeprom .1
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1022 movff month,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1023 write_int_eeprom .2
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1024 movff day,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1025 write_int_eeprom .3
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1026 movff hours,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1027 write_int_eeprom .4
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1028 movff mins,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1029 write_int_eeprom .5
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1030 movff secs,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1031 write_int_eeprom .6
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1032
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1033 movff int_O_CNS_fraction+0,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1034 write_int_eeprom .7
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1035 movff int_O_CNS_fraction+1,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1036 write_int_eeprom .8
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1037 movff desaturation_time+0,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1038 write_int_eeprom .9
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1039 movff desaturation_time+1,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1040 write_int_eeprom .10
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1041 movff surface_interval+0,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1042 write_int_eeprom .11
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1043 movff surface_interval+1,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1044 write_int_eeprom .12
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1045 movff char_O_gradient_factor,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1046 write_int_eeprom .13
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1047 movff nofly_time+0,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1048 write_int_eeprom .14
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1049 movff nofly_time+1,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1050 write_int_eeprom .15
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1051
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1052 ; Tissue data from 16 to 144
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1053 movlw .16
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1054 movwf EEADR
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1055 movlw .128
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1056 movwf lo
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1057 lfsr FSR1,0x700;pres_tissue_N2+0 ; 32*4Byte Float = 128Bytes
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1058 vault_decodata_into_eeprom2:
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1059 movff POSTINC1,EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1060 call write_eeprom ; EEDATA into EEPROM@EEADR
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1061 incf EEADR,F
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1062 decfsz lo,F ; All done?
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1063 bra vault_decodata_into_eeprom2 ; No
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1064 clrf EEADRH
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1065 return
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1066
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1067 global restore_decodata_from_eeprom
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1068 restore_decodata_from_eeprom:
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1069 movlw LOW .512 ; =0
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1070 movwf EEADR
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1071 movlw HIGH .512 ; =2
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1072 movwf EEADRH
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1073
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1074 ; Restore date/time
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1075 read_int_eeprom .1
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1076 movff EEDATA,year
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1077 read_int_eeprom .2
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1078 movff EEDATA,month
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1079 read_int_eeprom .3
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1080 movff EEDATA,day
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1081 read_int_eeprom .4
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1082 movff EEDATA,hours
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1083 read_int_eeprom .5
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1084 movff EEDATA,mins
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1085 read_int_eeprom .6
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1086 movff EEDATA,secs
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1087 call rtc_set_rtc
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1088
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1089 read_int_eeprom .7
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1090 movff EEDATA,int_O_CNS_fraction+0
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1091 read_int_eeprom .8
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1092 movff EEDATA,int_O_CNS_fraction+1
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1093 read_int_eeprom .9
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1094 movff EEDATA,desaturation_time+0
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1095 read_int_eeprom .10
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1096 movff EEDATA,desaturation_time+1
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1097 read_int_eeprom .11
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1098 movff EEDATA,surface_interval+0
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1099 read_int_eeprom .12
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1100 movff EEDATA,surface_interval+1
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1101 read_int_eeprom .13
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1102 movff EEDATA,char_O_gradient_factor
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1103 read_int_eeprom .14
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1104 movff EEDATA,nofly_time+0
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1105 read_int_eeprom .15
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1106 movff EEDATA,nofly_time+1
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1107
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1108 ; Tissue data from 16 to 144
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1109 movlw .16
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1110 movwf EEADR
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1111 movlw .128
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1112 movwf lo
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1113 lfsr FSR1,0x700;pres_tissue_N2+0 ; 32*4Byte Float = 128Bytes
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1114 restore_decodata_from_eeprom2:
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1115 call read_eeprom ; EEPROM@EEADR into EEDATA
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1116 movff EEDATA,POSTINC1
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1117 incf EEADR,F
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1118 decfsz lo,F ; All done?
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1119 bra restore_decodata_from_eeprom2 ; No
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1120 clrf EEADRH
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1121 return
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1122
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 107
diff changeset
1123
0
heinrichsweikamp
parents:
diff changeset
1124 END