annotate code_part1/OSTC_code_asm_part1/menu_gassetup.asm @ 115:50a06adabc67

First gas is active, Gauge mode display
author heinrichsweikamp
date Fri, 24 Dec 2010 15:40:27 +0100
parents 64109f6fb3d1
children e0f29e20bd24
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 ; Gas Setup menu
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/08/07
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
22 ; last updated: 080906
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 menu_gassetup:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
27 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
28 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
29
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
30 menu_gassetup_prelist:
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
31 call PLED_ClearScreen
47
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
32 call gassetup_sort_gaslist ; Sorts Gaslist according to change depth
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
33 clrf timeout_counter2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
34 bcf sleepmode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
35 bcf menubit2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
36 bcf menubit3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
37 call PLED_topline_box
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
38 WIN_INVERT .1 ; Init new Wordprocessor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
39 DISPLAYTEXT .106 ; Gas List
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
40 WIN_INVERT .0 ; Init new Wordprocessor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
41 clrf decodata+0 ; Here: # of gas 0-4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
42 clrf divemins+0 ; Here: # of Gas * 4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
43 movlw d'5'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
44 movwf waitms_temp ; here: stores row for gas list
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
45 movlw d'2'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
46 movwf wait_temp ; here: stores eeprom address for gas list
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
47
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
48 ; Changed v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
49 menu_gassetup_list:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
50 WIN_LEFT .20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
51 movlw d'4'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
52 addwf wait_temp,F ; Increase eeprom address for gas list
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
53 movlw d'30'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
54 addwf waitms_temp,F ; Increase row
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
55 movf waitms_temp,W ; Load row into WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
56 movff WREG,win_top
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
57 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
58 movlw 'G'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
59 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
60 movff decodata+0,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
61 incf lo,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
62 bsf leftbind
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
63 output_99
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
64 movlw ':'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
65 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
66
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
67 call menu_gassetup_grey_inactive ; Sets Greyvalue for inactive gases
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
68 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
69 WIN_LEFT .40
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
70 movf waitms_temp,W ; Load row into WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
71 movff WREG,win_top
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
72 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
73
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
74 movlw d'33'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
75 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
76 call read_eeprom ; Get current startgas 1-5 # into EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
77 decf EEDATA,W ; 0-4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
78 cpfseq decodata+0 ; =current displayed gas #?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
79 bra menu_gassetup_Tx ; no, do not display *
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
80 movlw '*' ; display *
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
81 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
82
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
83 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
84 menu_gassetup_Tx:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
85 call menu_gassetup_grey_inactive ; Sets Greyvalue for inactive gases
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
86 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
87
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
88 WIN_LEFT .48
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
89 movf waitms_temp,W ; Load row into WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
90 movff WREG,win_top
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
91 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
92
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
93 movff wait_temp, EEADR ; Gas %He - Set address in internal EEPROM
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
94 incf EEADR,F ; Gas %He - Set address in internal EEPROM
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
95 call read_eeprom ; Read He value from EEPROM
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
96 movff EEDATA,lo ; Move EEDATA -> lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
97 movf lo,f ; Move lo -> f
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
98 movlw d'0' ; Move 0 -> WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
99 cpfsgt lo ; He > 0?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
100 bra menu_gassetup_Nx ; NO check o2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
101
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
102 ; YES Write TX 15/55
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
103 call gassetup_write_Tx
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
104 movff wait_temp, EEADR ; Gas %O2 - Set address in internal EEPROM
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
105 call read_eeprom ; O2 value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
106 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
107 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
108 movlw '/'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
109 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
110 incf EEADR,F ; Gas #hi: %He - Set address in internal EEPROM
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
111 call read_eeprom ; He value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
112 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
113 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
114 bra menu_gassetup_list0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
115
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
116 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
117 menu_gassetup_Nx:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
118 movff wait_temp, EEADR ; Gas %O2 - Set address in internal EEPROM
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
119 call read_eeprom ; Read O2 value from EEPROM
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
120 movff EEDATA,lo ; Move EEDATA -> lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
121 movf lo,f ; Move lo -> f
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
122 movlw d'21' ; Move 21 -> WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
123 cpfsgt lo ; o2 > 21%
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
124 bra menu_gassetup_Air ; NO AIR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
125 movlw d'100' ; Move 100 -> WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
126 cpfslt lo ; o2 < 100%
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
127 bra menu_gassetup_O2 ; NO write O2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
128
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
129 ; YES Write NX 32
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
130 call gassetup_write_Nx
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
131 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
132 bra menu_gassetup_list0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
133
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
134 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
135 menu_gassetup_O2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
136 movlw 'O'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
137 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
138 movlw '2'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
139 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
140 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
141 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
142 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
143 bra menu_gassetup_list0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
144
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
145 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
146 menu_gassetup_Air:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
147 cpfseq lo ; o2 = 21%
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
148 call menu_gassetup_Err
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
149
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
150 movlw 'A'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
151 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
152 movlw 'I'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
153 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
154 movlw 'R'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
155 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
156 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
157 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
158 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
159 bra menu_gassetup_list0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
160
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
161 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
162 menu_gassetup_Err:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
163 movlw 'E'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
164 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
165 movlw 'R'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
166 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
167 movlw 'R'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
168 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
169 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
170 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
171 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
172
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
173 ; Changed v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
174 menu_gassetup_list0:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
175 call menu_gassetup_grey_inactive ; Sets Greyvalue for inactive gases
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
176 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
177
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
178 WIN_LEFT .105
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
179 movf waitms_temp,W ; Load row into WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
180 movff WREG,win_top
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
181 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
182
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
183 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
184 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
185 movlw 'i'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
186 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
187 movlw 'n'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
188 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
189 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
190 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
191 movf decodata+0,W ; read current value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
192 addlw d'28' ; offset in memory
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
193 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
194 call read_eeprom ; Low-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
195 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
196 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
197 movlw 'm'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
198 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
199 call menu_gassetup_grey_inactive ; Sets Greyvalue for inactive gases
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
200 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
201
3
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 0
diff changeset
202 call PLED_standard_color
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
203
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
204 incf decodata+0,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
205 movlw d'5'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
206 cpfseq decodata+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
207 goto menu_gassetup_list
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
208
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
209 DISPLAYTEXT .11 ; Exit
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
210 call wait_switches ; Waits until switches are released, resets flag if button stays pressed!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
211 call PLED_menu_cursor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
212
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
213 gassetup_list_loop:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
214 call check_switches_logbook
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
215
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
216 btfsc menubit3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
217 bra gassetup_list2 ; move cursor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
218
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
219 btfsc menubit2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
220 bra do_gassetup_list; call gas-specific submenu
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
221
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
222 btfsc divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
223 goto restart ; dive started!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
224
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
225 btfsc onesecupdate
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
226 call timeout_surfmode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
227
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
228 btfsc onesecupdate
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
229 call set_dive_modes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
230
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
231 bcf onesecupdate ; 1 sec. functions done
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
232
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
233 btfsc sleepmode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
234 bra exit_gassetup_list
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
235
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
236 bra gassetup_list_loop
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
237
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
238 gassetup_list2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
239 incf menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
240 movlw d'7'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
241 cpfseq menupos ; =7?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
242 bra gassetup_list3 ; No
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
243 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
244 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
245
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
246 gassetup_list3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
247 clrf timeout_counter2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
248 call PLED_menu_cursor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
249
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
250 call wait_switches ; Waits until switches are released, resets flag if button stays pressed!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
251
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
252 bcf menubit3 ; clear flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
253 bra gassetup_list_loop
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
254
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
255 exit_gassetup_list: ; exit...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
256 movlw d'2'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
257 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
258 goto menu2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
259
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
260 do_gassetup_list:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
261 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
262 bra gassetup_list_edit_gas1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
263 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
264 bra gassetup_list_edit_gas2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
265 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
266 bra gassetup_list_edit_gas3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
267 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
268 bra gassetup_list_edit_gas4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
269 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
270 bra gassetup_list_edit_gas5
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
271 bra exit_gassetup_list ; Exit List
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
272
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
273 gassetup_list_edit_gas1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
274 movlw d'0'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
275 movwf decodata+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
276 movlw d'0'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
277 movwf divemins+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
278 bra menu_gassetup_page1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
279
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
280 gassetup_list_edit_gas2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
281 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
282 movwf decodata+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
283 movlw d'4'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
284 movwf divemins+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
285 bra menu_gassetup_page1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
286
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
287 gassetup_list_edit_gas3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
288 movlw d'2'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
289 movwf decodata+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
290 movlw d'8'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
291 movwf divemins+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
292 bra menu_gassetup_page1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
293
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
294 gassetup_list_edit_gas4:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
295 movlw d'3'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
296 movwf decodata+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
297 movlw d'12'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
298 movwf divemins+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
299 bra menu_gassetup_page1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
300
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
301 gassetup_list_edit_gas5:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
302 movlw d'4'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
303 movwf decodata+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
304 movlw d'16'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
305 movwf divemins+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
306 bra menu_gassetup_page1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
307
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
308 menu_gassetup_page1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
309 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
310 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
311 bcf gas_setup_page2 ; Page 1 of gassetup
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
312 bcf menubit4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
313 bcf cursor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
314 bcf sleepmode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
315 bcf first_FA ; Here: =1: -, =0: +
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
316
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
317 menu_gassetup0:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
318 call PLED_ClearScreen
98
6f8e3a08011e 1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents: 50
diff changeset
319 DISPLAYTEXT .147 ; More...
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
320 DISPLAYTEXT .11 ; Exit
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
321
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
322 menu_gassetup1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
323 clrf timeout_counter2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
324 bcf menubit2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
325 bcf menubit3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
326
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
327 rcall gassetup_title_bar2 ; Displays the title bar with the current Gas info
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
328
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
329 WIN_TOP .65
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
330 WIN_LEFT .20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
331 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
332 movlw 'O'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
333 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
334 movlw '2'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
335 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
336 movlw ':'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
337 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
338 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
339 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
340
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
341 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
342 addlw 0x06
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
343 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
344 call read_eeprom ; O2 value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
345 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
346 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
347 movlw '%'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
348 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
349 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
350 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
351 movlw '('
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
352 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
353 movlw 'M'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
354 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
355 movlw 'O'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
356 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
357 movlw 'D'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
358 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
359 movlw ':'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
360 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
361
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
362 ; Show MOD in m
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
363 GETCUSTOM8 .18 ; ppO2 warnvalue in WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
364 mullw d'10'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
365 movff PRODL,xA+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
366 movff PRODH,xA+1 ; ppO2 in [0.01Bar] * 10
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
367
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
368 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
369 addlw 0x06
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
370 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
371 call read_eeprom ; O2 value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
372 movff EEDATA,xB+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
373 clrf xB+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
374 call div16x16 ;xA/xB=xC with xA as remainder
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
375 movlw d'10'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
376 subwf xC+0,F ; Subtract 10m...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
377 movff xC+0,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
378 movlw d'0'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
379 subwfb xC+1,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
380 movff xC+1,hi
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
381 output_16
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
382 movlw 'm'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
383 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
384 movlw ')'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
385 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
386 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
387 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
388 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
389 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
390 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
391
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
392 WIN_TOP .95
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
393 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
394 movlw 'H'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
395 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
396 movlw 'e'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
397 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
398 movlw ':'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
399 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
400 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
401 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
402 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
403 addlw 0x07
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
404 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
405 call read_eeprom ; He value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
406 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
407 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
408 movlw '%'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
409 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
410 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
411 movwf POSTINC2
105
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
412 movlw '('
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
413 movwf POSTINC2
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
414 movlw 'E'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
415 movwf POSTINC2
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
416 movlw 'N'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
417 movwf POSTINC2
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
418 movlw 'D'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
419 movwf POSTINC2
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
420 movlw ':'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
421 movwf POSTINC2
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
422
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
423 ; Show END in m
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
424 GETCUSTOM8 .18 ; ppO2 warnvalue in WREG
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
425 mullw d'10'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
426 movff PRODL,xA+0
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
427 movff PRODH,xA+1 ; ppO2 in [0.01Bar] * 10
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
428 movf divemins+0,W
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
429 addlw 0x06
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
430 movwf EEADR
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
431 call read_eeprom ; O2 value
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
432 movff EEDATA,xB+0
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
433 clrf xB+1
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
434 call div16x16 ;xA/xB=xC with xA as remainder
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
435 movlw d'10'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
436 subwf xC+0,F ; Subtract 10m...
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
437 movff xC+0,lo
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
438 movlw d'0'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
439 subwfb xC+1,F
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
440 movff xC+1,hi ; lo:hi holding MOD in meters
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
441 movlw d'10'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
442 addwf lo,F
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
443 movlw d'0'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
444 addwfc hi,F ; lo:hi holding MOD+10m
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
445
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
446 movf divemins+0,W
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
447 addlw 0x07
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
448 movwf EEADR
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
449 call read_eeprom ; He value in % -> EEDATA
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
450 movlw d'100'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
451 movwf xA+0
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
452 movf EEDATA,W ; He value in % -> EEDATA
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
453 subwf xA+0,F ; xA+0 = 100 - He Value in %
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
454 clrf xA+1
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
455 movff lo,xB+0
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
456 movff hi,xB+1 ; Copy MOD+10
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
457 call mult16x16 ;xA*xB=xC
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
458 movff xC+0,xA+0
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
459 movff xC+1,xA+1
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
460 movlw d'100'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
461 movwf xB+0
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
462 clrf xB+1
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
463 call div16x16 ;xA/xB=xC with xA as remainder
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
464 ; xC:2 = ((MOD+10) * 100 - HE Value in %) / 100
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
465 movlw d'10'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
466 subwf xC+0,F ; Subtract 10m...
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
467 movff xC+0,lo
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
468 movlw d'0'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
469 subwfb xC+1,F
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
470 movff xC+1,hi
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
471 output_16
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
472 movlw 'm'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
473 movwf POSTINC2
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
474 movlw ')'
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
475 movwf POSTINC2
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
476 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
477 movwf POSTINC2
105
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
478 movlw ' '
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
479 movwf POSTINC2
64109f6fb3d1 added END to GasSetup, small fixes
heinrichsweikamp
parents: 98
diff changeset
480
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
481 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
482
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
483 WIN_TOP .125
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
484 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
485 movlw '+'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
486 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
487 movlw '/'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
488 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
489 movlw '-'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
490 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
491 movlw ':'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
492 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
493 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
494 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
495 movlw '+'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
496 btfsc first_FA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
497 movlw '-'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
498 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
499 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
500
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
501 WIN_TOP .155
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
502 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
503 OUTPUTTEXT .89 ; Default:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
504 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
505 addlw 0x04
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
506 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
507 call read_eeprom ; Default O2 value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
508 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
509 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
510 movlw '/'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
511 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
512 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
513 addlw 0x05
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
514 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
515 call read_eeprom ; Default He value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
516 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
517 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
518 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
519 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
520 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
521 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
522 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
523
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
524 call wait_switches ; Waits until switches are released, resets flag if button stays pressed!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
525 call PLED_menu_cursor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
526
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
527 gassetup_loop:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
528 call check_switches_logbook
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
529
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
530 btfsc menubit3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
531 bra gassetup2 ; move cursor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
532
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
533 btfsc menubit2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
534 bra do_gassetup ; call submenu
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
535
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
536 btfsc divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
537 goto restart ; dive started!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
538
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
539 btfsc onesecupdate
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
540 call timeout_surfmode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
541
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
542 btfsc onesecupdate
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
543 call set_dive_modes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
544
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
545 bcf onesecupdate ; 1 sec. functions done
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
546
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
547 btfsc sleepmode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
548 bra exit_gassetup
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
549
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
550 bra gassetup_loop
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
551
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
552 gassetup2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
553 incf menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
554 movlw d'7'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
555 cpfseq menupos ; =7?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
556 bra gassetup3 ; No
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
557 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
558 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
559
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
560 gassetup3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
561
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
562 clrf timeout_counter2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
563 call PLED_menu_cursor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
564
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
565 call wait_switches ; Waits until switches are released, resets flag if button stays pressed!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
566
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
567 bcf menubit3 ; clear flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
568 bra gassetup_loop
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
569
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
570 do_gassetup:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
571 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
572 bra next_gas_page
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
573 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
574 bra adjust_o2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
575 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
576 bra adjust_he
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
577 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
578 bra toggle_plus_minus_gassetup
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
579 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
580 bra restore_gas
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
581 exit_gassetup: ; exit...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
582 movff decodata+0,menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
583 incf menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
584 bra menu_gassetup_prelist
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
585
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
586 toggle_plus_minus_gassetup:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
587 btg first_FA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
588 movlw d'4'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
589 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
590 bra menu_gassetup1 ; return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
591
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
592 next_gas:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
593 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
594 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
595 bra menu_gassetup0 ; incl. clear screen
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
596
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
597 adjust_o2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
598 movf divemins+0,W ; read current value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
599 addlw 0x06
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
600 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
601 call read_eeprom ; Low-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
602 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
603
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
604 btfsc first_FA ; Minus?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
605 bra adjust_o2_1 ; yes, minus!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
606
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
607 incf lo,F ; increase O2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
608 movlw d'101'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
609 cpfseq lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
610 bra adjust_o2_2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
611 movlw d'4' ; LOWER O2 Limit
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
612 movwf lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
613 bra adjust_o2_2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
614
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
615 adjust_o2_1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
616 decf lo,F ; decrease O2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
617 movlw d'3'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
618 cpfseq lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
619 bra adjust_o2_2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
620
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
621 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
622 addlw 0x07
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
623 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
624 call read_eeprom ; read He value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
625
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
626 movlw d'100'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
627 movwf lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
628 movf EEDATA,W ; He value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
629 subwf lo,F ; lo=100% - He%
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
630
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
631 adjust_o2_2: ; test if O2+He>100...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
632 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
633 addlw 0x07
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
634 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
635 call read_eeprom ; read He value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
636 movf EEDATA,W ; He value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
637 addwf lo,W ; add O2 value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
638 movwf hi ; store in temp
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
639 movlw d'101'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
640 cpfseq hi ; O2 and He > 100?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
641 bra adjust_o2_3 ; No!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
642
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
643 movlw d'4' ; LOWER O2 Limit
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
644 movwf lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
645
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
646 adjust_o2_3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
647 movf divemins+0,W ; save current value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
648 addlw 0x06
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
649 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
650 movff lo,EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
651 call write_eeprom ; Low-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
652
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
653 movlw d'2'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
654 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
655 bra menu_gassetup1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
656
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
657 adjust_he:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
658 movf divemins+0,W ; read current value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
659 addlw 0x07
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
660 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
661 call read_eeprom ; Low-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
662 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
663
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
664 btfsc first_FA ; Minus?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
665 bra adjust_he_1 ; yes, minus!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
666
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
667 incf lo,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
668 movlw d'92' ; He limited to (useless) 90%
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
669 cpfseq lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
670 bra adjust_he_2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
671 clrf lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
672 bra adjust_he_2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
673
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
674 adjust_he_1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
675 decf lo,F ; decrease He
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
676 movlw d'255'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
677 cpfseq lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
678 bra adjust_he_2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
679 clrf lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
680
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
681 adjust_he_2: ; test if O2+He>100...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
682 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
683 addlw 0x06
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
684 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
685 call read_eeprom ; read He value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
686 movf EEDATA,W ; He value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
687 addwf lo,W ; add O2 value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
688 movwf hi ; store in temp
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
689 movlw d'101'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
690 cpfseq hi ; O2 and He > 100?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
691 bra adjust_he_3 ; No!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
692 ; clrf lo ; Yes, clear He to zero
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
693 decf lo,F ; reduce He again = unchanged after operation
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
694
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
695 adjust_he_3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
696 movf divemins+0,W ; save current value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
697 addlw 0x07
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
698 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
699 movff lo,EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
700 call write_eeprom ; Low-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
701
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
702 movlw d'3'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
703 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
704 bra menu_gassetup1 ;
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
705
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
706 restore_gas:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
707 movf divemins+0,W ; read Default value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
708 addlw 0x04
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
709 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
710 call read_eeprom ; Low-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
711 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
712 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
713 addlw 0x05
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
714 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
715 call read_eeprom ; High-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
716 movff EEDATA,hi
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
717
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
718 movf divemins+0,W ; save Default value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
719 addlw 0x06
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
720 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
721 movff lo,EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
722 call write_eeprom ; Low-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
723 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
724 addlw 0x07
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
725 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
726 movff hi,EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
727 call write_eeprom ; High-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
728
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
729 movlw d'5'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
730 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
731 bra menu_gassetup1 ;
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
732
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
733
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
734 next_gas_page:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
735 call PLED_ClearScreen
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
736 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
737 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
738 DISPLAYTEXT .109 ; Back
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
739
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
740 DISPLAYTEXT .11 ; Exit
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
741
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
742 next_gas_page1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
743 clrf timeout_counter2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
744 bcf menubit2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
745 bcf menubit3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
746
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
747 rcall gassetup_title_bar2 ; Displays the title bar with the current Gas info
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
748 rcall gassetup_show_ppO2 ; Display the ppO2 of the change depth with the current gas
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
749
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
750 WIN_TOP .65
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
751 WIN_LEFT .20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
752 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
753 OUTPUTTEXT .105 ; "Active Gas? "
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
754 read_int_eeprom d'27' ; read flag register
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
755
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
756 ; hi contains active gas flags in BIT0:4 ....
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
757
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
758 movff decodata+0,lo ; Gas 0-4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
759 incf lo,F ; Gas 1-5
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
760
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
761 active_gas_display:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
762 rrcf EEDATA ; roll flags into carry
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
763 decfsz lo,F ; max. 5 times...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
764 bra active_gas_display
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
765
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
766 btfss STATUS,C ; test carry
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
767 bra active_gas_display_no
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
768
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
769 OUTPUTTEXT .96 ; Yes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
770 bra active_gas_display_end
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
771
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
772 active_gas_display_no:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
773 movlw ' ' ; three spaces instead of "Yes"
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
774 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
775 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
776 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
777 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
778 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
779
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
780 active_gas_display_end:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
781 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
782
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
783 WIN_TOP .95
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
784 WIN_LEFT .20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
785 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
786 OUTPUTTEXT .88 ; First Gas?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
787 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
788 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
789
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
790 movlw d'33'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
791 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
792 call read_eeprom ; Get current startgas 1-5 # into EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
793 decf EEDATA,W ; 0-4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
794 cpfseq decodata+0 ; =current displayed gas #?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
795 bra menu_firstgas0 ; no, display three spaces
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
796
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
797 OUTPUTTEXT .96 ; Yes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
798 bra menu_firstgas1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
799
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
800 menu_firstgas0:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
801 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
802 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
803 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
804 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
805 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
806 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
807
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
808 menu_firstgas1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
809 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
810
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
811 WIN_TOP .125
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
812 WIN_LEFT .20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
813 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
814 OUTPUTTEXT .107 ; Change+
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
815 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
816
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
817 WIN_TOP .155
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
818 WIN_LEFT .20
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
819 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
820 OUTPUTTEXT .108 ; Change-
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
821 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
822
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
823 call wait_switches ; Waits until switches are released, resets flag if button stays pressed!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
824 call PLED_menu_cursor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
825
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
826 next_gas_page_loop:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
827 call check_switches_logbook
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
828
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
829 btfsc menubit3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
830 bra next_gas_page2 ; move cursor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
831
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
832 btfsc menubit2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
833 bra do_next_gas_page ; call submenu
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
834
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
835 btfsc divemode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
836 goto restart ; dive started!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
837
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
838 btfsc onesecupdate
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
839 call timeout_surfmode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
840
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
841 btfsc onesecupdate
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
842 call set_dive_modes
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
843
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
844 bcf onesecupdate ; 1 sec. functions done
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
845
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
846 btfsc sleepmode
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
847 bra exit_gassetup
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
848
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
849 bra next_gas_page_loop
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
850
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
851 next_gas_page2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
852 incf menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
853
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
854 movlw d'7'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
855 cpfseq menupos ; =7?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
856 bra next_gas_page3 ; No
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
857 movlw d'1'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
858 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
859
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
860 next_gas_page3:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
861 clrf timeout_counter2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
862 call PLED_menu_cursor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
863
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
864 call wait_switches ; Waits until switches are released, resets flag if button stays pressed!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
865
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
866 bcf menubit3 ; clear flag
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
867 bra next_gas_page_loop
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
868
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
869 do_next_gas_page:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
870 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
871 bra next_gas
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
872 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
873 bra toggle_active_gas
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
874 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
875 bra make_first_gas
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
876 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
877 bra change_gas_depth_plus
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
878 dcfsnz menupos,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
879 bra change_gas_depth_minus
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
880 bra exit_gassetup ; Exit menu
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
881
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
882 make_first_gas:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
883 movff decodata+0,EEDATA ; current gas (0-4) into EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
884 incf EEDATA,F ; current gas (1-5) into EEDATA
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
885 movlw d'33'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
886 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
887 call write_eeprom ; store in internal EEPROM
115
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
888
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
889 ; Set First gas to "Active"
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
890 read_int_eeprom d'27' ; read flag register
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
891 movff decodata+0,lo ; selected gas 0-4
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
892 incf lo,F
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
893 dcfsnz lo,F
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
894 bsf EEDATA,0
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
895 dcfsnz lo,F
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
896 bsf EEDATA,1
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
897 dcfsnz lo,F
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
898 bsf EEDATA,2
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
899 dcfsnz lo,F
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
900 bsf EEDATA,3
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
901 dcfsnz lo,F
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
902 bsf EEDATA,4
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
903 write_int_eeprom d'27' ; write flag register
50a06adabc67 First gas is active, Gauge mode display
heinrichsweikamp
parents: 105
diff changeset
904
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
905 movlw d'3'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
906 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
907 bra next_gas_page1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
908
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
909 toggle_active_gas:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
910 read_int_eeprom d'27' ; read flag register
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
911 movff decodata+0,lo ; selected gas 0-4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
912 incf lo,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
913 dcfsnz lo,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
914 btg EEDATA,0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
915 dcfsnz lo,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
916 btg EEDATA,1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
917 dcfsnz lo,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
918 btg EEDATA,2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
919 dcfsnz lo,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
920 btg EEDATA,3
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
921 dcfsnz lo,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
922 btg EEDATA,4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
923 write_int_eeprom d'27' ; write flag register
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
924 movlw d'2'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
925 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
926 bra next_gas_page1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
927
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
928 change_gas_depth_plus:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
929 movf decodata+0,W ; read current value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
930 addlw d'28' ; offset in memory
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
931 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
932 call read_eeprom ; Low-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
933 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
934
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
935 incf lo,F ; increase depth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
936 movlw d'100' ; Change depth limit + 1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
937 cpfseq lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
938 bra change_gas_depth_plus2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
939 movlw d'99' ; Change depth limit
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
940 movwf lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
941 change_gas_depth_plus2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
942 movff lo,EEDATA ; write result
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
943 call write_eeprom ; save result in EEPROM
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
944
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
945 movlw d'4'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
946 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
947 bra next_gas_page1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
948
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
949
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
950 change_gas_depth_minus:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
951 movf decodata+0,W ; read current value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
952 addlw d'28' ; offset in memory
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
953 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
954 call read_eeprom ; Low-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
955 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
956
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
957 decf lo,F ; decrease depth
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
958 movlw d'255'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
959 cpfseq lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
960 bra change_gas_depth_minus2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
961 movlw d'0'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
962 movwf lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
963
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
964 change_gas_depth_minus2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
965 movff lo,EEDATA ; write result
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
966 call write_eeprom ; save result in EEPROM
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
967
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
968 movlw d'5'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
969 movwf menupos
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
970 bra next_gas_page1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
971
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
972 ; Changed v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
973 gassetup_title_bar2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
974 call PLED_topline_box
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
975 WIN_INVERT .1 ; Init new Wordprocessor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
976 WIN_TOP .2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
977 WIN_LEFT .0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
978 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
979 OUTPUTTEXT .95 ; Gas#
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
980 movff decodata+0,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
981 incf lo,F
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
982 bsf leftbind
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
983 output_99
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
984 movlw ':'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
985 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
986 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
987 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
988 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
989
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
990 WIN_TOP .2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
991 WIN_LEFT .50
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
992 lfsr FSR2,letter
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
993
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
994 ;He check
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
995 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
996 addlw 0x07
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
997 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
998 call read_eeprom ; He value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
999 movff EEDATA,lo ; Move EEData -> lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1000 movf lo,f ; Move lo -> f
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1001 movlw d'0' ; Move 0 -> WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1002 cpfsgt lo ; He > 0?
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1003 bra gassetup_title_bar3 ; NO check o2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1004
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1005 ; YES Write TX 15/55
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1006 call gassetup_write_Tx ; Write TX
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1007 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1008 addlw 0x06
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1009 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1010 call read_eeprom ; O2 value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1011 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1012 output_8 ; Write O2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1013 movlw '/'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1014 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1015 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1016 addlw 0x07
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1017 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1018 call read_eeprom ; He value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1019 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1020 output_8 ; Write He
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1021 bra gassetup_title_bar7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1022
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1023 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1024 gassetup_title_bar3: ; O2 Check
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1025 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1026 addlw 0x06
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1027 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1028 call read_eeprom ; O2 value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1029 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1030 movf lo,f ; Move lo -> f
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1031 movlw d'21' ; Move 21 -> WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1032 cpfseq lo ; o2 = 21
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1033 cpfsgt lo ; o2 > 21%
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1034 bra gassetup_title_bar5 ; NO AIR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1035 movlw d'100' ; Move 100 -> WREG
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1036 cpfslt lo ; o2 < 100%
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1037 bra gassetup_title_bar4 ; NO write O2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1038
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1039 ; YES Write NX 32
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1040 call gassetup_write_Nx
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1041 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1042 bra gassetup_title_bar7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1043
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1044 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1045 gassetup_title_bar4:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1046 movlw 'O'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1047 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1048 movlw '2'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1049 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1050 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1051 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1052 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1053 bra gassetup_title_bar7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1054
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1055 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1056 gassetup_title_bar5:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1057 cpfseq lo ; o2 = 21%
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1058 bra gassetup_title_bar6
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1059
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1060 movlw 'A'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1061 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1062 movlw 'I'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1063 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1064 movlw 'R'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1065 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1066 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1067 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1068 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1069 bra gassetup_title_bar7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1070
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1071 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1072 gassetup_title_bar6: ; ERROR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1073 movlw 'E'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1074 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1075 movlw 'R'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1076 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1077 movlw 'R'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1078 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1079 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1080 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1081 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1082 bra gassetup_title_bar7
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1083
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1084 gassetup_title_bar7:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1085 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1086 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1087 movlw 'i'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1088 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1089 movlw 'n'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1090 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1091 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1092 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1093 movf decodata+0,W ; read current value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1094 addlw d'28' ; offset in memory
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1095 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1096 call read_eeprom ; Low-value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1097 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1098 output_8
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1099 movlw 'm'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1100 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1101 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1102 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1103
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1104 call word_processor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1105 WIN_INVERT .0 ; Init new Wordprocessor
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1106 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1107
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1108 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1109 gassetup_write_Nx:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1110 movlw 'N'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1111 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1112 movlw 'X'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1113 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1114 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1115 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1116 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1117
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1118 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1119 gassetup_write_Tx:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1120 movlw 'T'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1121 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1122 movlw 'X'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1123 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1124 movlw ' '
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1125 movwf POSTINC2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1126 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1127
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1128 ; New v1.44se
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1129 menu_gassetup_grey_inactive:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1130 ; Set Greyvalue to lower value when gas is inactive
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1131 read_int_eeprom d'27' ; read flag register
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1132 movff decodata+0,lo ; copy gas number 0-4
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1133 incf lo,F ; 1-5
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1134 menu_gassetup_list1:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1135 rrcf EEDATA ; roll flags into carry
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1136 decfsz lo,F ; max. 5 times...
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1137 bra menu_gassetup_list1
3
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 0
diff changeset
1138
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1139 btfss STATUS,C ; test carry
3
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 0
diff changeset
1140 bra menu_gassetup_list1_grey
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 0
diff changeset
1141
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 0
diff changeset
1142 GETCUSTOM8 d'35' ;movlw color_white
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 0
diff changeset
1143 call PLED_set_color ; grey out inactive gases!
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 0
diff changeset
1144 return
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 0
diff changeset
1145
3cf8af30b36e v1.51 beta
heinrichsweikamp
parents: 0
diff changeset
1146 menu_gassetup_list1_grey:
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1147 movlw color_grey
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1148 call PLED_set_color ; grey out inactive gases!
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1149 return
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1150
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1151 gassetup_show_ppO2:
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1152 movf divemins+0,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1153 addlw 0x06
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1154 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1155 call read_eeprom ; O2 value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1156 movff EEDATA,hi
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1157
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1158 movf decodata+0,W ; read current value
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1159 addlw d'28' ; offset in memory
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1160 movwf EEADR
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1161 call read_eeprom ; Change depth in m
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1162 movff EEDATA,lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1163 movlw d'10'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1164 addwf lo,F ; Depth+10m=lo
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1165 movf hi,W
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1166 mulwf lo ; (Depth+10m)*O2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1167 movff PRODL,xA+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1168 movff PRODH,xA+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1169 movlw d'10'
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1170 movwf xB+0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1171 clrf xB+1
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1172 call div16x16 ;xA/xB=xC with xA as remainder
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1173 movff xC+0,lo ; ((Depth+10m)*O2)/10 = [0.01Bar] ppO2
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1174 movff xC+1,hi
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1175
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1176 WIN_LEFT .55
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1177 WIN_TOP .35
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1178 lfsr FSR2,letter
50
heinrichsweikamp
parents: 49
diff changeset
1179 OUTPUTTEXT d'149' ; (ppO2:
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1180 output_16dp d'3'
50
heinrichsweikamp
parents: 49
diff changeset
1181 OUTPUTTEXT d'150' ; Bar:
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1182 call word_processor
35
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1183 return
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1184
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1185
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1186 gassetup_sort_gaslist: ; Sorts Gaslist according to change depth
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1187 ; EEPROM Locations of Gaslist
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1188 ; Gas1:
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1189 ; O2 Default:4
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1190 ; He Default:5
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1191 ; O2 Current:6
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1192 ; He Current:7
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1193 ; Change: 28
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1194 ; Active: 27,0
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1195
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1196 ; Gas2:
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1197 ; O2 Default:8
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1198 ; He Default:9
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1199 ; O2 Current:10
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1200 ; He Current:11
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1201 ; Change: 29
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1202 ; Active: 27,1
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1203
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1204 ; Gas3:
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1205 ; O2 Default:12
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1206 ; He Default:13
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1207 ; O2 Current:14
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1208 ; He Current:15
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1209 ; Change: 30
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1210 ; Active: 27,2
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1211
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1212 ; Gas4:
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1213 ; O2 Default:16
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1214 ; He Default:17
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1215 ; O2 Current:18
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1216 ; He Current:19
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1217 ; Change: 31
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1218 ; Active: 27,3
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1219
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1220 ; Gas5:
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1221 ; O2 Default:20
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1222 ; He Default:21
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1223 ; O2 Current:22
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1224 ; He Current:23
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1225 ; Change: 32
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1226 ; Active: 27,4
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1227
47
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1228 ; reset Change depths (Important for all users who upgrade from <1.60!)
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1229 clrf EEADRH
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1230 clrf EEDATA
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1231 write_int_eeprom d'118' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1232 write_int_eeprom d'119' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1233 write_int_eeprom d'120' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1234 write_int_eeprom d'121' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1235 write_int_eeprom d'122' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1236 movlw d'21' ; O2 Current
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1237 movwf EEDATA
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1238 write_int_eeprom d'96' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1239 write_int_eeprom d'100' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1240 write_int_eeprom d'104' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1241 write_int_eeprom d'108' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1242 write_int_eeprom d'112' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1243
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1244 clrf EEDATA ; He Current
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1245 write_int_eeprom d'97' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1246 write_int_eeprom d'101' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1247 write_int_eeprom d'105' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1248 write_int_eeprom d'109' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1249 write_int_eeprom d'113' ;
56aea9fcdd8f 1.65beta release
heinrichsweikamp
parents: 45
diff changeset
1250
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1251 ; Find deepest Gas
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1252 ; Copy all to RAM
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1253 movlw d'3'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1254 movwf EEADR
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1255 clrf EEADRH
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1256 lfsr FSR2,letter ; Store gases in Letter buffer (max. 26Byte!)
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1257 gassetup_sort_gaslist1:
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1258 incf EEADR,F ; Next Adress
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1259 call read_eeprom ; Read byte
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1260 movff EEDATA,POSTINC2 ; Copy into RAM
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1261 movlw d'23'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1262 cpfseq EEADR ; All done?
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1263 bra gassetup_sort_gaslist1 ; No, not yet
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1264 ; Letter+0 = EEPROM 4
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1265 ; ...
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1266 ; Letter+20 = EEPROM 23
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1267 read_int_eeprom d'28'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1268 movff EEDATA,POSTINC2 ; Change Depth Gas1 -> Letter+21
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1269 read_int_eeprom d'29'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1270 movff EEDATA,POSTINC2 ; Change Depth Gas2 -> Letter+22
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1271 read_int_eeprom d'30'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1272 movff EEDATA,POSTINC2 ; Change Depth Gas3 -> Letter+23
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1273 read_int_eeprom d'31'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1274 movff EEDATA,POSTINC2 ; Change Depth Gas4 -> Letter+24
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1275 read_int_eeprom d'32'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1276 movff EEDATA,POSTINC2 ; Change Depth Gas5 -> Letter+25
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1277 read_int_eeprom d'27'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1278 movff EEDATA,POSTINC2 ; Active Byte -> Letter+26
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1279
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1280 ; All change depths = 0? -> Skip sort!
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1281 lfsr FSR2,letter+.20 ; Change depths...
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1282 movlw d'5'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1283 movwf logbook_temp3 ; Gas (0-4)
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1284 clrf logbook_temp1 ; counter
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1285 gassetup_sort_gaslist1a:
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1286 movf POSTINC2,W
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1287 addwf logbook_temp1,F ; sum
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1288 decfsz logbook_temp3,F ; Loop
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1289 bra gassetup_sort_gaslist1a
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1290
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1291 tstfsz logbook_temp1 ; All depths = 0?
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1292 bra gassetup_sort_gaslist1b ; No
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1293 return ; Yes, skip all!
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1294
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1295 gassetup_sort_gaslist1b:
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1296 ; Initialize sorting...
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1297 bcf menubit2 ; Change Start gas only 1x
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1298 movlw d'99'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1299 movwf logbook_temp4 ; Last Gas change depth
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1300
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1301 rcall gassetup_sort_sort ; Sort!
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1302 ; Done. Copy Gas #logbook_temp3 into EEPROM Place Gas 5
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1303 movlw d'5' ; Gas 5
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1304 movwf logbook_temp5
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1305 rcall gassetup_sort_store
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1306 movff logbook_temp1,EEDATA ; Change depth -> EEDATA
45
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1307 write_int_eeprom d'122' ; Write Change Depth Gas 5
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1308
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1309 rcall gassetup_sort_sort ; Sort!
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1310 ; Done. Copy Gas #logbook_temp3 into EEPROM Place Gas 4
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1311 movlw d'4' ; Gas 4
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1312 movwf logbook_temp5
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1313 rcall gassetup_sort_store
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1314 movff logbook_temp1,EEDATA ; Change depth -> EEDATA
45
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1315 write_int_eeprom d'121' ; Write Change Depth Gas 4
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1316
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1317 rcall gassetup_sort_sort ; Sort!
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1318 ; Done. Copy Gas #logbook_temp3 into EEPROM Place Gas 3
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1319 movlw d'3' ; Gas 3
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1320 movwf logbook_temp5
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1321 rcall gassetup_sort_store
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1322 movff logbook_temp1,EEDATA ; Change depth -> EEDATA
45
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1323 write_int_eeprom d'120' ; Write Change Depth Gas 3
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1324
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1325 rcall gassetup_sort_sort ; Sort!
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1326 ; Done. Copy Gas #logbook_temp3 into EEPROM Place Gas 2
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1327 movlw d'2' ; Gas 2
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1328 movwf logbook_temp5
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1329 rcall gassetup_sort_store
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1330 movff logbook_temp1,EEDATA ; Change depth -> EEDATA
45
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1331 write_int_eeprom d'119' ; Write Change Depth Gas 2
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1332
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1333 rcall gassetup_sort_sort ; Sort!
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1334 ; Done. Copy Gas #logbook_temp3 into EEPROM Place Gas 1
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1335 movlw d'1' ; Gas 1
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1336 movwf logbook_temp5
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1337 rcall gassetup_sort_store
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1338 movff logbook_temp1,EEDATA ; Change depth -> EEDATA
45
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1339 write_int_eeprom d'118' ; Write Change Depth Gas 1
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1340 return
35
d4f0c097a7fa preparations for new gaslist
heinrichsweikamp
parents: 3
diff changeset
1341
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1342 gassetup_sort_sort:
41
3ab1188651af 1.63 in work...
heinrichsweikamp
parents: 36
diff changeset
1343 clrf logbook_temp2 ; Gas (0-4)
3ab1188651af 1.63 in work...
heinrichsweikamp
parents: 36
diff changeset
1344 clrf logbook_temp1 ; Here: Change depth in m
3ab1188651af 1.63 in work...
heinrichsweikamp
parents: 36
diff changeset
1345 clrf logbook_temp3 ; Gas (0-4)
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1346
41
3ab1188651af 1.63 in work...
heinrichsweikamp
parents: 36
diff changeset
1347 lfsr FSR2,letter+.20 ; Change depths...
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1348 gassetup_sort_gaslist2:
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1349 movf POSTINC2,W ; Get Change depth into WREG
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1350
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1351 cpfsgt logbook_temp4 ; logbook_temp4 < W? Here: Change depth of last sort run
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1352 bra gassetup_sort_gaslist3 ; Skip, tested depth > max. Depth from last run
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1353
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1354 cpfslt logbook_temp1 ; logbook_temp1 < W?
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1355 bra gassetup_sort_gaslist3 ; Skip, tested depth < max. Depth from this run
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1356
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1357 movwf logbook_temp1 ; copy new depth (current run)
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1358 movff logbook_temp2,logbook_temp3 ; Holds deepest Gas 0-4 of this run
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1359 gassetup_sort_gaslist3:
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1360 incf logbook_temp2,F ; Check next Gas
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1361 movlw d'5'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1362 cpfseq logbook_temp2 ; All done?
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1363 bra gassetup_sort_gaslist2 ; No
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1364 gassetup_sort_gaslist4:
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1365 movff logbook_temp1,logbook_temp4 ; copy new depth (Store for next run)
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1366
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1367 ; Debugger
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1368 ;call enable_rs232
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1369 ; movff logbook_temp1,TXREG
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1370 ; call rs232_wait_tx ; wait for UART
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1371 ; movff logbook_temp2,TXREG
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1372 ; call rs232_wait_tx ; wait for UART
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1373 ; movff logbook_temp3,TXREG
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1374 ; call rs232_wait_tx ; wait for UART
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1375 ; movff logbook_temp4,TXREG
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1376 ; call rs232_wait_tx ; wait for UART
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1377 ; movff logbook_temp5,TXREG
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1378 ; call rs232_wait_tx ; wait for UART
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1379 ; WAITMS d'255'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1380 return
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1381
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1382 gassetup_sort_store:
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1383 lfsr FSR2,letter ; Point to Gas0
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1384 movf logbook_temp3,W
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1385 mullw d'4'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1386 movf PRODL,W ; x4
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1387 addwf FSR2L,F
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1388 movlw d'0'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1389 addwfc FSR2H,F ; Point to Gas #logbook_temp3 (0-4)
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1390
50
heinrichsweikamp
parents: 49
diff changeset
1391 ; btfsc menubit2 ; Change Start gas only 1x
heinrichsweikamp
parents: 49
diff changeset
1392 ; bra gassetup_sort_store2 ; Skip
heinrichsweikamp
parents: 49
diff changeset
1393 ;; First Gas: 33 (1-5)
heinrichsweikamp
parents: 49
diff changeset
1394 ;; Was gas #logbook_temp3 first gas?
heinrichsweikamp
parents: 49
diff changeset
1395 ; read_int_eeprom d'33' ; Get old first gas (1-5)
heinrichsweikamp
parents: 49
diff changeset
1396 ; incf logbook_temp3,W ; Gas 1-5 -> WREG
heinrichsweikamp
parents: 49
diff changeset
1397 ; cpfseq EEDATA ; Compare with EEDATA d'33'
heinrichsweikamp
parents: 49
diff changeset
1398 ; bra gassetup_sort_store2 ; Was not first gas!
heinrichsweikamp
parents: 49
diff changeset
1399 ; movff logbook_temp5,EEDATA ; Copy new first gas
heinrichsweikamp
parents: 49
diff changeset
1400 ; write_int_eeprom d'123' ; Store
heinrichsweikamp
parents: 49
diff changeset
1401 ; bsf menubit2 ; Done. Do not change again.
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1402
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1403 gassetup_sort_store2:
45
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1404 ; Was Gas #logbook_temp3 active?
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1405 ; Letter+26 holds active bits 25?
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1406 movff logbook_temp3,logbook_temp6 ; Counter 0-4
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1407 incf logbook_temp6,F ; Counter 1-5
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1408 movff letter+.25, logbook_temp2 ; No longer used
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1409 read_int_eeprom d'27' ; Active flag register
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1410 gassetup_sort_store3:
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1411 rrcf logbook_temp2,F ; Shift into Carry
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1412 decfsz logbook_temp6,F ; 1-5 x
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1413 bra gassetup_sort_store3 ; Loop
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1414 ; Carry now holds active bit of gas #logbook_temp3 (0-4)
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1415
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1416 btfss STATUS,C ; Was Gas active?
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1417 clrf logbook_temp1 ; No!, Clear change Depth to make it inactive for sorted list!
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1418
49
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
1419 ;call enable_rs232
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
1420 ;movff logbook_temp1,TXREG
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
1421 ;call rs232_wait_tx ; wait for UART
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
1422
cd5b650920f6 1.70...
heinrichsweikamp
parents: 47
diff changeset
1423 movf logbook_temp5,W ; 1-5
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1424 mullw d'4'
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1425 movff PRODL,EEADR ; Point to EEPROM of Gas #logbook_temp5
45
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1426 movlw d'90' ; +90 Offset to new...
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1427 addwf EEADR,F ; ..sorted list!
985607cfb813 1.65beta
heinrichsweikamp
parents: 44
diff changeset
1428
36
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1429 movff POSTINC2,EEDATA ; O2 Default
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1430 call write_eeprom ; store in internal EEPROM
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1431 incf EEADR,F ; +1
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1432 movff POSTINC2,EEDATA ; He Default
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1433 call write_eeprom ; store in internal EEPROM
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1434 incf EEADR,F ; +1
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1435 movff POSTINC2,EEDATA ; O2 Current
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1436 call write_eeprom ; store in internal EEPROM
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1437 incf EEADR,F ; +1
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1438 movff POSTINC2,EEDATA ; He Current
3c38ba950dfb Gas Setup now sorts Gases for new Deco code
heinrichsweikamp
parents: 35
diff changeset
1439 call write_eeprom ; store in internal EEPROM
0
96a35aeda5f2 Initial setup
heinrichsweikamp
parents:
diff changeset
1440 return