annotate code_part1/OSTC_code_asm_part1/divemode.asm @ 287:5f2fe81fde9f

Don't force gas with depth>0 to be active.
author JeanDo
date Thu, 21 Apr 2011 04:16:00 +0200
parents 5351d47ee28a
children 4dbff2aa31ee
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
2 ; OSTC - diving computer code
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
3 ; Copyright (C) 2008 HeinrichsWeikamp GbR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
5 ; This program is free software: you can redistribute it and/or modify
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
6 ; it under the terms of the GNU General Public License as published by
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
7 ; the Free Software Foundation, either version 3 of the License, or
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
8 ; (at your option) any later version.
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
9
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
10 ; This program is distributed in the hope that it will be useful,
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
13 ; GNU General Public License for more details.
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
14
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
15 ; You should have received a copy of the GNU General Public License
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>.
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
17
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
18
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
19 ; Mainroutines for divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
20 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
21 ; written: 10/01/05
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
22 ; last updated: 15/05/08
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
23 ; known bugs:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
24 ; ToDo:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
25
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
26 diveloop:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
27 call diveloop_boot ; Boot tasks for all modes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
28
256
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
29 ; start timer3 for deco routine CPU usesage monitor
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
30 movlw b'00000011'
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
31 movwf T3CON ; Timer3 with 32768Hz clock running
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
32
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
33 ; Startup Tasks for all modes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
34 ostc_debug 'R' ; Sends debug-information to screen if debugmode active
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
35 call PLED_ClearScreen ; clean up OLED
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
36 call PLED_divemode_mask ; Display mask
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
37 call PLED_active_gas_divemode ; Display gas, if required
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
38 call PLED_temp_divemode ; Displays temperature
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
39
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
40 btfsc FLAG_apnoe_mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
41 bsf realdive ; Set Realdive flag in Apnoe mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
42
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
43 btfsc gauge_mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
44 bra diveloop_loop ; Skip in gauge mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
45 btfsc FLAG_apnoe_mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
46 bra diveloop_loop ; Skip in apnoe mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
47
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
48 ; Startup Tasks for deco modes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
49 call PLED_display_ndl_mask ; display "no stop" if not in gauge or apnoe mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
50
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
51 diveloop_loop: ; The diveloop starts here
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
52 btfss onesecupdate ; tasks any new second
263
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
53 bra diveloop_loop3
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
54
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
55 btfsc gauge_mode ; Only in gauge mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
56 bra diveloop_loop1a ; One Second Tasks in Gauge mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
57 btfsc FLAG_apnoe_mode ; Only in apnoe mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
58 bra diveloop_loop1b ; One Second Tasks in Apnoe mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
59 btfsc FLAG_const_ppO2_mode ; only in const_ppO2_mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
60 bra diveloop_loop1c ; One Second Tasks in const_ppO2 mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
61
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
62 ; Tasks only for OC modes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
63 call check_ppO2 ; check ppO2 and displays warning if required
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
64 call calc_deko_divemode ; calculate decompression and display result (any two seconds)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
65 bra diveloop_loop1x ; Common Tasks
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
66
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
67 ; Tasks only for Gauge mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
68 diveloop_loop1a:
106
966ebf905514 bugfix in output16_3_call
heinrichsweikamp
parents: 98
diff changeset
69 btfss premenu ; Is the divemode menu active?
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
70 call PLED_divemins ; display (new) divetime!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
71 call timeout_divemode ; dive finished? This routine sets the required flags
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
72
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
73 btfsc twosecupdate ; two seconds after the last call
263
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
74 bra diveloop_loop1a2 ; Common Tasks
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
75
263
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
76 bsf twosecupdate ; Routines used in the "other second"
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
77 call calc_average_depth ; calculate average depth
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
78
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
79 bra diveloop_loop1x ; Common Tasks
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
80
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
81 diveloop_loop1a2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
82 bcf twosecupdate
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
83 bra diveloop_loop1x ; Common Tasks
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
84
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
85 ; Tasks only for Apnoe mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
86 diveloop_loop1b:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
87 call divemode_apnoe_tasks ; 1 sec. Apnoe tasks
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
88 bra diveloop_loop1x ; Common Tasks
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
89
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
90 ; Tasks only for ppO2 mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
91 diveloop_loop1c:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
92 call PLED_const_ppO2_value ; display const ppO2 setting in [Bar]
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
93 call calc_deko_divemode ; calculate decompression and display result (any two seconds)
3
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 2
diff changeset
94 btfsc is_bailout ; Are we in Bailout mode?
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 2
diff changeset
95 call check_ppO2_bail ; Yes, display ppO2 (If required)
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 2
diff changeset
96
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
97 bra diveloop_loop1x ; Common Tasks
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
98
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
99 ; Common Tasks for all modes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
100 diveloop_loop1x:
263
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
101 call customview_second ; Do every-second tasks for the custom view area
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
102
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
103 GETCUSTOM8 d'38' ; Show seconds (=1?)
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
104 movwf lo
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
105 movlw d'1'
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
106 cpfseq lo ; =1?
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
107 bra diveloop_loop1y ; No, minutes only
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
108 bsf update_divetime ; Set Update flag
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
109 diveloop_loop1y:
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
110 btfss update_divetime ; display new divetime?
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
111 bra diveloop_loop1z ; No
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
112 btfsc premenu ; Is the divemode menu active?
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
113 bra diveloop_loop1z ; Yes
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
114 call PLED_divemins ; Display (new) divetime!
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
115
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
116 diveloop_loop1z
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
117 bcf update_divetime ; clear flag
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
118
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
119 btfsc FLAG_const_ppO2_mode ; only in const_ppO2_mode
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
120 call PLED_const_ppO2_value ; display const ppO2 setting in [Bar]
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
121 btfsc ppO2_show_value ; show ppO2?
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
122 call check_ppO2 ; check ppO2 and displays warning if required
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
123
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
124 call timeout_divemode ; dive finished? This routine sets the required flags
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
125 btfsc low_battery_state ; If battery is low, then...
141
622da16b768f LowBatt! Warning in divemode
heinrichsweikamp
parents: 131
diff changeset
126 call update_batt_voltage_divemode ; Display Battery Warning Text
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
127 btfsc premenu ; is Menu? displayed?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
128 call timeout_premenu_divemode ; No, so check for timeout premenu
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
129 btfsc menubit ; is the Dive mode menu displayed?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
130 call timeout_divemenu ; Yes, so check for timeout divemenu
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
131 call set_leds_divemode ; Sets warnings, if required. Also Sets buzzer
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
132 btfsc enter_error_sleep ; Enter Fatal Error Routine?
16
01510acaeb11 1.54 rc2
heinrichsweikamp
parents: 8
diff changeset
133 call fatal_error_sleep ; Yes (In Sleepmode_vxx.asm!)
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
134
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
135 bcf onesecupdate ; one seconds update done
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
136
263
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
137 ; GETCUSTOM8 d'38' ; Show seconds (=1?)
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
138 ; movwf lo
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
139 ; movlw d'1'
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
140 ; cpfseq lo ; =1?
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
141 ; bra diveloop_loop2 ; No, minutes only
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
142 ; bsf update_divetime ; Set Update flag
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
143 ;
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
144 ;
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
145 ;diveloop_loop2:
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
146 ; btfss update_divetime ; display new divetime?
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
147 ; bra diveloop_loop3 ; No
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
148 ; btfsc premenu ; Is the divemode menu active?
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
149 ; bra diveloop_loop2a ; Yes
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
150 ; call PLED_divemins ; Display (new) divetime!
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
151 ; btfsc FLAG_const_ppO2_mode ; only in const_ppO2_mode
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
152 ; call PLED_const_ppO2_value ; display const ppO2 setting in [Bar]
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
153 ; btfsc ppO2_show_value ; show ppO2?
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
154 ; call check_ppO2 ; check ppO2 and displays warning if required
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
155 ;
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
156 ;diveloop_loop2a:
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
157 ; bcf update_divetime ; clear flag
27c9bb14b008 making the seconds display in divemode smoother...
heinrichsweikamp
parents: 257
diff changeset
158 ;
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
159 diveloop_loop3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
160 btfss menubit ; Divemode menu active?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
161 call test_switches_divemode ; No, Check switches normal
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
162
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
163 btfsc menubit ; Divemode menu active?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
164 call test_switches_divemode_menu ; Yes, check switches divemode menu
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
165
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
166 btfss divemode ; Dive finished?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
167 bra end_dive ; Dive finished!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
168
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
169 btfsc pressure_refresh ; new pressure available?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
170 call update_divemode1 ; Yes, display new depth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
171 bcf pressure_refresh ; until new pressure is available
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
172
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
173 btfsc oneminupdate ; one minute tasks
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
174 call update_divemode60 ; Update clock, etc.
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
175
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
176 btfsc store_sample ; store new sample?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
177 call store_dive_data ; Store profile data
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
178
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 83
diff changeset
179 btfsc toggle_customview ; Next view?
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 83
diff changeset
180 call customview_toggle ; Yes, show next customview (and delete this flag)
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 83
diff changeset
181
2
d11ef8dc4b2c Bugfix: PC simulator
heinrichsweikamp
parents: 0
diff changeset
182 btfsc menubit ; Sleep only with inactive menu...
d11ef8dc4b2c Bugfix: PC simulator
heinrichsweikamp
parents: 0
diff changeset
183 bra diveloop_loop4
d11ef8dc4b2c Bugfix: PC simulator
heinrichsweikamp
parents: 0
diff changeset
184
d11ef8dc4b2c Bugfix: PC simulator
heinrichsweikamp
parents: 0
diff changeset
185 btfsc simulatormode_active ; Do not sleep in Simualtor mode
d11ef8dc4b2c Bugfix: PC simulator
heinrichsweikamp
parents: 0
diff changeset
186 bra diveloop_loop4
d11ef8dc4b2c Bugfix: PC simulator
heinrichsweikamp
parents: 0
diff changeset
187
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
188 sleep
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
189 nop
2
d11ef8dc4b2c Bugfix: PC simulator
heinrichsweikamp
parents: 0
diff changeset
190 diveloop_loop4:
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
191 bra diveloop_loop ; Loop the divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
192
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
193 timeout_premenu_divemode:
128
4c588c3d1f12 Saturation graphs in customview divemode
JeanDo
parents: 124
diff changeset
194 incf timeout_counter3,F ; Yes...
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
195
128
4c588c3d1f12 Saturation graphs in customview divemode
JeanDo
parents: 124
diff changeset
196 GETCUSTOM8 d'4' ; loads premenu_timeout into WREG
4c588c3d1f12 Saturation graphs in customview divemode
JeanDo
parents: 124
diff changeset
197 cpfsgt timeout_counter3 ; ... longer then premenu_timeout
4c588c3d1f12 Saturation graphs in customview divemode
JeanDo
parents: 124
diff changeset
198 return ; No!
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
199
128
4c588c3d1f12 Saturation graphs in customview divemode
JeanDo
parents: 124
diff changeset
200 bcf premenu ; Yes, so clear "Menu?" and clear pre_menu bit
4c588c3d1f12 Saturation graphs in customview divemode
JeanDo
parents: 124
diff changeset
201 call PLED_menu_clear ; Remove "Menu?"
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
202 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
203
128
4c588c3d1f12 Saturation graphs in customview divemode
JeanDo
parents: 124
diff changeset
204 divemode_apnoe_tasks: ; 1 sec. Apnoe tasks
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
205 call PLED_display_apnoe_descent ; Show descent timer
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
206
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
207 btfsc divemode2 ; Time running?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
208 bra divemode_apnoe_tasks2 ; New descent, reset data if flag is set
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
209
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
210 call PLED_display_apnoe_surface
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
211 incf apnoe_surface_secs,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
212 movlw d'60'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
213 cpfseq apnoe_surface_secs
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
214 bra divemode_apnoe_tasks1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
215 clrf apnoe_surface_secs
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
216 incf apnoe_surface_mins,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
217
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
218 divemode_apnoe_tasks1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
219 bcf FLAG_active_descent ; Clear flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
220 btfsc divemode2 ; Time running?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
221 return ; Yes, return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
222
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
223 bsf FLAG_active_descent ; Set Flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
224 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
225
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
226 divemode_apnoe_tasks2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
227 btfss FLAG_active_descent ; Are descending?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
228 return ; No, We are at the surface
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
229 rcall apnoe_calc_maxdepth ; Yes!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
230
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
231 divemode_apnoe_tasks3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
232 call PLED_apnoe_clear_surface ; Clear Surface timer
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
233
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
234 clrf apnoe_timeout_counter ; Delete timeout
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
235 clrf apnoe_surface_secs
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
236 clrf apnoe_surface_mins
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
237 clrf apnoe_secs
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
238 clrf apnoe_mins ; Reset Descent time
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
239 clrf max_pressure+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
240 clrf max_pressure+1 ; Reset Max. Depth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
241 bcf FLAG_active_descent ; Clear flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
242 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
243
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
244 apnoe_calc_maxdepth:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
245 movff apnoe_max_pressure+0,sub_a+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
246 movff apnoe_max_pressure+1,sub_a+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
247 movff max_pressure+0,sub_b+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
248 movff max_pressure+1,sub_b+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
249 call sub16 ; sub_c = sub_a - sub_b
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
250 ; apnoe_max_pressure<max_pressure -> neg_flag=1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
251 ; max_pressure<=apnoe_max_pressure -> neg_flag=0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
252 btfss neg_flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
253 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
254 ;apnoe_max_pressure<max_pressure
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
255 movff max_pressure+0,apnoe_max_pressure+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
256 movff max_pressure+1,apnoe_max_pressure+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
257 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
258
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
259 set_leds_divemode:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
260 movff char_O_gradient_factor,lo ; gradient factor absolute
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
261
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
262 GETCUSTOM8 d'14' ; threshold for LED warning
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
263 cpfslt lo ;
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
264 call warn_gf1 ; show warning, set flags
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
265
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
266 movff char_I_deco_model,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
267 decfsz lo,W ; jump over return if char_I_deco_model == 1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
268 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
269
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
270 movff char_O_relative_gradient_GF,lo ; gradient factor relative (GF model)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
271
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
272 GETCUSTOM8 d'14' ; threshold for LED warning
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
273 cpfslt lo ;
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
274 call warn_gf1 ; show warning, set flags
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
275
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
276 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
277
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
278 warn_gf1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
279 movlw d'2' ; Type of Alarm
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
280 movwf AlarmType ; Copy to Alarm Register
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
281 bsf event_occured ; Set Event Flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
282 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
283
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
284 calc_deko_divemode:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
285 btfsc twosecupdate ; two seconds after the last call
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
286 bra calc_deko_divemode2 ; Yes, calculate and display deco data ("first second")
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
287
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
288 bsf twosecupdate ; No, but next second!
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
289 ; Routines used in the "other second"
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
290 call calc_average_depth ; calculate average depth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
291 call calc_velocity ; calculate vertical velocity and display if > threshold (every two seconds)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
292
222
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
293 ; calculate ppO2 in 0.01Bar (e.g. 150 = 1.50 Bar ppO2)
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
294 movff amb_pressure+0,xA+0 ; P_amb in milibar (1000 = 1.000 bar).
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
295 movff amb_pressure+1,xA+1
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
296 movlw d'10'
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
297 movwf xB+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
298 clrf xB+1
222
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
299 call div16x16 ; xC=p_amb/10 (100 = 1.00 bar).
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
300 movff xC+0,xA+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
301 movff xC+1,xA+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
302 movff char_I_O2_ratio,xB+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
303 clrf xB+1
222
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
304 call mult16x16 ; char_I_O2_ratio * (p_amb/10)
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
305 movff xC+0,xA+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
306 movff xC+1,xA+1
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
307 movlw d'100'
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
308 movwf xB+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
309 clrf xB+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
310 call div16x16 ; xC=(char_I_O2_ratio * p_amb/10)/100
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
311
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
312 ; Copy ppO2 for CNS calculation
250
4ef3bcbc7091 Fix minor CNS calc when ppO2 > 2.55
JeanDo
parents: 239
diff changeset
313 tstfsz xC+1 ; Is ppO2 > 2.55bar ?
4ef3bcbc7091 Fix minor CNS calc when ppO2 > 2.55
JeanDo
parents: 239
diff changeset
314 setf xC+0 ; yes: bound to 2.55... better than wrap around.
4ef3bcbc7091 Fix minor CNS calc when ppO2 > 2.55
JeanDo
parents: 239
diff changeset
315
4ef3bcbc7091 Fix minor CNS calc when ppO2 > 2.55
JeanDo
parents: 239
diff changeset
316 movff xC+0, char_I_actual_ppO2 ; copy last ppO2 to buffer register
4ef3bcbc7091 Fix minor CNS calc when ppO2 > 2.55
JeanDo
parents: 239
diff changeset
317 btfsc FLAG_const_ppO2_mode ; do in const_ppO2_mode
4ef3bcbc7091 Fix minor CNS calc when ppO2 > 2.55
JeanDo
parents: 239
diff changeset
318 movff char_I_const_ppO2, char_I_actual_ppO2 ; copy last ppO2 to buffer register
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
319
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
320 ; Calculate CNS
116
14a074e1a375 Split C code, and use direct linking.
JeanDo
parents: 115
diff changeset
321 call deco_calc_CNS_fraction ; calculate CNS
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
322 movlb b'00000001' ; rambank 1 selected
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
323
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
324 ; Check if CNS should be displayed
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
325 movff char_O_CNS_fraction,lo ; copy into bank1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
326 GETCUSTOM8 d'27' ; cns_display_high
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
327 subwf lo,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
328 btfsc STATUS,C
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
329 call PLED_display_cns ; Show CNS
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
330 call check_gas_change ; Checks if a better gas should be selected (by user)
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
331
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
332 ; Check for decompression gases if in decomode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
333 btfss dekostop_active
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
334 bra reset_decompression_gases ; While in NDL, do not set deompression gas
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
335
38
8ece4837a642 test & debugging new deco code...
heinrichsweikamp
parents: 35
diff changeset
336 divemode_check_decogases: ; CALLed from Simulator
286
5351d47ee28a Active gas flags simplified
heinrichsweikamp
parents: 281
diff changeset
337 ; Copy all gases to char_I_deco_N2_ratio and char_I_deco_He_ratio
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
338 read_int_eeprom d'5' ; Read He ratio
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
339 movff EEDATA,char_I_deco_He_ratio+4 ; And copy into hold register
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
340 read_int_eeprom d'4' ; Read O2 ratio
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
341 movff char_I_deco_He_ratio+4, wait_temp ; copy into bank1 register
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
342 bsf STATUS,C ;
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
343 movlw d'100' ; 100%
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
344 subfwb wait_temp,W ; minus He
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
345 subfwb EEDATA,F ; minus O2
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
346 movff EEDATA, char_I_deco_N2_ratio+4; = N2!
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
347
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
348 read_int_eeprom d'9' ; Read He ratio
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
349 movff EEDATA,char_I_deco_He_ratio+3 ; And copy into hold register
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
350 read_int_eeprom d'8' ; Read O2 ratio
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
351 movff char_I_deco_He_ratio+3, wait_temp ; copy into bank1 register
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
352 bsf STATUS,C ;
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
353 movlw d'100' ; 100%
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
354 subfwb wait_temp,W ; minus He
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
355 subfwb EEDATA,F ; minus O2
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
356 movff EEDATA, char_I_deco_N2_ratio+3; = N2!
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
357
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
358 read_int_eeprom d'13' ; Read He ratio
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
359 movff EEDATA,char_I_deco_He_ratio+2 ; And copy into hold register
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
360 read_int_eeprom d'12' ; Read O2 ratio
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
361 movff char_I_deco_He_ratio+2, wait_temp ; copy into bank1 register
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
362 bsf STATUS,C ;
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
363 movlw d'100' ; 100%
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
364 subfwb wait_temp,W ; minus He
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
365 subfwb EEDATA,F ; minus O2
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
366 movff EEDATA, char_I_deco_N2_ratio+2; = N2!
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
367
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
368 read_int_eeprom d'17' ; Read He ratio
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
369 movff EEDATA,char_I_deco_He_ratio+1 ; And copy into hold register
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
370 read_int_eeprom d'16' ; Read O2 ratio
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
371 movff char_I_deco_He_ratio+1, wait_temp ; copy into bank1 register
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
372 bsf STATUS,C ;
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
373 movlw d'100' ; 100%
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
374 subfwb wait_temp,W ; minus He
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
375 subfwb EEDATA,F ; minus O2
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
376 movff EEDATA, char_I_deco_N2_ratio+1; = N2!
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
377
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
378 read_int_eeprom d'21' ; Read He ratio
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
379 movff EEDATA,char_I_deco_He_ratio+0; And copy into hold register
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
380 read_int_eeprom d'20' ; Read O2 ratio
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
381 movff char_I_deco_He_ratio+0, wait_temp ; copy into bank1 register
39
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
382 bsf STATUS,C ;
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
383 movlw d'100' ; 100%
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
384 subfwb wait_temp,W ; minus He
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
385 subfwb EEDATA,F ; minus O2
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
386 movff EEDATA, char_I_deco_N2_ratio+0; = N2!
39
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
387
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
388 read_int_eeprom d'28' ; read gas_change_depth Gas1
221
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
389 btfss sorted_gaslist_active,0 ; Apply depth?
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
390 clrf EEDATA ; No, clear!
222
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
391 movff EEDATA,char_I_deco_gas_change+4 ; Yes!
221
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
392
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
393 read_int_eeprom d'29' ; read gas_change_depth Gas2
221
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
394 btfss sorted_gaslist_active,1 ; Apply depth?
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
395 clrf EEDATA ; No, clear!
222
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
396 movff EEDATA,char_I_deco_gas_change+3 ; Yes!
45
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
397
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
398 read_int_eeprom d'30' ; read gas_change_depth Gas3
221
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
399 btfss sorted_gaslist_active,2 ; Apply depth?
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
400 clrf EEDATA ; No, clear!
222
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
401 movff EEDATA,char_I_deco_gas_change+2 ; Yes!
221
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
402
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
403 read_int_eeprom d'31' ; read gas_change_depth Gas4
221
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
404 btfss sorted_gaslist_active,3 ; Apply depth?
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
405 clrf EEDATA ; No, clear!
222
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
406 movff EEDATA,char_I_deco_gas_change+1 ; Yes!
221
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
407
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
408 read_int_eeprom d'32' ; read gas_change_depth Gas5
221
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
409 btfss sorted_gaslist_active,4 ; Apply depth?
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
410 clrf EEDATA ; No, clear!
222
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
411 movff EEDATA,char_I_deco_gas_change+0 ; Yes!
38
8ece4837a642 test & debugging new deco code...
heinrichsweikamp
parents: 35
diff changeset
412
8ece4837a642 test & debugging new deco code...
heinrichsweikamp
parents: 35
diff changeset
413 ; Debugger
45
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
414 ; call enable_rs232
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
415 ; movff char_I_deco_He_ratio+4,TXREG
39
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
416 ; call rs232_wait_tx ; wait for UART
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
417 ; movff char_I_deco_N2_ratio+4,TXREG
39
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
418 ; call rs232_wait_tx ; wait for UART
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
419 ; movff char_I_deco_He_ratio+3,TXREG
39
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
420 ; call rs232_wait_tx ; wait for UART
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
421 ; movff char_I_deco_N2_ratio+3,TXREG
39
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
422 ; call rs232_wait_tx ; wait for UART
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
423 ; movff char_I_deco_He_ratio+2,TXREG
39
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
424 ; call rs232_wait_tx ; wait for UART
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
425 ; movff char_I_deco_N2_ratio+2,TXREG
39
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
426 ; call rs232_wait_tx ; wait for UART
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
427 ; movff char_I_deco_He_ratio+1,TXREG
39
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
428 ; call rs232_wait_tx ; wait for UART
224
49c90c5d9603 Gas usage
JeanDo
parents: 222
diff changeset
429 ; movff char_I_deco_N2_ratio+1,TXREG
39
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
430 ; call rs232_wait_tx ; wait for UART
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
431 ; movff char_I_deco_He_ratio,TXREG
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
432 ; call rs232_wait_tx ; wait for UART
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
433 ; movff char_I_deco_N2_ratio,TXREG
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
434 ; call rs232_wait_tx ; wait for UART
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
435 ; movff char_I_deco_gas_change5,TXREG
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
436 ; call rs232_wait_tx ; wait for UART
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
437 ; movff char_I_deco_gas_change4,TXREG
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
438 ; call rs232_wait_tx ; wait for UART
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
439 ; movff char_I_deco_gas_change3,TXREG
221
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
440 ; call rs232_wait_tx ; wait for UART
39
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
441 ; movff char_I_deco_gas_change2,TXREG
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
442 ; call rs232_wait_tx ; wait for UART
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
443 ; movff char_I_deco_gas_change,TXREG
1705b3f7e5b3 1.62 beta rc2
heinrichsweikamp
parents: 38
diff changeset
444 ; call rs232_wait_tx ; wait for UART
47
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
445
33
6e5db85382a2 Speedy simulator! New Deco code test 1
heinrichsweikamp
parents: 25
diff changeset
446 return
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
447
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
448 reset_decompression_gases: ; reset the deco gas while in NDL
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
449 ostc_debug 'F' ; Sends debug-information to screen if debugmode active
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
450 clrf lo
222
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
451 movff lo,char_I_deco_gas_change+4
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
452 movff lo,char_I_deco_gas_change+3
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
453 movff lo,char_I_deco_gas_change+2
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
454 movff lo,char_I_deco_gas_change+1
638f8e17bd51 Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents: 221
diff changeset
455 movff lo,char_I_deco_gas_change+0 ; clear
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
456 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
457
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
458 calc_deko_divemode2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
459 bcf twosecupdate
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
460
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
461 btfsc gauge_mode ; ignore decompression calculation in gauge mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
462 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
463 btfsc FLAG_apnoe_mode ; ignore decompression calculation in apnoe mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
464 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
465
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
466 ostc_debug 'B' ; Sends debug-information to screen if debugmode active
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
467 call divemode_prepare_flags_for_deco
40
92001c045088 1.62 beta release
heinrichsweikamp
parents: 39
diff changeset
468 movlw d'0'
92001c045088 1.62 beta release
heinrichsweikamp
parents: 39
diff changeset
469 movff WREG,char_I_step_is_1min ; 2 second deco mode
92001c045088 1.62 beta release
heinrichsweikamp
parents: 39
diff changeset
470
256
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
471 clrf TMR3L
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
472 clrf TMR3H ; Reset Timer3
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
473
116
14a074e1a375 Split C code, and use direct linking.
JeanDo
parents: 115
diff changeset
474 call deco_calc_hauptroutine ; calc_tissue
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
475 movlb b'00000001' ; rambank 1 selected
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
476 ostc_debug 'C' ; Sends debug-information to screen if debugmode active
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
477
256
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
478 btfss debug_mode ; Are we in debugmode?
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
479 bra calc_deko_divemode4 ; No...
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
480
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
481 ; Show timer3 reading converted into ms (Error: +2,3%) in custom area
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
482 movff TMR3L,lo
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
483 movff TMR3H,hi
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
484 bcf STATUS,C
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
485 rrcf hi
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
486 rrcf lo ;/2
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
487 bcf STATUS,C
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
488 rrcf hi
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
489 rrcf lo ;/4
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
490 bcf STATUS,C
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
491 rrcf hi
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
492 rrcf lo ;/8
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
493 bcf STATUS,C
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
494 rrcf hi
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
495 rrcf lo ;/16
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
496 bcf STATUS,C
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
497 rrcf hi
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
498 rrcf lo ;/32
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
499
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
500 WIN_TOP .216
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
501 WIN_LEFT .100
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
502 WIN_FONT FT_SMALL
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
503 STRCPY "ms:"
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
504 output_16
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
505 call word_processor
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
506
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
507 calc_deko_divemode4:
d8dfbc7041b0 added CPU time debugger
heinrichsweikamp
parents: 254
diff changeset
508
169
e26f49674956 Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents: 167
diff changeset
509 movff char_O_first_deco_depth,wait_temp ; copy ceiling to temp register
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
510 tstfsz wait_temp ; Ceiling<0m?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
511 bra calc_deko_divemode3 ; Yes!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
512
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
513 btfsc dekostop_active
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
514 call PLED_display_ndl_mask ; Clear deco data, display nostop time
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
515 bcf dekostop_active ; clear flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
516
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
517 clrf decodata+0 ; for profile memory
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
518 movff char_O_nullzeit,decodata+1 ; nostop time
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
519
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
520 call PLED_display_ndl ; display no deco limit
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
521 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
522
124
4f9f477bb452 Rewrite display of decoplan:
JeanDo
parents: 116
diff changeset
523 ;-----------------------------------------------------------------------------
69
df2d3b28947f 1.71beta for Mk.2
heinrichsweikamp
parents: 68
diff changeset
524
237
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
525 divemode_prepare_flags_for_deco:
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
526 movff amb_pressure+0,int_I_pres_respiration+0 ; lo and copy result to deco routine
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
527 movff amb_pressure+1,int_I_pres_respiration+1 ; hi
197
f15e804ff67f Gas switch delay
JeanDo
parents: 180
diff changeset
528 GETCUSTOM8 d'11' ; Saturation multiplier %
f15e804ff67f Gas switch delay
JeanDo
parents: 180
diff changeset
529 movff WREG,char_I_saturation_multiplier
f15e804ff67f Gas switch delay
JeanDo
parents: 180
diff changeset
530 GETCUSTOM8 d'12' ; Desaturation multiplier %
f15e804ff67f Gas switch delay
JeanDo
parents: 180
diff changeset
531 movff WREG,char_I_desaturation_multiplier
f15e804ff67f Gas switch delay
JeanDo
parents: 180
diff changeset
532 GETCUSTOM8 d'16' ; Deco distance to decostop in 1/10 meter for simulation
f15e804ff67f Gas switch delay
JeanDo
parents: 180
diff changeset
533 movff WREG,char_I_deco_distance
f15e804ff67f Gas switch delay
JeanDo
parents: 180
diff changeset
534 GETCUSTOM8 d'29' ; Depth Last Deco in meter for simulation
f15e804ff67f Gas switch delay
JeanDo
parents: 180
diff changeset
535 movff WREG,char_I_depth_last_deco
203
2d9af08ed0ac BUGFIX Gas switch
JeanDo
parents: 197
diff changeset
536 movff divemins+0,int_I_divemins+0 ; Current dive time.
2d9af08ed0ac BUGFIX Gas switch
JeanDo
parents: 197
diff changeset
537 movff divemins+1,int_I_divemins+1
197
f15e804ff67f Gas switch delay
JeanDo
parents: 180
diff changeset
538 goto restart_set_modes_and_flags ; Sets decomode (char_I_deco_model) and flags (again)
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
539
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
540 calc_deko_divemode3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
541 btfss dekostop_active
197
f15e804ff67f Gas switch delay
JeanDo
parents: 180
diff changeset
542 call PLED_display_deko_mask ; clear nostop time, display decodata
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
543 bsf dekostop_active ; Set flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
544
169
e26f49674956 Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents: 167
diff changeset
545 movff char_O_first_deco_depth,decodata+0 ; ceiling
e26f49674956 Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents: 167
diff changeset
546 movff char_O_first_deco_time,decodata+1 ; length of first stop in minues
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
547
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
548 call PLED_display_deko ; display decodata
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
549 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
550
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
551 store_dive_data: ; CF20 seconds gone
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
552 bcf store_sample ; update only any CF20 seconds
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
553 bsf update_divetime ; update divemins every CF20 seconds
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
554
233
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
555 ifndef __DEBUG
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
556 btfsc simulatormode_active ; Are we in simulator mode?
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
557 return ; Yes, discard everything
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
558 endif
33
6e5db85382a2 Speedy simulator! New Deco code test 1
heinrichsweikamp
parents: 25
diff changeset
559
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
560 btfsc header_stored ; Header already stored?
71
6beb680a6130 1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents: 69
diff changeset
561 bra store_dive_data2 ; Yes, store only profile data
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
562 bsf header_stored ; Store header
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
563
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
564 movff eeprom_address+0, eeprom_header_address+0 ; store startposition
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
565 movff eeprom_address+1, eeprom_header_address+1 ; store startposition
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
566
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
567 ; shift address for header
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
568 ; the header will be stored after the dive
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
569 incf_eeprom_address d'47' ; Macro, that adds 8Bit to eeprom_address:2 with banking at 0x8000
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
570
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
571 store_dive_data2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
572 movf rel_pressure+0,W ; store depth with every sample
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
573 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
574 movf rel_pressure+1,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
575 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
576
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
577 ;First, find out how many bytes will append to this sample....
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
578 clrf ProfileFlagByte ; clear number of bytes to append
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
579
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
580 ; Check Extented informations
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
581 decfsz divisor_temperature,W ; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
582 bra check_extended1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
583 movlw d'2' ; Information length
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
584 addwf ProfileFlagByte,F ; add to ProfileFlagByte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
585 check_extended1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
586 decfsz divisor_deco,W ; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
587 bra check_extended2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
588 movlw d'2' ; Information length
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
589 addwf ProfileFlagByte,F ; add to ProfileFlagByte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
590 check_extended2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
591 decfsz divisor_tank,W ; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
592 bra check_extended3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
593 movlw d'2' ; Information length
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
594 addwf ProfileFlagByte,F ; add to ProfileFlagByte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
595 check_extended3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
596 decfsz divisor_ppo2,W ; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
597 bra check_extended4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
598 movlw d'3' ; Information length
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
599 addwf ProfileFlagByte,F ; add to ProfileFlagByte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
600 check_extended4:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
601 decfsz divisor_deco_debug,W; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
602 bra check_extended5
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
603 movlw d'9' ; Information length
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
604 addwf ProfileFlagByte,F ; add to ProfileFlagByte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
605 check_extended5:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
606 decfsz divisor_nuy2,W ; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
607 bra check_extended6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
608 movlw d'0' ; Information length
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
609 addwf ProfileFlagByte,F ; add to ProfileFlagByte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
610 check_extended6:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
611
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
612 ; Second, check global event flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
613 btfss event_occured ; Check global event flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
614 bra store_dive_data3 ; No Event
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
615 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
616 addwf ProfileFlagByte,F ; add one byte (The EventByte)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
617
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
618 clrf EventByte ; reset EventByte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
619
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
620 movf AlarmType,W ; Type of Alarm Bit 0-3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
621 addwf EventByte,F ; Copy to EventByte Bit 0-3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
622 clrf AlarmType ; Reset AlarmType
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
623
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
624 ; Third, check events and add aditional bytes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
625 btfss manual_gas_changed ; Check flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
626 bra check_event1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
627 movlw d'2' ; Information length
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
628 addwf ProfileFlagByte,F ; add to ProfileFlagByte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
629 bsf EventByte,4 ; Also set Flag in EventByte!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
630 check_event1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
631 btfss stored_gas_changed ; Check flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
632 bra check_event2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
633 movlw d'1' ; Information length
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
634 addwf ProfileFlagByte,F ; add to ProfileFlagByte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
635 bsf EventByte,5 ; Also set Flag in EventByte!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
636 check_event2:
274
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
637 btfss setpoint_changed ; Check flag
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
638 bra check_event3
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
639 movlw d'1' ; Information length
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
640 addwf ProfileFlagByte,F ; add to ProfileFlagByte
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
641 bsf EventByte,6 ; Also set Flag in EventByte!
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
642 check_event3:
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
643 bsf ProfileFlagByte,7 ; Set EventByte Flag in ProfileFlagByte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
644
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
645 store_dive_data3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
646 movf ProfileFlagByte,W ; finally, write ProfileFlagByte!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
647 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
648
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
649 btfss event_occured ; Check global event flag (again)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
650 bra store_dive_data4 ; No Event
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
651
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
652 ; Store the EventByte + additional bytes now
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
653 movf EventByte,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
654 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
655
274
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
656 btfss manual_gas_changed ; Check flag
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
657 bra store_dive_data3a
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
658 read_int_eeprom d'24' ; % O2 Gas6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
659 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
660 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
661 read_int_eeprom d'25' ; % He Gas6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
662 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
663 call write_external_eeprom
274
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
664 bcf manual_gas_changed ; Clear this event
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
665
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
666 store_dive_data3a:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
667 btfss stored_gas_changed ; Check flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
668 bra store_dive_data3b
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
669 movf active_gas,W ; Store active gas
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
670 call write_external_eeprom
274
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
671 bcf stored_gas_changed ; Clear this event
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
672 store_dive_data3b:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
673
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
674 store_dive_data4:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
675
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
676 ; Store extended informations
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
677 decfsz divisor_temperature,F ; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
678 bra store_extended1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
679 rcall store_dive_temperature
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
680 store_extended1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
681 decfsz divisor_deco,F ; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
682 bra store_extended2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
683 rcall store_dive_decodata
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
684 store_extended2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
685 decfsz divisor_tank,F ; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
686 bra store_extended3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
687 rcall store_dive_tankdata
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
688 store_extended3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
689 decfsz divisor_ppo2,F ; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
690 bra store_extended4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
691 rcall store_dive_ppo2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
692 store_extended4:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
693 decfsz divisor_deco_debug,F; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
694 bra store_extended5
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
695 rcall store_dive_decodebug
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
696 store_extended5:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
697 decfsz divisor_nuy2,F ; Check divisor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
698 bra store_extended6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
699 rcall store_dive_nuy2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
700 store_extended6:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
701
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
702 ; The next block is required to take care of "store never"
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
703 btfsc divisor_temperature,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
704 clrf divisor_temperature ; And clear register again, so it will never reach zero...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
705 btfsc divisor_deco,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
706 clrf divisor_deco ; And clear register again, so it will never reach zero...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
707 btfsc divisor_tank,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
708 clrf divisor_tank ; And clear register again, so it will never reach zero...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
709 btfsc divisor_ppo2,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
710 clrf divisor_ppo2 ; And clear register again, so it will never reach zero...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
711 btfsc divisor_deco_debug,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
712 clrf divisor_deco_debug ; And clear register again, so it will never reach zero...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
713 btfsc divisor_nuy2,7 ; Test highest Bit (Register must have been zero before the "decfsz" command!)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
714 clrf divisor_nuy2 ; And clear register again, so it will never reach zero...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
715
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
716 ostc_debug 'D' ; Sends debug-information to screen if debugmode active
274
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
717
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
718 ; SetPoint change appended to information due to compatibility reasons
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
719 btfss setpoint_changed ; Check flag
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
720 bra store_dive_data5
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
721 movff char_I_const_ppO2,WREG ; SetPoint in cBar
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
722 call write_external_eeprom
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
723 bcf setpoint_changed ; Clear this event
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
724
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
725 store_dive_data5:
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
726 bcf event_occured ; Clear the global event flag
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
727 return ; Done. (Sample with all informations written to EEPROM)
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
728
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
729 store_dive_nuy2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
730 GETCUSTOM8 d'26'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
731 movwf divisor_nuy2 ; Reload divisor from CF
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
732 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
733
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
734 store_dive_decodebug:
171
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
735 ; Dump 9 bytes, int_O_DBS_bitfield .. char_O_NDL_at_20mtr
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
736 lfsr FSR2, int_O_DBS_bitfield
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
737 movf POSTINC2,W
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
738 call write_external_eeprom ; Store in EEPROM
171
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
739 movf POSTINC2,W
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
740 call write_external_eeprom ; Store in EEPROM
171
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
741 movf POSTINC2,W
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
742 call write_external_eeprom ; Store in EEPROM
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
743 movf POSTINC2,W
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
744 call write_external_eeprom ; Store in EEPROM
171
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
745 movf POSTINC2,W
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
746 call write_external_eeprom ; Store in EEPROM
171
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
747 movf POSTINC2,W
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
748 call write_external_eeprom ; Store in EEPROM
171
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
749 movf POSTINC2,W
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
750 call write_external_eeprom ; Store in EEPROM
171
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
751 movf POSTINC2,W
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
752 call write_external_eeprom ; Store in EEPROM
171
7f3e1bf588bc More p2_deco.c cleanups
JeanDo
parents: 169
diff changeset
753 movf POSTINC2,W
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
754 call write_external_eeprom ; Store in EEPROM
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
755 GETCUSTOM8 d'25'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
756 movwf divisor_deco_debug ; Reload divisor from CF
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
757 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
758
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
759 store_dive_ppo2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
760 movlw 0x00 ; Dummy
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
761 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
762 movlw 0x00 ; Dummy
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
763 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
764 movlw 0x00 ; Dummy
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
765 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
766 GETCUSTOM8 d'24'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
767 movwf divisor_ppo2 ; Reload divisor from CF
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
768 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
769
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
770 store_dive_tankdata:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
771 movlw d'0' ; Dummy Tank1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
772 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
773 movlw d'0' ; Dummy Tank2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
774 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
775 GETCUSTOM8 d'23'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
776 movwf divisor_tank ; Reload divisor from CF
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
777 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
778
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
779 store_dive_decodata:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
780 movf decodata+0,W ; =0:no stop dive, if in deco mode: ceiling in m
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
781 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
782 movf decodata+1,W ; no stop time of length of first stop
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
783 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
784 GETCUSTOM8 d'22'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
785 movwf divisor_deco ; Reload divisor from CF
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
786 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
787
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
788 store_dive_temperature:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
789 movf temperature+0,W ; append temperature to current sample!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
790 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
791 movf temperature+1,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
792 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
793 GETCUSTOM8 d'21'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
794 movwf divisor_temperature ; Reload divisor from CF
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
795 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
796
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
797 calc_velocity: ; called every two seconds
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
798 btfss divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
799 bra do_not_display_velocity ; display velocity only in divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
800
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
801 calc_velocity2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
802 movff amb_pressure+0,sub_a+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
803 movff amb_pressure+1,sub_a+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
804 movff last_pressure+0,sub_b+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
805 movff last_pressure+1,sub_b+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
806 movff amb_pressure+0,last_pressure+0 ; store old value for velocity
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
807 movff amb_pressure+1,last_pressure+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
808
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
809 call sub16 ; sub_c = amb_pressure - last_pressure
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
810
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
811 movff sub_c+0,xA+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
812 movff sub_c+1,xA+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
813 movlw d'39' ;77 when called every second....
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
814 movwf xB+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
815 clrf xB+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
816 call mult16x16 ; differential pressure in mBar*77...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
817 movff xC+0,divA+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
818 movff xC+1,divA+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
819 movlw d'7'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
820 movwf divB
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
821 call div16 ; devided by 2^7 equals velocity in m/min
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
822
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
823 movlw d'99'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
824 cpfsgt divA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
825 bra calc_velocity3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
826 movwf divA ; divA=99
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
827
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
828 calc_velocity3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
829
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
830 GETCUSTOM8 d'5' ; threshold for display vertical velocity
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
831 subwf divA+0,W ;
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
832
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
833 btfss STATUS,C
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
834 bra do_not_display_velocity
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
835
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
836 update_velocity:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
837 bsf display_velocity
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
838 call PLED_display_velocity
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
839 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
840
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
841 do_not_display_velocity:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
842 btfss display_velocity ; Velocity was not displayed, do not delete
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
843 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
844
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
845 bcf display_velocity ; Velocity was displayed, delete velocity now
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
846 call PLED_display_velocity_clear
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
847 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
848
237
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
849 check_ppO2: ; check current ppO2 and display warning if required
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
850 btfsc FLAG_const_ppO2_mode ; ignore in ppO2 mode....
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
851 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
852
3
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 2
diff changeset
853 check_ppO2_bail: ; In CC mode but bailout active!
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
854 movff amb_pressure+0,xA+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
855 movff amb_pressure+1,xA+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
856 movlw d'10'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
857 movwf xB+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
858 clrf xB+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
859 call div16x16 ; xC=p_amb/10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
860 movff xC+0,xA+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
861 movff xC+1,xA+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
862 movff char_I_O2_ratio,xB+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
863 clrf xB+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
864 call mult16x16 ; char_I_O2_ratio * p_amb/10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
865
74
a1ccb92b59cd 1.72beta release
heinrichsweikamp
parents: 71
diff changeset
866 ; Check very high ppO2 manually
a1ccb92b59cd 1.72beta release
heinrichsweikamp
parents: 71
diff changeset
867 tstfsz xC+2 ; char_I_O2_ratio * p_amb/10 > 65536, ppO2>6,55Bar?
a1ccb92b59cd 1.72beta release
heinrichsweikamp
parents: 71
diff changeset
868 bra check_ppO2_bail2 ; Yes, display Value!
a1ccb92b59cd 1.72beta release
heinrichsweikamp
parents: 71
diff changeset
869
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
870 ; Check if ppO2 should be displayed
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
871 movff xC+0,sub_b+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
872 movff xC+1,sub_b+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
873 GETCUSTOM8 d'19' ; ppo2_display_high
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
874 mullw d'100' ; ppo2_display_high*100
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
875 movff PRODL,sub_a+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
876 movff PRODH,sub_a+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
877 call sub16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
878 bcf ppO2_show_value ; clear flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
879 btfsc neg_flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
880 bsf ppO2_show_value ; set flag if required
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
881
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
882 ;check if we are within our warning thresholds!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
883 bcf ppO2_warn_value ; clear flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
884 movff xC+0,sub_b+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
885 movff xC+1,sub_b+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
886 GETCUSTOM8 d'18' ; ppo2_warning_high
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
887 mullw d'100' ; ppo2_warning_high*100
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
888 movff PRODL,sub_a+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
889 movff PRODH,sub_a+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
890 call sub16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
891 btfss neg_flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
892 bra check_ppO2_0 ; Not too high
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
893
74
a1ccb92b59cd 1.72beta release
heinrichsweikamp
parents: 71
diff changeset
894 check_ppO2_bail2:
a1ccb92b59cd 1.72beta release
heinrichsweikamp
parents: 71
diff changeset
895 bsf ppO2_show_value ; set flag if required
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
896 bsf ppO2_warn_value ; set flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
897 movlw d'5' ; Type of Alarm
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
898 movwf AlarmType ; Copy to Alarm Register
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
899 bsf event_occured ; Set Event Flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
900
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
901 check_ppO2_0:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
902 movff xC+0,sub_b+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
903 movff xC+1,sub_b+1
210
f60acc323701 mini-cleanup
heinrichsweikamp
parents: 203
diff changeset
904 GETCUSTOM8 d'17' ; ppo2_warning_low
f60acc323701 mini-cleanup
heinrichsweikamp
parents: 203
diff changeset
905 mullw d'100' ; ppo2_warning_low*100
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
906 movff PRODL,sub_a+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
907 movff PRODH,sub_a+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
908 call sub16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
909 btfsc neg_flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
910 bra check_ppO2_1 ; Not too low
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
911
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
912 bsf ppO2_warn_value ; set flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
913 bsf ppO2_show_value ; show ppO2 if below threshold!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
914 movlw d'4' ; Type of Alarm
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
915 movwf AlarmType ; Copy to Alarm Register
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
916 bsf event_occured ; Set Event Flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
917
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
918 check_ppO2_1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
919 btfsc ppO2_show_value ; show value?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
920 bra check_ppO2_2 ; yes!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
921
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
922 btfss ppO2_display_active ; is the value displayed?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
923 bra check_ppO2_3 ; No, so clear not required
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
924
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
925 call PLED_show_ppO2_clear; Clear ppO2 value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
926 bcf ppO2_display_active ; clear flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
927 bra check_ppO2_3 ; done
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
928
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
929 check_ppO2_2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
930 call PLED_show_ppO2 ; Display ppO2 (stored in xC)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
931 bsf ppO2_display_active ; Set flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
932
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
933 check_ppO2_3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
934 return ; done
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
935
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
936
210
f60acc323701 mini-cleanup
heinrichsweikamp
parents: 203
diff changeset
937 check_gas_change: ; Checks if a better gas should be selected (by user)
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
938 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
939
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
940 movff rel_pressure+0,xA+0
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
941 movff rel_pressure+1,xA+1
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
942 movlw d'100'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
943 movwf xB+0
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
944 clrf xB+1
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
945 call div16x16 ; compute depth in full m -> result in xC+0
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
946
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
947 check_gas_change1: ; check gas1
287
5f2fe81fde9f Don't force gas with depth>0 to be active.
JeanDo
parents: 286
diff changeset
948 btfss sorted_gaslist_active,0 ; check active flag
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
949 bra check_gas_change2 ; skip inactive gases!
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
950 movlw d'1'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
951 cpfseq active_gas ; is this gas currently selected?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
952 bra check_gas_change1x ; No...
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
953 bra check_gas_change2 ; Yes, skip depth check
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
954 check_gas_change1x:
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
955 read_int_eeprom d'28' ; read gas_change_depth
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
956 movlw d'3'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
957 cpfsgt EEDATA ; Change depth>3m?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
958 bra check_gas_change2 ; No, Change depth not deep enough, skip!
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
959 movf xC+0,W ; load depth in m into WREG
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
960 cpfsgt EEDATA ; gas_change_depth < current depth?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
961 bra check_gas_change2 ; No, check next gas
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
962 movlw d'3'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
963 subwf EEDATA,W ; Change depth-3m
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
964 cpfslt xC+0 ; current depth<Change depth-3m?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
965 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
966
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
967 check_gas_change2: ; check gas2
287
5f2fe81fde9f Don't force gas with depth>0 to be active.
JeanDo
parents: 286
diff changeset
968 btfss sorted_gaslist_active,1 ; check active flag
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
969 bra check_gas_change3 ; skip inactive gases!
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
970 movlw d'2'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
971 cpfseq active_gas ; is this gas currently selected?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
972 bra check_gas_change2x ; No...
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
973 bra check_gas_change3 ; Yes, skip depth check
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
974 check_gas_change2x:
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
975 read_int_eeprom d'29' ; read gas_change_depth
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
976 movlw d'3'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
977 cpfsgt EEDATA ; Change depth>3m?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
978 bra check_gas_change3 ; No, Change depth not deep enough, skip!
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
979 movf xC+0,W ; load depth in m into WREG
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
980 cpfsgt EEDATA ; gas_change_depth < current depth?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
981 bra check_gas_change3 ; No, check next gas
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
982 movlw d'3'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
983 subwf EEDATA,W ; Change depth-3m
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
984 cpfslt xC+0 ; current depth<Change depth-3m?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
985 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
986
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
987 check_gas_change3: ; check gas3
287
5f2fe81fde9f Don't force gas with depth>0 to be active.
JeanDo
parents: 286
diff changeset
988 btfss sorted_gaslist_active,2 ; check active flag
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
989 bra check_gas_change4 ; skip inactive gases!
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
990 movlw d'3'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
991 cpfseq active_gas ; is this gas currently selected?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
992 bra check_gas_change3x ; No...
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
993 bra check_gas_change4 ; Yes, skip depth check
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
994 check_gas_change3x:
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
995 read_int_eeprom d'30' ; read gas_change_depth
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
996 movlw d'3'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
997 cpfsgt EEDATA ; Change depth>3m?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
998 bra check_gas_change4 ; No, Change depth not deep enough, skip!
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
999 movf xC+0,W ; load depth in m into WREG
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1000 cpfsgt EEDATA ; gas_change_depth < current depth?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1001 bra check_gas_change4 ; No, check next gas
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1002 movlw d'3'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1003 subwf EEDATA,W ; Change depth-3m
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1004 cpfslt xC+0 ; current depth<Change depth-3m?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1005 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1006
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1007 check_gas_change4: ; check gas4
287
5f2fe81fde9f Don't force gas with depth>0 to be active.
JeanDo
parents: 286
diff changeset
1008 btfss sorted_gaslist_active,3 ; check active flag
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1009 bra check_gas_change5 ; skip inactive gases!
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1010 movlw d'4'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1011 cpfseq active_gas ; is this gas currently selected?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1012 bra check_gas_change4x ; No...
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1013 bra check_gas_change5 ; Yes, skip depth check
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1014 check_gas_change4x:
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1015 read_int_eeprom d'31' ; read gas_change_depth
179
77ab44108c07 BUGFIX: Inactive gases greyed-out in Simulator results
Heinrichsweikamp
parents: 171
diff changeset
1016 movlw d'3'
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1017 cpfsgt EEDATA ; Change depth>3m?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1018 bra check_gas_change5 ; No, Change depth not deep enough, skip!
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1019 movf xC+0,W ; load depth in m into WREG
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1020 cpfsgt EEDATA ; gas_change_depth < current depth?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1021 bra check_gas_change5 ; No, check next gas
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1022 movlw d'3'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1023 subwf EEDATA,W ; Change depth-3m
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1024 cpfslt xC+0 ; current depth<Change depth-3m?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1025 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1026
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1027 check_gas_change5: ; check gas5
287
5f2fe81fde9f Don't force gas with depth>0 to be active.
JeanDo
parents: 286
diff changeset
1028 btfss sorted_gaslist_active,4 ; check active flag
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1029 bra check_gas_change6 ; skip inactive gases!
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1030 movlw d'5'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1031 cpfseq active_gas ; is this gas currently selected?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1032 bra check_gas_change5x ; No...
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1033 bra check_gas_change6 ; Yes, skip depth check
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1034 check_gas_change5x:
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1035 read_int_eeprom d'32' ; read gas_change_depth
179
77ab44108c07 BUGFIX: Inactive gases greyed-out in Simulator results
Heinrichsweikamp
parents: 171
diff changeset
1036 movlw d'3'
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1037 cpfsgt EEDATA ; Change depth>3m?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1038 bra check_gas_change6 ; No, Change depth not deep enough, skip!
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1039 movf xC+0,W ; load depth in m into WREG
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1040 cpfsgt EEDATA ; gas_change_depth < current depth?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1041 bra check_gas_change6 ; No, check next gas
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1042 movlw d'3'
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1043 subwf EEDATA,W ; Change depth-3m
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1044 cpfslt xC+0 ; current depth<Change depth-3m?
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1045 bsf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1046
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1047 check_gas_change6: ;Done
210
f60acc323701 mini-cleanup
heinrichsweikamp
parents: 203
diff changeset
1048 call PLED_active_gas_divemode; Display gas, if required (and with "*" if irequired...)
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1049 return
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1050
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1051 calculate_noflytime:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1052 ; calculate nofly time
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1053 movff int_O_desaturation_time+0,xA+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1054 movff int_O_desaturation_time+1,xA+1
251
f0cba9cff25c Still hunting for bb13...
JeanDo
parents: 250
diff changeset
1055
f0cba9cff25c Still hunting for bb13...
JeanDo
parents: 250
diff changeset
1056 btfsc xA+1,7 ; Is desat time negatif ?
f0cba9cff25c Still hunting for bb13...
JeanDo
parents: 250
diff changeset
1057 bra calculate_noflytime_3 ; Then surely not valid !
f0cba9cff25c Still hunting for bb13...
JeanDo
parents: 250
diff changeset
1058
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1059 tstfsz xA+0 ; Desat=0?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1060 bra calculate_noflytime2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1061 tstfsz xA+1 ; Desat=0?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1062 bra calculate_noflytime2
229
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1063
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1064 calculate_noflytime_3:
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1065 ; Desaturation time = zero
229
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1066 clrf nofly_time+0 ; Clear nofly time
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1067 clrf nofly_time+1 ; Clear nofly time
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1068 bcf nofly_active ; Clear flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1069 return
218
f4b79292e31f BUGFIX NoFly time
JeanDo
parents: 210
diff changeset
1070
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1071 calculate_noflytime2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1072 movff xA+0,int_I_temp+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1073 movff xA+1,int_I_temp+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1074 GETCUSTOM8 .13 ; nofly_time_ratio
218
f4b79292e31f BUGFIX NoFly time
JeanDo
parents: 210
diff changeset
1075 movff WREG,char_I_temp
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1076 ostc_debug 'K' ; Sends debug-information to screen if debugmode active
116
14a074e1a375 Split C code, and use direct linking.
JeanDo
parents: 115
diff changeset
1077 call deco_calc_percentage
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1078 movlb b'00000001' ; select ram bank 1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1079 ostc_debug 'L' ; Sends debug-information to screen if debugmode active
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1080 movff int_I_temp+0,xA+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1081 movff int_I_temp+1,xA+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1082 tstfsz xA+0 ; Desat=0?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1083 bra calculate_noflytime_2_final
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1084 tstfsz xA+1 ; Desat=0?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1085 bra calculate_noflytime_2_final
229
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1086 bra calculate_noflytime_3
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1087
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1088 calculate_noflytime_2_final:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1089 movff xA+0,nofly_time+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1090 movff xA+1,nofly_time+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1091 bsf nofly_active ; Set flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1092 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1093
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1094 end_dive:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1095 btfss realdive ; dive longer then one minute
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1096 goto end_dive_common ; No, discard everything
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1097
233
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
1098 ; In DEBUG compile, keep all simulated dives in logbook, Desat time, nofly, etc...
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
1099 ifndef __DEBUG
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
1100 btfsc simulatormode_active ; Are we in simulator mode?
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
1101 goto end_dive_common ; Yes, discard everything
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
1102 endif
33
6e5db85382a2 Speedy simulator! New Deco code test 1
heinrichsweikamp
parents: 25
diff changeset
1103
83
3e351e25f5d1 adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents: 75
diff changeset
1104 ; Dive finished (and longer then one minute or Apnoe timeout occured)
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1105
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1106 btfsc FLAG_apnoe_mode ; Calc max. depth (again) for very short apnoe dives
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1107 rcall apnoe_calc_maxdepth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1108
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1109 ; calculate desaturation time
251
f0cba9cff25c Still hunting for bb13...
JeanDo
parents: 250
diff changeset
1110 movff last_surfpressure_30min+0,int_I_pres_surface+0 ; Pass surface to desat routine !
f0cba9cff25c Still hunting for bb13...
JeanDo
parents: 250
diff changeset
1111 movff last_surfpressure_30min+1,int_I_pres_surface+1
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1112
251
f0cba9cff25c Still hunting for bb13...
JeanDo
parents: 250
diff changeset
1113 GETCUSTOM8 d'12' ; Desaturation multiplier %
229
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1114 movff WREG,char_I_desaturation_multiplier
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1115
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1116 ostc_debug 'G' ; Sends debug-information to screen if debugmode active
251
f0cba9cff25c Still hunting for bb13...
JeanDo
parents: 250
diff changeset
1117 call deco_calc_desaturation_time ; calculate desaturation time
229
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1118 movlb b'00000001' ; select ram bank 1
257
f8f869bafd92 Use timer TMR3 to limit loops in calc_hauptroutine_calc_deco()
JeanDo
parents: 256
diff changeset
1119 call calc_deko_surfmode ; work-around for nofly bug
229
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1120 rcall calculate_noflytime ; Calc NoFly time
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1121 ostc_debug 'H' ; Sends debug-information to screen if debugmode active
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1122 ; store header and ...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1123 movlw 0xFD ; .... End-of-Profile Bytes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1124 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1125 movlw 0xFD
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1126 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1127 movlw 0xFE ; This positon will be overwritten for the next profile
229
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1128 call write_external_eeprom ; and is required to find the newest dive after a firmware reset
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1129
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1130 movff eeprom_header_address+0, eeprom_address+0 ; set header adress
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1131 movff eeprom_header_address+1, eeprom_address+1 ; write header
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1132
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1133 movlw 0xFA ; Header start
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1134 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1135 movlw 0xFA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1136 call write_external_eeprom
229
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1137 movlw logbook_profile_version ; Defined in definitions_vxyy.asm
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1138 call write_external_eeprom
229
85ea09d3b9d8 Nofly should not be reset after dive simulation (bug BB18).
JeanDo
parents: 228
diff changeset
1139 movf month,W ; Date
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1140 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1141 movf day,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1142 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1143 movf year,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1144 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1145 movf hours,W ; End of dive time
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1146 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1147 movf mins,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1148 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1149
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1150 btfss FLAG_apnoe_mode ; Store apnoe max or normal max (Which is only max from the last descent)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1151 bra end_dive1 ; Store normal depth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1152
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1153 movff apnoe_max_pressure+0,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1154 movff apnoe_max_pressure+1,hi
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1155 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar]
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1156 movff lo,apnoe_max_pressure+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1157 movff hi,apnoe_max_pressure+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1158
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1159 movf apnoe_max_pressure+0,W ; Max. depth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1160 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1161 movf apnoe_max_pressure+1,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1162 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1163 bra end_dive2 ; skip
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1164
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1165 end_dive1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1166 movff max_pressure+0,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1167 movff max_pressure+1,hi
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1168 call adjust_depth_with_salinity ; computes salinity setting into lo:hi [mBar]
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1169 movff lo,max_pressure+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1170 movff hi,max_pressure+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1171
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1172 movf max_pressure+0,W ; Max. depth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1173 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1174 movf max_pressure+1,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1175 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1176
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1177 end_dive2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1178 movf divemins+0,W ; divetime minutes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1179 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1180 movf divemins+1,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1181 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1182 movf divesecs,W ; divetime seconds
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1183 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1184 movf mintemp+0,W ; minimum temperature
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1185 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1186 movf mintemp+1,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1187 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1188 movf last_surfpressure_30min+0,W ; airpressure before dive
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1189 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1190 movf last_surfpressure_30min+1,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1191 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1192 movff int_O_desaturation_time+0,lo ;
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1193 movff int_O_desaturation_time+1,hi
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1194 movf lo,W ; desaturation time in minutes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1195 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1196 movf hi,W ;
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1197 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1198
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1199 ; Gases....
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1200 read_int_eeprom d'6' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1201 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1202 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1203 read_int_eeprom d'7' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1204 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1205 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1206
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1207 read_int_eeprom d'10' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1208 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1209 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1210 read_int_eeprom d'11' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1211 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1212 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1213
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1214 read_int_eeprom d'14' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1215 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1216 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1217 read_int_eeprom d'15' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1218 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1219 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1220
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1221 read_int_eeprom d'18' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1222 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1223 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1224 read_int_eeprom d'19' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1225 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1226 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1227
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1228 read_int_eeprom d'22' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1229 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1230 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1231 read_int_eeprom d'23' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1232 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1233 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1234
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1235 read_int_eeprom d'24' ; % O2 Gas6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1236 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1237 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1238 read_int_eeprom d'25' ; % He Gas6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1239 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1240 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1241 read_int_eeprom d'33' ; start gas
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1242 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1243 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1244
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1245 movlw softwareversion_x ; Firmware version
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1246 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1247 movlw softwareversion_y
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1248 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1249 movf batt_voltage+0,W ; Battery voltage
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1250 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1251 movf batt_voltage+1,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1252 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1253
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1254 GETCUSTOM8 d'20' ; sampling rate in WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1255 btfsc FLAG_apnoe_mode ; Apnoe mode?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1256 movlw d'1' ; Apnoe sampling rate
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1257 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1258
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1259 movlw d'2' ; information size temperature
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1260 movwf temp1 ; copy to bits 0-3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1261 swapf temp1,F ; swap nibbels 0-3 with 4-7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1262 GETCUSTOM8 d'21' ; Divisor temperature
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1263 addwf temp1,W ; copy to bits 0-3, result in WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1264 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1265
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1266 movlw d'2' ; information size deco
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1267 movwf temp1 ; copy to bits 0-3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1268 swapf temp1,F ; swap nibbels 0-3 with 4-7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1269 GETCUSTOM8 d'22' ; Divisor deco
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1270 addwf temp1,W ; copy to bits 0-3, result in WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1271 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1272
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1273 movlw d'2' ; information size tank
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1274 movwf temp1 ; copy to bits 0-3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1275 swapf temp1,F ; swap nibbels 0-3 with 4-7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1276 GETCUSTOM8 d'23' ; Divisor Tank
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1277 addwf temp1,W ; copy to bits 0-3, result in WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1278 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1279
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1280 movlw d'3' ; information size pp02
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1281 movwf temp1 ; copy to bits 0-3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1282 swapf temp1,F ; swap nibbels 0-3 with 4-7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1283 GETCUSTOM8 d'24' ; Divisor pp02
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1284 addwf temp1,W ; copy to bits 0-3, result in WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1285 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1286
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1287 movlw d'9' ; information size Decodebug
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1288 movwf temp1 ; copy to bits 0-3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1289 swapf temp1,F ; swap nibbels 0-3 with 4-7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1290 GETCUSTOM8 d'25' ; Divisor Decodebug
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1291 addwf temp1,W ; copy to bits 0-3, result in WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1292 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1293
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1294 movlw d'0' ; information size nuy2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1295 movwf temp1 ; copy to bits 0-3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1296 swapf temp1,F ; swap nibbels 0-3 with 4-7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1297 GETCUSTOM8 d'26' ; Divisor nuy2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1298 addwf temp1,W ; copy to bits 0-3, result in WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1299 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1300
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1301 read_int_eeprom d'26' ; Read Salinity from EEPROM
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1302 movf EEDATA,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1303 call write_external_eeprom ; Store Salinity to Dive
253
3a4096f32526 show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents: 251
diff changeset
1304
3a4096f32526 show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents: 251
diff changeset
1305 movff char_O_CNS_fraction,WREG ; copy into bank1
3a4096f32526 show CNS in logbook for all dives made with V1.84beta and later
heinrichsweikamp
parents: 251
diff changeset
1306 call write_external_eeprom ; Stores CNS%
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1307
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1308 movlw 0xFB ; Header stop
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1309 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1310 movlw 0xFB
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1311 call write_external_eeprom
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1312
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1313 ; Increase total dive counter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1314 read_int_eeprom d'2' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1315 movff EEDATA,temp1 ; Low byte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1316 read_int_eeprom d'3' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1317 movff EEDATA,temp2 ; high byte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1318 bcf STATUS,C
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1319 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1320 addwf temp1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1321 movlw d'0'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1322 addwfc temp2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1323 movff temp1,EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1324 write_int_eeprom d'2' ; write byte stored in EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1325 movff temp2,EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1326 write_int_eeprom d'3' ; write byte stored in EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1327
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1328 GETCUSTOM15 .28 ; Logbook Offset -> lo, hi
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1329 tstfsz lo ; lo=0?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1330 bra change_logbook_offset1 ; No, adjust offset
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1331 tstfsz hi ; hi=0?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1332 bra change_logbook_offset1 ; No, adjust offset
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1333 bra change_logbook_offset2 ; lo=0 and hi=0 -> skip Offset routine
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1334 change_logbook_offset1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1335 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1336 addwf lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1337 movlw d'0'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1338 addwfc hi
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1339 movlw d'112' ; CF28 *4 Bytes...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1340 addlw 0x82
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1341 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1342 movff lo,EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1343 call write_eeprom ; Lowbyte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1344 movlw d'112' ; CF28 *4 Bytes...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1345 addlw 0x83
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1346 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1347 movff hi,EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1348 call write_eeprom ; Highbyte
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1349
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1350 change_logbook_offset2:
25
99512945c7a1 1.61 beta rc2
heinrichsweikamp
parents: 21
diff changeset
1351 bcf LED_blue
129
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1352 clrf surface_interval+0
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1353 clrf surface_interval+1 ; Clear surface interval timer
33
6e5db85382a2 Speedy simulator! New Deco code test 1
heinrichsweikamp
parents: 25
diff changeset
1354
6e5db85382a2 Speedy simulator! New Deco code test 1
heinrichsweikamp
parents: 25
diff changeset
1355 end_dive_common:
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1356 bcf simulatormode_active ; if we were in simulator mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1357
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1358 btfsc restore_deco_data ; Restore decodata?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1359 call simulator_restore_tissue_data ; Yes!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1360
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1361 goto surfloop ; and return to surfaceloop
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1362
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1363 timeout_divemode:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1364 btfss realdive ; Dive longer then one minute
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1365 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1366
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1367 btfsc FLAG_apnoe_mode ; In Apnoe mode?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1368 bra timeout_divemode2 ; Yes, use CF30 [min] for timeout
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1369
233
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
1370 ifndef __DEBUG
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
1371 btfsc simulatormode_active ; In Simulator mode?
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
1372 bra timeout_divemode3 ; Yes, use fixed 5 seconds timeout
2cbaa01dac26 Hunting for NoFly (bug BB13)... not found yet...
JeanDo
parents: 229
diff changeset
1373 endif
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1374
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1375 bcf divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1376 incf timeout_counter,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1377 GETCUSTOM8 d'2' ; diveloop_timeout
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1378 addlw d'2' ; adds two seconds in case timout=zero!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1379 btfsc STATUS,C ; > 255?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1380 movlw d'255' ; Set to 255...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1381 decf WREG,F ; Limit to 254
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1382 cpfsgt timeout_counter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1383 bsf divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1384 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1385
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1386 timeout_divemode2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1387 incf timeout_counter,F ; seconds...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1388 movlw d'60'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1389 cpfseq timeout_counter ; timeout_counter=60?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1390 return ; No.
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1391
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1392 clrf timeout_counter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1393 bcf divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1394 incf apnoe_timeout_counter,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1395 GETCUSTOM8 d'30' ; apnoe timeout [min]
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1396 cpfseq apnoe_timeout_counter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1397 bsf divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1398 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1399
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1400 timeout_divemode3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1401 bcf divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1402 incf timeout_counter,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1403 movlw d'5' ; Fixed timeout of 5 seconds
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1404 cpfsgt timeout_counter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1405 bsf divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1406 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1407
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1408 update_divemode1: ; update any second
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1409 call set_dive_modes ; tests if depth>threshold
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1410
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1411 btfsc divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1412 call set_max_depth ; update max. depth if required
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1413
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1414 btfsc divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1415 call set_min_temp ; store min. temp if required
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1416
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1417 bcf temp_changed ; Display temperature?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1418 movf temperature+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1419 cpfseq last_temperature+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1420 bsf temp_changed ; Yes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1421 movf temperature+1,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1422 cpfseq last_temperature+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1423 bsf temp_changed ; Yes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1424 btfsc temp_changed
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1425 call PLED_temp_divemode ; Displays temperature
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1426
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1427 bcf pres_changed ; Display new depth?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1428 movf amb_pressure+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1429 cpfseq last_pressure+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1430 bsf pres_changed ; Yes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1431 movf amb_pressure+1,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1432 cpfseq last_pressure+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1433 bsf pres_changed ; Yes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1434
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1435 btfsc simulatormode_active ; always update depth when in simulator mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1436 bsf pres_changed
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1437
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1438 btfsc pres_changed
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1439 call PLED_depth ; Displays new depth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1440 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1441
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1442 update_divemode60: ; update any minute
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1443 call get_battery_voltage ; gets battery voltage
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1444 call set_powersafe ; red LED blinking if battery is low
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1445 call PLED_max_pressure ; No, use normal max. depth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1446 call check_temp_extrema ; check for new temperature extremas
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 83
diff changeset
1447 call customview_minute ; Do every-minute tasks for the custom view area
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1448 bcf oneminupdate
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1449 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1450
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1451 set_max_depth:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1452 movff max_pressure+0,sub_a+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1453 movff max_pressure+1,sub_a+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1454 movff rel_pressure+0,sub_b+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1455 movff rel_pressure+1,sub_b+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1456 call sub16 ; sub_c = sub_a - sub_b
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1457 ; max_pressure<rel_pressure -> neg_flag=1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1458 ; rel_pressure<=max_pressure -> neg_flag=0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1459 btfss neg_flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1460 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1461 ;max_pressure<rel_pressure
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1462 movff rel_pressure+0,max_pressure+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1463 movff rel_pressure+1,max_pressure+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1464 call PLED_max_pressure ; No, use normal max. depth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1465 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1466
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1467 set_min_temp:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1468 movff mintemp+0,sub_a+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1469 movff mintemp+1,sub_a+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1470 movff temperature+0,sub_b+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1471 movff temperature+1,sub_b+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1472 call sub16 ; sub_c = sub_a - sub_b
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1473 ; mintemp<T -> neg_flag=1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1474 ; T<=mintemp -> neg_flag=0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1475 btfsc neg_flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1476 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1477 ;mintemp>=T
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1478 movff temperature+0,mintemp+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1479 movff temperature+1,mintemp+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1480 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1481
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1482 set_dive_modes:
239
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1483 btfsc high_altitude_mode ; In high altitude (Fly) mode?
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1484 bra set_dive_modes3 ; Yes
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1485
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1486 bcf divemode2 ; Stop time
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1487
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1488 GETCUSTOM8 .0 ; loads dive_threshold in WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1489 movwf sub_a+0 ; dive_treshold is in cm
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1490 clrf sub_a+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1491 movff rel_pressure+0,sub_b+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1492 movff rel_pressure+1,sub_b+1
239
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1493 call sub16 ; sub_c = sub_a - sub_b
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1494
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1495 btfss neg_flag
239
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1496 bra set_dive_modes2 ; too shallow (rel_pressure<dive_threshold)
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1497
239
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1498 btfsc realdive ; Dive longer than one minute?
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1499 clrf timeout_counter ; Yes, reset timout counter
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1500
239
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1501 bsf divemode ; (Re-)Set divemode flag
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1502 bsf divemode2 ; displayed divetime is running
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1503 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1504
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1505 set_dive_modes2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1506 btfss realdive ; dive longer then one minute?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1507 bcf divemode ; no -> this was no real dive
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1508 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1509
239
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1510 set_dive_modes3:
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1511 movlw HIGH d'1075' ; hard-wired 1075mBar threshold
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1512 movwf sub_a+1
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1513 movlw LOW d'1075' ; hard-wired 1075mBar threshold
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1514 movwf sub_a+0
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1515 movff rel_pressure+0,sub_b+0
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1516 movff rel_pressure+1,sub_b+1
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1517 call sub16 ; sub_c = sub_a - sub_b
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1518
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1519 btfss neg_flag
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1520 bra set_dive_modes2 ; too shallow (rel_pressure<dive_threshold)
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1521
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1522 bsf divemode ; (Re-)Set divemode flag
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1523 bsf divemode2 ; displayed divetime is running
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1524 return
3ed240d60341 High altitude (Plane/Fly) mode added
heinrichsweikamp
parents: 237
diff changeset
1525
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1526 set_powersafe:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1527 btfsc low_battery_state ; battery warning alread active?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1528 bra set_powersafe2 ; Yes, but is it still required?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1529 ; battery voltage in mV (value*256+Lowbyte=actual treshold)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1530 movlw d'12' ; 3,328V
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1531 cpfsgt batt_voltage+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1532 bra set_powersafe1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1533 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1534
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1535 set_powersafe1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1536 movlw d'7' ; Type of Alarm (Battery Low)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1537 movwf AlarmType ; Copy to Alarm Register
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1538 bsf event_occured ; Set Event Flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1539 bsf low_battery_state ; set flag for battery warning
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1540 return ; return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1541
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1542 set_powersafe2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1543 movlw d'13' ; 3,584V
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1544 cpfsgt batt_voltage+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1545 bra set_powersafe1 ; Still to low
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1546 bcf low_battery_state ; clear flag for battery warning mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1547 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1548
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1549 calc_average_depth:
111
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1550 btfsc reset_average_depth ; Reset the Avewrage depth?
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1551 rcall reset_average1 ; Reset the resettable average depth
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1552
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1553 ; 1. Add new 2xdepth to the Sum of depths registers
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1554 movff rel_pressure+0,b0_lo
129
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1555 movff rel_pressure+1,b0_hi ; Buffer...
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1556
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1557 movf b0_lo,w
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1558 addwf average_depth_hold+0,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1559 movf b0_hi,w
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1560 addwfc average_depth_hold+1,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1561 movlw d'0'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1562 addwfc average_depth_hold+2,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1563 addwfc average_depth_hold+3,F ; Will work up to 9999mBar*60*60*24=863913600mBar
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1564
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1565 movf b0_lo,w
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1566 addwf average_depth_hold+0,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1567 movf b0_hi,w
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1568 addwfc average_depth_hold+1,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1569 movlw d'0'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1570 addwfc average_depth_hold+2,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1571 addwfc average_depth_hold+3,F ; Will work up to 9999mBar*60*60*24=863913600mBar
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1572
129
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1573 ; Do the same for the _total registers (Non-Resettable)
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1574 movf b0_lo,w
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1575 addwf average_depth_hold_total+0,F
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1576 movf b0_hi,w
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1577 addwfc average_depth_hold_total+1,F
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1578 movlw d'0'
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1579 addwfc average_depth_hold_total+2,F
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1580 addwfc average_depth_hold_total+3,F ; Will work up to 9999mBar*60*60*24=863913600mBar
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1581
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1582 movf b0_lo,w
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1583 addwf average_depth_hold_total+0,F
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1584 movf b0_hi,w
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1585 addwfc average_depth_hold_total+1,F
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1586 movlw d'0'
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1587 addwfc average_depth_hold_total+2,F
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1588 addwfc average_depth_hold_total+3,F ; Will work up to 9999mBar*60*60*24=863913600mBar
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1589
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1590 ; 2. Compute Average Depth on base of average_divesecs:2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1591 movff average_divesecs+0,xB+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1592 movff average_divesecs+1,xB+1 ; Copy
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1593 movff average_depth_hold+0,xC+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1594 movff average_depth_hold+1,xC+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1595 movff average_depth_hold+2,xC+2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1596 movff average_depth_hold+3,xC+3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1597
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1598 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1599 movff xC+0,avr_rel_pressure+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1600 movff xC+1,avr_rel_pressure+1
129
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1601
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1602 ; Compute Total Average Depth on base of divemins:2 and divesecs
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1603 movff divemins+0,xA+0
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1604 movff divemins+1,xA+1
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1605 movlw d'60'
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1606 movwf xB+0
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1607 clrf xB+1
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1608 call mult16x16 ; xC:4=xA:2*xB:2
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1609 movf divesecs,W
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1610 addwf xC+0,F
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1611 movlw d'0'
228
6d4e29d80ff3 1.83beta release, 1.84beta start
heinrichsweikamp
parents: 224
diff changeset
1612 addwfc xC+1,F ; xC:2 holds total dive seconds
129
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1613 movlw d'3' ; 2+1
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1614 btfss divesecs,0 ; divesecs even?
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1615 movlw d'2' ; Yes, do not add +1
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1616 addwf xC+0,F
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1617 movlw d'0'
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1618 addwfc xC+1,F
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1619 ; Ignore xC+2 and xC+3. Total Average will only work up to divetime=1092:16
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1620 movff xC+0,xB+0
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1621 movff xC+1,xB+1 ; Copy
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1622 movff average_depth_hold_total+0,xC+0
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1623 movff average_depth_hold_total+1,xC+1
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1624 movff average_depth_hold_total+2,xC+2
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1625 movff average_depth_hold_total+3,xC+3
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1626
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1627 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1628 movff xC+0,avr_rel_pressure_total+0
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1629 movff xC+1,avr_rel_pressure_total+1
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1630
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1631 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1632
111
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1633 reset_average1:
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1634 clrf average_depth_hold+0
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1635 clrf average_depth_hold+1
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1636 clrf average_depth_hold+2
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1637 clrf average_depth_hold+3 ; Clear average depth register
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1638 movlw d'2'
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1639 movwf average_divesecs+0
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1640 clrf average_divesecs+1
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1641 bcf reset_average_depth ; Clear flag
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1642 return
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1643
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1644 diveloop_boot:
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
1645 ostc_debug 'Q' ; Sends debug-information to screen if debugmode active
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1646 clrf max_pressure+0 ; clear some variables
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1647 clrf max_pressure+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1648
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1649 clrf avr_rel_pressure+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1650 clrf avr_rel_pressure+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1651
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1652 call PLED_brightness_low
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1653 read_int_eeprom d'90' ; Brightness offset? (Dim>0, Normal = 0)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1654 movlw d'0'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1655 cpfsgt EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1656 call PLED_brightness_full
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1657
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1658 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1659 movwf apnoe_max_pressure+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1660 clrf apnoe_max_pressure+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1661 clrf apnoe_surface_mins
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1662 clrf apnoe_surface_secs
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1663 clrf apnoe_mins
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1664 clrf apnoe_secs
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1665 clrf divemins+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1666 clrf divemins+1
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 83
diff changeset
1667 clrf menupos3
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 83
diff changeset
1668 bcf menu3_active
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1669 clrf divesecs
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1670 clrf samplesecs
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1671 clrf apnoe_timeout_counter ; timeout in minutes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1672 clrf timeout_counter ; takes care of the timeout
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1673 clrf timeout_counter2 ; Here: counts to six, then store deco data and temperature
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1674 clrf AlarmType ; Clear all alarms
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1675 bcf event_occured ; clear flag
274
a728b4a1b660 Setpoint changes stored in profile, EAD and END displayed in divemode (Customview 7)
heinrichsweikamp
parents: 263
diff changeset
1676 bcf setpoint_changed ; clear flag
111
ed7826c740a0 1.74beta rc1
heinrichsweikamp
parents: 106
diff changeset
1677 rcall reset_average1 ; Reset the resettable average depth
129
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1678 clrf average_depth_hold_total+0
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1679 clrf average_depth_hold_total+1
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1680 clrf average_depth_hold_total+2
06c4899ddb4b Custom views in dive mode configrable (New CF50-CF53)
Heinrichsweikamp
parents: 124
diff changeset
1681 clrf average_depth_hold_total+3 ; Clear Non-Resettable Average
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1682 bcf depth_greater_100m ; clear flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1683 setf last_diluent ; to be displayed after first calculation (range: 0 to 100 [%])
3
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 2
diff changeset
1684 bcf dekostop_active
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 2
diff changeset
1685 bcf is_bailout ;=1: CC mode, but bailout active!
8
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1686 bcf better_gas_available ;=1: A better gas is available and a gas change is advised in divemode
d8b426d71282 1.52 rc2
heinrichsweikamp
parents: 4
diff changeset
1687
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1688 call get_free_EEPROM_location ; get last position in external EEPROM, may be up to 2 secs!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1689
237
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1690 btfss simulatormode_active
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1691 bra diveloop_boot_1
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1692 ; Normal mode = Surface pressure is the pressure 30mn before dive.
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1693 movff last_surfpressure_30min+0,int_I_pres_surface+0 ; LOW copy surfacepressure to deco routine
237
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1694 movff last_surfpressure_30min+1,int_I_pres_surface+1 ; HIGH copy surfacepressure to deco routine
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1695 bra diveloop_boot_2
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1696
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1697 diveloop_boot_1:
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1698 ; Simulator mode: Surface pressure is 1bar.
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1699 movlw LOW .1000
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1700 movff WREG,int_I_pres_surface+0 ; LOW copy surfacepressure to deco routine
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1701 movlw HIGH .1000
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1702 movff WREG,int_I_pres_surface+1 ; HIGH copy surfacepressure to deco routine
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1703
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1704 diveloop_boot_2:
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1705 movff temperature+0,mintemp+0 ; Reset Min-Temp registers
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1706 movff temperature+1,mintemp+1 ; Reset Min-Temp registers
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1707
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1708 ; Init profile recording parameters
237
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1709 GETCUSTOM8 d'20' ; sample rate
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1710 movwf samplesecs_value ; to avoid EEPROM access in the ISR
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1711 GETCUSTOM8 d'21'
237
55178aa1f972 Hunting for NoFly bug...
JeanDo
parents: 233
diff changeset
1712 movwf divisor_temperature ; load divisors for profile storage
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1713 GETCUSTOM8 d'22'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1714 movwf divisor_deco
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1715 GETCUSTOM8 d'23'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1716 movwf divisor_tank
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1717 GETCUSTOM8 d'24'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1718 movwf divisor_ppo2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1719 GETCUSTOM8 d'25'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1720 movwf divisor_deco_debug
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1721 GETCUSTOM8 d'26'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1722 movwf divisor_nuy2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1723
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1724 btfss FLAG_apnoe_mode ; In Apnoe mode?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1725 bra divemode1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1726 ; Overwrite some parameters in Apnoe mode....
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1727 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1728 movwf samplesecs_value ; to avoid EEPROM access in the ISR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1729
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1730 divemode1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1731 read_int_eeprom d'36' ; Read mix 1 ppO2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1732 btfsc FLAG_const_ppO2_mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1733 movff EEDATA,char_I_const_ppO2 ; Set ppO2 setpoint if in ppO2 mode
4
2b5c52ae3923 1.52 beta rc
heinrichsweikamp
parents: 3
diff changeset
1734 movff EEDATA, ppO2_setpoint_store ; Store also in this byte...
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1735
21
73014f788032 1.60 stable rc1
heinrichsweikamp
parents: 16
diff changeset
1736 bcf LED_blue
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1737 bcf low_battery_state ; clear flag for battery warning mode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1738 bcf header_stored
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1739 bcf premenu
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1740 bcf realdive
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1741 bsf update_divetime ; set flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1742 btfss simulatormode_active ; do not disable in simulator mode!
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
1743 call disable_rs232 ; Disable RS232
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1744
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1745 read_int_eeprom d'33' ; Read byte (stored in EEDATA)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1746 movff EEDATA,active_gas ; Read start gas (1-5)
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1747
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1748 ; Read Start Gas and configure char_I_He_ratio, char_I_O2_ratio and char_I_N2_ratio
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1749 decf active_gas,W ; Gas 0-4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1750 mullw d'4'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1751 movf PRODL,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1752 addlw d'7' ; = address for He ratio
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1753 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1754 call read_eeprom ; Read He ratio
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1755 movff EEDATA,char_I_He_ratio ; And copy into hold register
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1756 decf active_gas,W ; Gas 0-4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1757 mullw d'4'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1758 movf PRODL,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1759 addlw d'6' ; = address for O2 ratio
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1760 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1761 call read_eeprom ; Read O2 ratio
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1762 movff EEDATA, char_I_O2_ratio ; O2 ratio
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1763 movff char_I_He_ratio, wait_temp ; copy into bank1 register
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1764 bsf STATUS,C ; Borrow bit
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1765 movlw d'100' ; 100%
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1766 subfwb wait_temp,W ; minus He
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1767 bsf STATUS,C ; Borrow bit
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1768 subfwb EEDATA,F ; minus O2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1769 movff EEDATA, char_I_N2_ratio ; = N2!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1770
221
448478ceccea new sorted_gaslist_active flag register
heinrichsweikamp
parents: 220
diff changeset
1771 ; Configure sorted_gaslist_active flag register
281
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
1772 read_int_eeprom d'27'
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
1773 movff EEDATA, sorted_gaslist_active
f8f865c70a0d no more sorted gaslist...
heinrichsweikamp
parents: 274
diff changeset
1774 return