annotate src/options.asm @ 0:11d4fc797f74

init
author heinrichsweikamp
date Wed, 24 Apr 2013 19:22:45 +0200
parents
children 4e3f133dfbf4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
heinrichsweikamp
parents:
diff changeset
3 ; File options.asm
heinrichsweikamp
parents:
diff changeset
4 ;
heinrichsweikamp
parents:
diff changeset
5 ; Manage all options data.
heinrichsweikamp
parents:
diff changeset
6 ;
heinrichsweikamp
parents:
diff changeset
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
heinrichsweikamp
parents:
diff changeset
8 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
9 ; HISTORY
heinrichsweikamp
parents:
diff changeset
10 ; 2011-07-12 : [jDG] Creation.
heinrichsweikamp
parents:
diff changeset
11 ;
heinrichsweikamp
parents:
diff changeset
12 ; RATIONALS:
heinrichsweikamp
parents:
diff changeset
13 ;
heinrichsweikamp
parents:
diff changeset
14 ; Provides a centralized file with
heinrichsweikamp
parents:
diff changeset
15
heinrichsweikamp
parents:
diff changeset
16 #include "ostc3.inc" ; Mandatory header
heinrichsweikamp
parents:
diff changeset
17 #include "strings.inc"
heinrichsweikamp
parents:
diff changeset
18 #include "convert.inc"
heinrichsweikamp
parents:
diff changeset
19 #include "ghostwriter.inc"
heinrichsweikamp
parents:
diff changeset
20 #include "eeprom_rs232.inc"
heinrichsweikamp
parents:
diff changeset
21 #include "external_flash.inc"
heinrichsweikamp
parents:
diff changeset
22
heinrichsweikamp
parents:
diff changeset
23 extern write_eeprom
heinrichsweikamp
parents:
diff changeset
24 extern read_eeprom
heinrichsweikamp
parents:
diff changeset
25 extern eeprom_serial_save,eeprom_opt_backup
heinrichsweikamp
parents:
diff changeset
26
heinrichsweikamp
parents:
diff changeset
27 global option_reset_all ; Reset all options to factory default.
heinrichsweikamp
parents:
diff changeset
28 global option_reset ; Reset FSR0 option to factory default.
heinrichsweikamp
parents:
diff changeset
29 global option_save_all ; Save options to EEPROM.
heinrichsweikamp
parents:
diff changeset
30 global option_restore_all ; Restore options from EEPROM.
heinrichsweikamp
parents:
diff changeset
31 global option_inc ; Increment FSR0 option.
heinrichsweikamp
parents:
diff changeset
32 global option_draw ; STRCAT FRS0 option.
heinrichsweikamp
parents:
diff changeset
33
heinrichsweikamp
parents:
diff changeset
34 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
35 CBLOCK tmp+0x10 ; Reserve space for wordprocessor & convert
heinrichsweikamp
parents:
diff changeset
36 opt_type
heinrichsweikamp
parents:
diff changeset
37 opt_default
heinrichsweikamp
parents:
diff changeset
38 opt_inc ; Also default+1 (string), and enum low
heinrichsweikamp
parents:
diff changeset
39 opt_min ; also enum high
heinrichsweikamp
parents:
diff changeset
40 opt_max
heinrichsweikamp
parents:
diff changeset
41 opt_unit:2 ; Multi-lingual unit text.
heinrichsweikamp
parents:
diff changeset
42 opt_eeprom
heinrichsweikamp
parents:
diff changeset
43 opt_backup_tbl:3
heinrichsweikamp
parents:
diff changeset
44 ; Reserved to tmp+0x1F...
heinrichsweikamp
parents:
diff changeset
45 ENDC
heinrichsweikamp
parents:
diff changeset
46
heinrichsweikamp
parents:
diff changeset
47 gui CODE ; Appends to other GUI segment
heinrichsweikamp
parents:
diff changeset
48 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
49 ; Reset all options to factory defauts.
heinrichsweikamp
parents:
diff changeset
50 ;
heinrichsweikamp
parents:
diff changeset
51 ; INPUT: none
heinrichsweikamp
parents:
diff changeset
52 ; OUTPUT: none
heinrichsweikamp
parents:
diff changeset
53 ; TRASH: TBLPTR, TABLAT, WREG, FSR0, FSR1, FSR2
heinrichsweikamp
parents:
diff changeset
54
heinrichsweikamp
parents:
diff changeset
55 option_reset_all:
heinrichsweikamp
parents:
diff changeset
56 clrf EEADRH
heinrichsweikamp
parents:
diff changeset
57 read_int_eeprom .2
heinrichsweikamp
parents:
diff changeset
58 movff EEDATA,lo
heinrichsweikamp
parents:
diff changeset
59 read_int_eeprom .3
heinrichsweikamp
parents:
diff changeset
60 movff EEDATA,hi
heinrichsweikamp
parents:
diff changeset
61 tstfsz lo ; Total dives=0?
heinrichsweikamp
parents:
diff changeset
62 bra option_reset_all2 ; No, skip resetting logbook
heinrichsweikamp
parents:
diff changeset
63 tstfsz hi ; Total dives=0?
heinrichsweikamp
parents:
diff changeset
64 bra option_reset_all2 ; No, skip resetting logbook
heinrichsweikamp
parents:
diff changeset
65
heinrichsweikamp
parents:
diff changeset
66 clrf EEADRH ; Make sure to select eeprom bank 0
heinrichsweikamp
parents:
diff changeset
67 clrf EEDATA
heinrichsweikamp
parents:
diff changeset
68 write_int_eeprom .4
heinrichsweikamp
parents:
diff changeset
69 write_int_eeprom .5
heinrichsweikamp
parents:
diff changeset
70 write_int_eeprom .6
heinrichsweikamp
parents:
diff changeset
71 write_int_eeprom .2 ; Also, delete total dive counter
heinrichsweikamp
parents:
diff changeset
72 write_int_eeprom .3
heinrichsweikamp
parents:
diff changeset
73 call ext_flash_erase_logbook ; And complete logbook (!)
heinrichsweikamp
parents:
diff changeset
74
heinrichsweikamp
parents:
diff changeset
75 option_reset_all2:
heinrichsweikamp
parents:
diff changeset
76 clrf lo
heinrichsweikamp
parents:
diff changeset
77 clrf hi
heinrichsweikamp
parents:
diff changeset
78 call do_logoffset_common_write ; reset Logbook offset
heinrichsweikamp
parents:
diff changeset
79 movlw LOW(option_table_begin)
heinrichsweikamp
parents:
diff changeset
80 movwf FSR0L
heinrichsweikamp
parents:
diff changeset
81 movlw HIGH(option_table_begin)
heinrichsweikamp
parents:
diff changeset
82 movwf FSR0H
heinrichsweikamp
parents:
diff changeset
83
heinrichsweikamp
parents:
diff changeset
84 option_reset_all_1:
heinrichsweikamp
parents:
diff changeset
85 movf FSR0L,W ; Reached end of table ?
heinrichsweikamp
parents:
diff changeset
86 xorlw LOW(option_table_end) ; (8bit test -> 10 bytes x 128 options max)
heinrichsweikamp
parents:
diff changeset
87 btfsc STATUS,Z ; YES: done.
heinrichsweikamp
parents:
diff changeset
88 return
heinrichsweikamp
parents:
diff changeset
89
heinrichsweikamp
parents:
diff changeset
90 rcall option_reset ; Reset one option.
heinrichsweikamp
parents:
diff changeset
91 bra option_reset_all_1 ; and loop.
heinrichsweikamp
parents:
diff changeset
92
heinrichsweikamp
parents:
diff changeset
93 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
94 ; Read option handle
heinrichsweikamp
parents:
diff changeset
95 ; INPUT: FSR0 = option handle
heinrichsweikamp
parents:
diff changeset
96 ; OUTPUT: FSR1 = address of variable.
heinrichsweikamp
parents:
diff changeset
97 ; TRASH: TBLPTR, TABLAT, WREG, FSR0, FSR1
heinrichsweikamp
parents:
diff changeset
98 option_read:
heinrichsweikamp
parents:
diff changeset
99 movff FSR0L,TBLPTRL
heinrichsweikamp
parents:
diff changeset
100 movlw HIGH(option_table_begin); Get 8 high bits.
heinrichsweikamp
parents:
diff changeset
101 andlw 0xF0 ; Keep only the 4 highest ones.
heinrichsweikamp
parents:
diff changeset
102 iorwf FSR0H,W ; Cat with the known 4 lower ones.
heinrichsweikamp
parents:
diff changeset
103 movwf TBLPTRH ; And we have the high byte.
heinrichsweikamp
parents:
diff changeset
104 movlw UPPER(option_table_begin)
heinrichsweikamp
parents:
diff changeset
105 movwf TBLPTRU
heinrichsweikamp
parents:
diff changeset
106
heinrichsweikamp
parents:
diff changeset
107 ; Read type, default and register from table
heinrichsweikamp
parents:
diff changeset
108 tblrd*+
heinrichsweikamp
parents:
diff changeset
109 movff TABLAT,opt_type
heinrichsweikamp
parents:
diff changeset
110 tblrd*+
heinrichsweikamp
parents:
diff changeset
111 movff TABLAT,opt_default
heinrichsweikamp
parents:
diff changeset
112 tblrd*+
heinrichsweikamp
parents:
diff changeset
113 movff TABLAT,opt_inc
heinrichsweikamp
parents:
diff changeset
114 tblrd*+
heinrichsweikamp
parents:
diff changeset
115 movff TABLAT,opt_min
heinrichsweikamp
parents:
diff changeset
116 tblrd*+
heinrichsweikamp
parents:
diff changeset
117 movff TABLAT,opt_max
heinrichsweikamp
parents:
diff changeset
118 tblrd*+
heinrichsweikamp
parents:
diff changeset
119 movff TABLAT,opt_eeprom
heinrichsweikamp
parents:
diff changeset
120 tblrd*+
heinrichsweikamp
parents:
diff changeset
121 movff TABLAT,opt_unit+0
heinrichsweikamp
parents:
diff changeset
122 tblrd*+
heinrichsweikamp
parents:
diff changeset
123 movff TABLAT,opt_unit+1
heinrichsweikamp
parents:
diff changeset
124 tblrd*+
heinrichsweikamp
parents:
diff changeset
125 movff TABLAT,FSR1L
heinrichsweikamp
parents:
diff changeset
126 tblrd*+
heinrichsweikamp
parents:
diff changeset
127 movff TABLAT,FSR1H
heinrichsweikamp
parents:
diff changeset
128 movff TBLPTRL,FSR0L ; Advance handle too, for reset_all
heinrichsweikamp
parents:
diff changeset
129 movff TBLPTRH,FSR0H
heinrichsweikamp
parents:
diff changeset
130
heinrichsweikamp
parents:
diff changeset
131 return
heinrichsweikamp
parents:
diff changeset
132
heinrichsweikamp
parents:
diff changeset
133 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
134 ; Reset an option to its default value.
heinrichsweikamp
parents:
diff changeset
135 ; INPUT: FSR0 = option handle
heinrichsweikamp
parents:
diff changeset
136 ; OUTPUT: none
heinrichsweikamp
parents:
diff changeset
137 ; TRASH: TBLPTR, TABLAT, WREG, FSR1, FSR2
heinrichsweikamp
parents:
diff changeset
138 ;
heinrichsweikamp
parents:
diff changeset
139 option_reset:
heinrichsweikamp
parents:
diff changeset
140 ; Read type, default and register from table
heinrichsweikamp
parents:
diff changeset
141 rcall option_read
heinrichsweikamp
parents:
diff changeset
142
heinrichsweikamp
parents:
diff changeset
143 ; Switch on type
heinrichsweikamp
parents:
diff changeset
144 movf opt_type,W ; Type == STRING ?
heinrichsweikamp
parents:
diff changeset
145 xorlw 2
heinrichsweikamp
parents:
diff changeset
146 bz opt_reset_string ; YES: special copy
heinrichsweikamp
parents:
diff changeset
147
heinrichsweikamp
parents:
diff changeset
148 movff opt_default,INDF1 ; NO: just a 8bit indirect copy
heinrichsweikamp
parents:
diff changeset
149 return
heinrichsweikamp
parents:
diff changeset
150
heinrichsweikamp
parents:
diff changeset
151 opt_reset_string:
heinrichsweikamp
parents:
diff changeset
152 movff FSR1L,FSR2L ; set string destination address.
heinrichsweikamp
parents:
diff changeset
153 movff FSR1H,FSR2H
heinrichsweikamp
parents:
diff changeset
154
heinrichsweikamp
parents:
diff changeset
155 movff opt_default+0,FSR1L ; Get handle to multi-lingual text in FSR1
heinrichsweikamp
parents:
diff changeset
156 movff opt_default+1,FSR1H
heinrichsweikamp
parents:
diff changeset
157
heinrichsweikamp
parents:
diff changeset
158 movff TBLPTRL,opt_backup_tbl+0; TBLPTR trashed by text routine...
heinrichsweikamp
parents:
diff changeset
159 movff TBLPTRH,opt_backup_tbl+1
heinrichsweikamp
parents:
diff changeset
160 movff TBLPTRU,opt_backup_tbl+2
heinrichsweikamp
parents:
diff changeset
161
heinrichsweikamp
parents:
diff changeset
162 call strcat_text ; Copy translated text to FSR2
heinrichsweikamp
parents:
diff changeset
163
heinrichsweikamp
parents:
diff changeset
164 movff opt_backup_tbl+0,TBLPTRL
heinrichsweikamp
parents:
diff changeset
165 movff opt_backup_tbl+1,TBLPTRH
heinrichsweikamp
parents:
diff changeset
166 movff opt_backup_tbl+2,TBLPTRU
heinrichsweikamp
parents:
diff changeset
167
heinrichsweikamp
parents:
diff changeset
168 return
heinrichsweikamp
parents:
diff changeset
169
heinrichsweikamp
parents:
diff changeset
170 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
171 ; Save all options to EEPROM
heinrichsweikamp
parents:
diff changeset
172 option_save_all:
heinrichsweikamp
parents:
diff changeset
173 ;---- Save option serial into EEPROM to detect reset and new version
heinrichsweikamp
parents:
diff changeset
174 movlw LOW(eeprom_serial_save)
heinrichsweikamp
parents:
diff changeset
175 movwf EEADR
heinrichsweikamp
parents:
diff changeset
176 movlw HIGH(eeprom_serial_save)
heinrichsweikamp
parents:
diff changeset
177 movf EEADRH
heinrichsweikamp
parents:
diff changeset
178 movlw LOW(eeprom_opt_serial)
heinrichsweikamp
parents:
diff changeset
179 movwf EEDATA
heinrichsweikamp
parents:
diff changeset
180 call write_eeprom
heinrichsweikamp
parents:
diff changeset
181 incf EEADR,F
heinrichsweikamp
parents:
diff changeset
182 movlw HIGH(eeprom_opt_serial)
heinrichsweikamp
parents:
diff changeset
183 movwf EEDATA
heinrichsweikamp
parents:
diff changeset
184 call write_eeprom
heinrichsweikamp
parents:
diff changeset
185
heinrichsweikamp
parents:
diff changeset
186 ;---- Save all options
heinrichsweikamp
parents:
diff changeset
187 movlw LOW(option_table_begin)
heinrichsweikamp
parents:
diff changeset
188 movwf FSR0L
heinrichsweikamp
parents:
diff changeset
189 movlw HIGH(option_table_begin)
heinrichsweikamp
parents:
diff changeset
190 movwf FSR0H
heinrichsweikamp
parents:
diff changeset
191
heinrichsweikamp
parents:
diff changeset
192 option_save_all_1:
heinrichsweikamp
parents:
diff changeset
193 movf FSR0L,W ; Reached end of table ?
heinrichsweikamp
parents:
diff changeset
194 xorlw LOW(option_table_end) ; (8bit test -> 10 bytes x 128 options max)
heinrichsweikamp
parents:
diff changeset
195 btfsc STATUS,Z ; YES: done.
heinrichsweikamp
parents:
diff changeset
196 return
heinrichsweikamp
parents:
diff changeset
197
heinrichsweikamp
parents:
diff changeset
198 rcall option_save ; Save one option.
heinrichsweikamp
parents:
diff changeset
199 bra option_save_all_1 ; and loop.
heinrichsweikamp
parents:
diff changeset
200
heinrichsweikamp
parents:
diff changeset
201 option_save:
heinrichsweikamp
parents:
diff changeset
202 rcall option_read
heinrichsweikamp
parents:
diff changeset
203 incf opt_eeprom,W ; Should we save it ?
heinrichsweikamp
parents:
diff changeset
204 btfsc STATUS,Z ; eeprom address is FFh ?
heinrichsweikamp
parents:
diff changeset
205 return ; YES: nothing to do.
heinrichsweikamp
parents:
diff changeset
206
heinrichsweikamp
parents:
diff changeset
207 movf opt_eeprom,W ; Compute backup address in EEPROM
heinrichsweikamp
parents:
diff changeset
208 addlw LOW(eeprom_opt_backup) ; Add offset
heinrichsweikamp
parents:
diff changeset
209 movwf EEADR
heinrichsweikamp
parents:
diff changeset
210 movlw HIGH(eeprom_opt_backup)
heinrichsweikamp
parents:
diff changeset
211 movwf EEADRH
heinrichsweikamp
parents:
diff changeset
212
heinrichsweikamp
parents:
diff changeset
213 movf opt_type,W ; Option type is string ?
heinrichsweikamp
parents:
diff changeset
214 xorlw 2
heinrichsweikamp
parents:
diff changeset
215 bz option_save_string
heinrichsweikamp
parents:
diff changeset
216
heinrichsweikamp
parents:
diff changeset
217 ; One byte to save to eeprom
heinrichsweikamp
parents:
diff changeset
218 movff INDF1,EEDATA
heinrichsweikamp
parents:
diff changeset
219 goto write_eeprom
heinrichsweikamp
parents:
diff changeset
220
heinrichsweikamp
parents:
diff changeset
221 option_save_string:
heinrichsweikamp
parents:
diff changeset
222 movff POSTINC1,EEDATA ; Write one byte
heinrichsweikamp
parents:
diff changeset
223 call write_eeprom
heinrichsweikamp
parents:
diff changeset
224 infsnz EEADR,F
heinrichsweikamp
parents:
diff changeset
225 incf EEADRH,F
heinrichsweikamp
parents:
diff changeset
226
heinrichsweikamp
parents:
diff changeset
227 decfsz opt_max ; Decrement string length
heinrichsweikamp
parents:
diff changeset
228 bra option_save_string ; And loop while not finished
heinrichsweikamp
parents:
diff changeset
229
heinrichsweikamp
parents:
diff changeset
230 return
heinrichsweikamp
parents:
diff changeset
231 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
232
heinrichsweikamp
parents:
diff changeset
233 option_restore_all:
heinrichsweikamp
parents:
diff changeset
234 ;---- Read option serial from EEPROM
heinrichsweikamp
parents:
diff changeset
235 movlw LOW(eeprom_serial_save)
heinrichsweikamp
parents:
diff changeset
236 movwf EEADR
heinrichsweikamp
parents:
diff changeset
237 movlw HIGH(eeprom_serial_save)
heinrichsweikamp
parents:
diff changeset
238 movf EEADRH
heinrichsweikamp
parents:
diff changeset
239 call read_eeprom
heinrichsweikamp
parents:
diff changeset
240 movlw LOW(eeprom_opt_serial)
heinrichsweikamp
parents:
diff changeset
241 xorwf EEDATA,W
heinrichsweikamp
parents:
diff changeset
242 bnz option_restore_bad ; Auto reset if changed.
heinrichsweikamp
parents:
diff changeset
243 incf EEADR,F
heinrichsweikamp
parents:
diff changeset
244 call read_eeprom
heinrichsweikamp
parents:
diff changeset
245 movlw HIGH(eeprom_opt_serial)
heinrichsweikamp
parents:
diff changeset
246 xorwf EEDATA,W
heinrichsweikamp
parents:
diff changeset
247 bz option_restore_ok ; Auto reset if changed.
heinrichsweikamp
parents:
diff changeset
248
heinrichsweikamp
parents:
diff changeset
249 option_restore_bad:
heinrichsweikamp
parents:
diff changeset
250 call option_reset_all ; Reset RAM contains
heinrichsweikamp
parents:
diff changeset
251 goto option_save_all ; Then save to EEPROM
heinrichsweikamp
parents:
diff changeset
252
heinrichsweikamp
parents:
diff changeset
253 ;---- Proper restore
heinrichsweikamp
parents:
diff changeset
254 option_restore_ok:
heinrichsweikamp
parents:
diff changeset
255 movlw LOW(option_table_begin)
heinrichsweikamp
parents:
diff changeset
256 movwf FSR0L
heinrichsweikamp
parents:
diff changeset
257 movlw HIGH(option_table_begin)
heinrichsweikamp
parents:
diff changeset
258 movwf FSR0H
heinrichsweikamp
parents:
diff changeset
259
heinrichsweikamp
parents:
diff changeset
260 option_restore_all_1:
heinrichsweikamp
parents:
diff changeset
261 movf FSR0L,W ; Reached end of table ?
heinrichsweikamp
parents:
diff changeset
262 xorlw LOW(option_table_end) ; (8bit test -> 10 bytes x 128 options max)
heinrichsweikamp
parents:
diff changeset
263 btfsc STATUS,Z ; YES: done.
heinrichsweikamp
parents:
diff changeset
264 return
heinrichsweikamp
parents:
diff changeset
265
heinrichsweikamp
parents:
diff changeset
266 rcall option_restore ; Restore one option.
heinrichsweikamp
parents:
diff changeset
267 bra option_restore_all_1 ; and loop.
heinrichsweikamp
parents:
diff changeset
268 return
heinrichsweikamp
parents:
diff changeset
269
heinrichsweikamp
parents:
diff changeset
270 option_restore:
heinrichsweikamp
parents:
diff changeset
271 rcall option_read
heinrichsweikamp
parents:
diff changeset
272 incf opt_eeprom,W ; Should we save it ?
heinrichsweikamp
parents:
diff changeset
273 btfsc STATUS,Z ; eeprom address is FFh ?
heinrichsweikamp
parents:
diff changeset
274 return ; YES: nothing to do.
heinrichsweikamp
parents:
diff changeset
275
heinrichsweikamp
parents:
diff changeset
276 movf opt_eeprom,W ; Compute backup address in EEPROM
heinrichsweikamp
parents:
diff changeset
277 addlw LOW(eeprom_opt_backup) ; Add offset
heinrichsweikamp
parents:
diff changeset
278 movwf EEADR
heinrichsweikamp
parents:
diff changeset
279 movlw HIGH(eeprom_opt_backup)
heinrichsweikamp
parents:
diff changeset
280 movwf EEADRH
heinrichsweikamp
parents:
diff changeset
281
heinrichsweikamp
parents:
diff changeset
282 movf opt_type,W ; Option type is string ?
heinrichsweikamp
parents:
diff changeset
283 xorlw 2
heinrichsweikamp
parents:
diff changeset
284 bz option_restore_string
heinrichsweikamp
parents:
diff changeset
285
heinrichsweikamp
parents:
diff changeset
286 ; Read one byte from eeprom
heinrichsweikamp
parents:
diff changeset
287 call read_eeprom
heinrichsweikamp
parents:
diff changeset
288 movff EEDATA, INDF1 ; And restore option register.
heinrichsweikamp
parents:
diff changeset
289 return
heinrichsweikamp
parents:
diff changeset
290
heinrichsweikamp
parents:
diff changeset
291 option_restore_string:
heinrichsweikamp
parents:
diff changeset
292 call read_eeprom ; Read one byte, and
heinrichsweikamp
parents:
diff changeset
293 movff EEDATA,POSTINC1 ; restore it
heinrichsweikamp
parents:
diff changeset
294 infsnz EEADR,F
heinrichsweikamp
parents:
diff changeset
295 incf EEADRH,F
heinrichsweikamp
parents:
diff changeset
296
heinrichsweikamp
parents:
diff changeset
297 decfsz opt_max ; Decrement string length
heinrichsweikamp
parents:
diff changeset
298 bra option_restore_string ; And loop while not finished
heinrichsweikamp
parents:
diff changeset
299 return
heinrichsweikamp
parents:
diff changeset
300
heinrichsweikamp
parents:
diff changeset
301 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
302 ; Increment an option, based on type, and boundary.
heinrichsweikamp
parents:
diff changeset
303 ; INPUT: FSR0 = option handle
heinrichsweikamp
parents:
diff changeset
304 ; OUTPUT: none
heinrichsweikamp
parents:
diff changeset
305 ; TRASH: TBLPTR, TABLAT, WREG, FSR0, FSR1
heinrichsweikamp
parents:
diff changeset
306 option_inc:
heinrichsweikamp
parents:
diff changeset
307 ; Read type, default and register from table
heinrichsweikamp
parents:
diff changeset
308 rcall option_read
heinrichsweikamp
parents:
diff changeset
309
heinrichsweikamp
parents:
diff changeset
310 ; Switch on type
heinrichsweikamp
parents:
diff changeset
311 movf opt_type,W
heinrichsweikamp
parents:
diff changeset
312 bz option_inc_uint8
heinrichsweikamp
parents:
diff changeset
313 dcfsnz WREG
heinrichsweikamp
parents:
diff changeset
314 bra option_inc_enum8
heinrichsweikamp
parents:
diff changeset
315 dcfsnz WREG
heinrichsweikamp
parents:
diff changeset
316 bra option_inc_string
heinrichsweikamp
parents:
diff changeset
317
heinrichsweikamp
parents:
diff changeset
318 option_inc_uint8: ; Defaults type too...
heinrichsweikamp
parents:
diff changeset
319 movf INDF1,W
heinrichsweikamp
parents:
diff changeset
320 addwf opt_inc,W
heinrichsweikamp
parents:
diff changeset
321 cpfslt opt_max
heinrichsweikamp
parents:
diff changeset
322 bra option_inc_1
heinrichsweikamp
parents:
diff changeset
323 movf opt_min,W
heinrichsweikamp
parents:
diff changeset
324 option_inc_1:
heinrichsweikamp
parents:
diff changeset
325 movwf INDF1
heinrichsweikamp
parents:
diff changeset
326 return
heinrichsweikamp
parents:
diff changeset
327
heinrichsweikamp
parents:
diff changeset
328 option_inc_enum8: ; Always +1
heinrichsweikamp
parents:
diff changeset
329 incf INDF1,W
heinrichsweikamp
parents:
diff changeset
330 cpfsgt opt_max
heinrichsweikamp
parents:
diff changeset
331 clrf WREG
heinrichsweikamp
parents:
diff changeset
332 movwf INDF1
heinrichsweikamp
parents:
diff changeset
333 return
heinrichsweikamp
parents:
diff changeset
334
heinrichsweikamp
parents:
diff changeset
335 option_inc_string: ; No edition yet...
heinrichsweikamp
parents:
diff changeset
336 return
heinrichsweikamp
parents:
diff changeset
337
heinrichsweikamp
parents:
diff changeset
338 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
339 ; Strcat option into FSR2 buffer.
heinrichsweikamp
parents:
diff changeset
340 option_draw:
heinrichsweikamp
parents:
diff changeset
341 ; Read type, default and register from table
heinrichsweikamp
parents:
diff changeset
342 rcall option_read
heinrichsweikamp
parents:
diff changeset
343
heinrichsweikamp
parents:
diff changeset
344 ; Switch on type
heinrichsweikamp
parents:
diff changeset
345 movf opt_type,W
heinrichsweikamp
parents:
diff changeset
346 bz option_draw_uint8
heinrichsweikamp
parents:
diff changeset
347 dcfsnz WREG
heinrichsweikamp
parents:
diff changeset
348 bra option_draw_enum8
heinrichsweikamp
parents:
diff changeset
349 dcfsnz WREG
heinrichsweikamp
parents:
diff changeset
350 bra option_draw_string
heinrichsweikamp
parents:
diff changeset
351 return ; Unknown: return...
heinrichsweikamp
parents:
diff changeset
352
heinrichsweikamp
parents:
diff changeset
353 option_draw_uint8:
heinrichsweikamp
parents:
diff changeset
354 movff INDF1,lo ; Draw value.
heinrichsweikamp
parents:
diff changeset
355 output_8
heinrichsweikamp
parents:
diff changeset
356 clrf INDF2 ; Make sure to close string...
heinrichsweikamp
parents:
diff changeset
357
heinrichsweikamp
parents:
diff changeset
358 btfsc settime_setdate ; In the Set Time or Set Date menu?
heinrichsweikamp
parents:
diff changeset
359 return ; Yes, ignore the rest
heinrichsweikamp
parents:
diff changeset
360
heinrichsweikamp
parents:
diff changeset
361 movf opt_unit+0,W ; Is there a unit to append ?
heinrichsweikamp
parents:
diff changeset
362 iorwf opt_unit+1,W
heinrichsweikamp
parents:
diff changeset
363 rcall option_draw_unit
heinrichsweikamp
parents:
diff changeset
364
heinrichsweikamp
parents:
diff changeset
365 movf opt_default,W ; Default value
heinrichsweikamp
parents:
diff changeset
366 cpfseq lo ; Current value
heinrichsweikamp
parents:
diff changeset
367 bra option_draw_uint8_2 ; Not default, add *
heinrichsweikamp
parents:
diff changeset
368 return ; Default, Done.
heinrichsweikamp
parents:
diff changeset
369 option_draw_uint8_2:
heinrichsweikamp
parents:
diff changeset
370 PUTC "*"
heinrichsweikamp
parents:
diff changeset
371 return ; Done.
heinrichsweikamp
parents:
diff changeset
372
heinrichsweikamp
parents:
diff changeset
373 option_draw_unit:
heinrichsweikamp
parents:
diff changeset
374 movff opt_unit+0,FSR1L
heinrichsweikamp
parents:
diff changeset
375 movff opt_unit+1,FSR1H
heinrichsweikamp
parents:
diff changeset
376 goto strcat_text
heinrichsweikamp
parents:
diff changeset
377
heinrichsweikamp
parents:
diff changeset
378
heinrichsweikamp
parents:
diff changeset
379
heinrichsweikamp
parents:
diff changeset
380 ;---- Draw an enumerated value (set of translated strings)
heinrichsweikamp
parents:
diff changeset
381 option_draw_enum8:
heinrichsweikamp
parents:
diff changeset
382 movf INDF1,W ; Get current value.
heinrichsweikamp
parents:
diff changeset
383 cpfsgt opt_max ; Bound value
heinrichsweikamp
parents:
diff changeset
384 clrf WREG
heinrichsweikamp
parents:
diff changeset
385 addwf WREG ; *= 2
heinrichsweikamp
parents:
diff changeset
386 addwf opt_inc,W ; Base text + 2 * value
heinrichsweikamp
parents:
diff changeset
387 movwf FSR1L
heinrichsweikamp
parents:
diff changeset
388 movlw 0
heinrichsweikamp
parents:
diff changeset
389 addwfc opt_min,W ; Propagate carry
heinrichsweikamp
parents:
diff changeset
390 movwf FSR1H ; Into FSR1
heinrichsweikamp
parents:
diff changeset
391
heinrichsweikamp
parents:
diff changeset
392 goto strcat_text
heinrichsweikamp
parents:
diff changeset
393
heinrichsweikamp
parents:
diff changeset
394 option_draw_string:
heinrichsweikamp
parents:
diff changeset
395 movff POSTINC1,POSTINC2
heinrichsweikamp
parents:
diff changeset
396 decfsz opt_max
heinrichsweikamp
parents:
diff changeset
397 bra option_draw_string
heinrichsweikamp
parents:
diff changeset
398 return
heinrichsweikamp
parents:
diff changeset
399
heinrichsweikamp
parents:
diff changeset
400 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
401 ; Options Tables
heinrichsweikamp
parents:
diff changeset
402
heinrichsweikamp
parents:
diff changeset
403 OPTION_UINT8 MACRO lbl, min, max, default, unit, eeprom, register
heinrichsweikamp
parents:
diff changeset
404 global lbl
heinrichsweikamp
parents:
diff changeset
405 lbl: db 0, default ; Type0 = INT8
heinrichsweikamp
parents:
diff changeset
406 db 1, min
heinrichsweikamp
parents:
diff changeset
407 db max, eeprom
heinrichsweikamp
parents:
diff changeset
408 dw unit
heinrichsweikamp
parents:
diff changeset
409 dw register
heinrichsweikamp
parents:
diff changeset
410 ENDM
heinrichsweikamp
parents:
diff changeset
411
heinrichsweikamp
parents:
diff changeset
412 OPTION_UINT8p2 MACRO lbl, min, max, default, unit, eeprom, register
heinrichsweikamp
parents:
diff changeset
413 global lbl
heinrichsweikamp
parents:
diff changeset
414 lbl: db 0, default ; Type0 = INT8
heinrichsweikamp
parents:
diff changeset
415 db 2, min
heinrichsweikamp
parents:
diff changeset
416 db max, eeprom
heinrichsweikamp
parents:
diff changeset
417 dw unit
heinrichsweikamp
parents:
diff changeset
418 dw register
heinrichsweikamp
parents:
diff changeset
419 ENDM
heinrichsweikamp
parents:
diff changeset
420
heinrichsweikamp
parents:
diff changeset
421 OPTION_UINT8p3 MACRO lbl, min, max, default, unit, eeprom, register
heinrichsweikamp
parents:
diff changeset
422 global lbl
heinrichsweikamp
parents:
diff changeset
423 lbl: db 0, default ; Type0 = INT8
heinrichsweikamp
parents:
diff changeset
424 db 3, min
heinrichsweikamp
parents:
diff changeset
425 db max, eeprom
heinrichsweikamp
parents:
diff changeset
426 dw unit
heinrichsweikamp
parents:
diff changeset
427 dw register
heinrichsweikamp
parents:
diff changeset
428 ENDM
heinrichsweikamp
parents:
diff changeset
429
heinrichsweikamp
parents:
diff changeset
430 OPTION_UINT8p10 MACRO lbl, min, max, default, unit, eeprom, register
heinrichsweikamp
parents:
diff changeset
431 global lbl
heinrichsweikamp
parents:
diff changeset
432 lbl: db 0, default ; Type0 = INT8
heinrichsweikamp
parents:
diff changeset
433 db .10, min
heinrichsweikamp
parents:
diff changeset
434 db max, eeprom
heinrichsweikamp
parents:
diff changeset
435 dw unit
heinrichsweikamp
parents:
diff changeset
436 dw register
heinrichsweikamp
parents:
diff changeset
437 ENDM
heinrichsweikamp
parents:
diff changeset
438
heinrichsweikamp
parents:
diff changeset
439 OPTION_ENUM8 MACRO lbl, max, default, tValue, eeprom, register
heinrichsweikamp
parents:
diff changeset
440 global lbl
heinrichsweikamp
parents:
diff changeset
441 extern tValue
heinrichsweikamp
parents:
diff changeset
442 lbl: db 1, default ; Type1 = ENUM
heinrichsweikamp
parents:
diff changeset
443 db LOW(tValue), HIGH(tValue)
heinrichsweikamp
parents:
diff changeset
444 db max, eeprom
heinrichsweikamp
parents:
diff changeset
445 dw 0 ; No unit
heinrichsweikamp
parents:
diff changeset
446 dw register
heinrichsweikamp
parents:
diff changeset
447 ENDM
heinrichsweikamp
parents:
diff changeset
448
heinrichsweikamp
parents:
diff changeset
449 OPTION_BOOL MACRO lbl, default, eeprom, register
heinrichsweikamp
parents:
diff changeset
450 OPTION_ENUM8 lbl, 2, default, tNo, eeprom, register
heinrichsweikamp
parents:
diff changeset
451 ENDM
heinrichsweikamp
parents:
diff changeset
452
heinrichsweikamp
parents:
diff changeset
453
heinrichsweikamp
parents:
diff changeset
454 OPTION_STRING MACRO lbl, length, defText, eeprom, register
heinrichsweikamp
parents:
diff changeset
455 global lbl
heinrichsweikamp
parents:
diff changeset
456 lbl: db 2, LOW(defText) ; Type2 = STRING
heinrichsweikamp
parents:
diff changeset
457 db HIGH(defText), 0
heinrichsweikamp
parents:
diff changeset
458 db length, eeprom
heinrichsweikamp
parents:
diff changeset
459 dw 0 ; No unit
heinrichsweikamp
parents:
diff changeset
460 dw register
heinrichsweikamp
parents:
diff changeset
461 ENDM
heinrichsweikamp
parents:
diff changeset
462
heinrichsweikamp
parents:
diff changeset
463 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
464 ; Option table
heinrichsweikamp
parents:
diff changeset
465 ; OPTION_UINT8 Label, min, max, default, text-string, EEPROM location (-1 for RAM only), RAM location
heinrichsweikamp
parents:
diff changeset
466
heinrichsweikamp
parents:
diff changeset
467 ; Manage Gas List.
heinrichsweikamp
parents:
diff changeset
468 extern tPercent, tMeters, tMinutes, tGasDisabled, tbar
heinrichsweikamp
parents:
diff changeset
469
heinrichsweikamp
parents:
diff changeset
470 option_table_begin:
heinrichsweikamp
parents:
diff changeset
471 extern char_I_deco_gas_change, char_I_setpoint_change, char_I_setpoint_cbar, char_I_dil_change
heinrichsweikamp
parents:
diff changeset
472 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
473 ; Manage Decoplaner & Dive parameters
heinrichsweikamp
parents:
diff changeset
474
heinrichsweikamp
parents:
diff changeset
475 extern char_I_dive_interval, char_I_bottom_time, char_I_bottom_depth
heinrichsweikamp
parents:
diff changeset
476 OPTION_UINT8p10 odiveInterval, .0, .240, .0, tMinutes, -1, char_I_dive_interval
heinrichsweikamp
parents:
diff changeset
477 OPTION_UINT8p2 obottomTime, .1, .60, .5, tMinutes, -1, char_I_bottom_time
heinrichsweikamp
parents:
diff changeset
478 OPTION_UINT8p3 obottomDepth, .12,.120, .21, tMeters, -1, char_I_bottom_depth
heinrichsweikamp
parents:
diff changeset
479
heinrichsweikamp
parents:
diff changeset
480 extern char_I_deco_model, char_I_saturation_multiplier, char_I_desaturation_multiplier
heinrichsweikamp
parents:
diff changeset
481 OPTION_ENUM8 oDiveMode, 4, 0, tDvOC, .8, opt_dive_mode
heinrichsweikamp
parents:
diff changeset
482 OPTION_ENUM8 oDecoMode, 2, 1, tZHL16, .9, char_I_deco_model
heinrichsweikamp
parents:
diff changeset
483 OPTION_UINT8p10 oPPO2Max, .120, ppo2_warning_high, .160, 0, .10, opt_ppO2_max
heinrichsweikamp
parents:
diff changeset
484 OPTION_UINT8 oLastDeco, .3, .6, .3, tMeters, .11, opt_last_stop
heinrichsweikamp
parents:
diff changeset
485 OPTION_UINT8 oGF_low, .10, .100, .40, tPercent, .12, opt_GF_low
heinrichsweikamp
parents:
diff changeset
486 OPTION_UINT8 oGF_high, .70, .110, .85, tPercent, .13, opt_GF_high
heinrichsweikamp
parents:
diff changeset
487 OPTION_UINT8p10 osatmult, .100, .140, .110,tPercent, .14, char_I_saturation_multiplier
heinrichsweikamp
parents:
diff changeset
488 OPTION_UINT8p10 odesatmult, .60, .100, .90,tPercent, .15, char_I_desaturation_multiplier
heinrichsweikamp
parents:
diff changeset
489 OPTION_UINT8p10 oPPO2Min, .16, ppo2_warning_low, .19, 0, .16, opt_ppO2_min
heinrichsweikamp
parents:
diff changeset
490 OPTION_UINT8 oaGF_low, .60, .100, .60, tPercent, .17, opt_aGF_low
heinrichsweikamp
parents:
diff changeset
491 OPTION_UINT8 oaGF_high, .80, .120, .85, tPercent, .18, opt_aGF_high
heinrichsweikamp
parents:
diff changeset
492 OPTION_BOOL oEnable_aGF, 1, .19, opt_enable_aGF ; =1: aGF can be selected underwater
heinrichsweikamp
parents:
diff changeset
493
heinrichsweikamp
parents:
diff changeset
494 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
495 ; Managing Settings
heinrichsweikamp
parents:
diff changeset
496 extern char_I_extra_time
heinrichsweikamp
parents:
diff changeset
497 OPTION_UINT8 oExtraTime, 0, .9, 5,tMinutes, .22, char_I_extra_time
heinrichsweikamp
parents:
diff changeset
498 OPTION_ENUM8 oBrightness, 3, 0, tEco, .23, opt_brightness
heinrichsweikamp
parents:
diff changeset
499 OPTION_UINT8 oDiveSalinity, 0, 4, 0, tPercent, .24, opt_salinity
heinrichsweikamp
parents:
diff changeset
500 OPTION_ENUM8 oCCRMode, 2, 0, tCCRModeFixedSP, .25, opt_ccr_mode
heinrichsweikamp
parents:
diff changeset
501 extern tDefName
heinrichsweikamp
parents:
diff changeset
502 OPTION_ENUM8 oLanguage, 4, 0, tEnglish, .26, opt_language
heinrichsweikamp
parents:
diff changeset
503 OPTION_ENUM8 oDateFormat, 3, 1, tDateformat,.27, opt_dateformat
heinrichsweikamp
parents:
diff changeset
504 OPTION_ENUM8 oUnits, 2, 0, tMetric, .28, opt_units ; 0=Meters, 1=Feets
heinrichsweikamp
parents:
diff changeset
505
heinrichsweikamp
parents:
diff changeset
506 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
507 ; Compass calibration data
heinrichsweikamp
parents:
diff changeset
508 OPTION_UINT8 oCalx0, 0,.255,.0, 0, .29, compass_CX_f+0
heinrichsweikamp
parents:
diff changeset
509 OPTION_UINT8 oCalx1, 0,.255,.0, 0, .30, compass_CX_f+1
heinrichsweikamp
parents:
diff changeset
510 OPTION_UINT8 oCaly0, 0,.255,.0, 0, .31, compass_CY_f+0
heinrichsweikamp
parents:
diff changeset
511 OPTION_UINT8 oCaly1, 0,.255,.0, 0, .32, compass_CY_f+1
heinrichsweikamp
parents:
diff changeset
512 OPTION_UINT8 oCalz0, 0,.255,.0, 0, .33, compass_CZ_f+0
heinrichsweikamp
parents:
diff changeset
513 OPTION_UINT8 oCalz1, 0,.255,.0, 0, .34, compass_CZ_f+1
heinrichsweikamp
parents:
diff changeset
514
heinrichsweikamp
parents:
diff changeset
515 OPTION_ENUM8 oGas1, 3, 1, tGasDisabled, .35, opt_gas_type+0; 0=Disabled, 1=First, 2=Travel, 3=Deco
heinrichsweikamp
parents:
diff changeset
516 OPTION_ENUM8 oGas2, 3, 0, tGasDisabled, .36, opt_gas_type+1
heinrichsweikamp
parents:
diff changeset
517 OPTION_ENUM8 oGas3, 3, 0, tGasDisabled, .37, opt_gas_type+2
heinrichsweikamp
parents:
diff changeset
518 OPTION_ENUM8 oGas4, 3, 0, tGasDisabled, .38, opt_gas_type+3
heinrichsweikamp
parents:
diff changeset
519 OPTION_ENUM8 oGas5, 3, 0, tGasDisabled, .39, opt_gas_type+4
heinrichsweikamp
parents:
diff changeset
520 OPTION_UINT8 oGas1O2, .21,.100, .21, tPercent, .40, opt_gas_O2_ratio+0
heinrichsweikamp
parents:
diff changeset
521 OPTION_UINT8 oGas1He, .1, .100, .0, tPercent, .41, opt_gas_He_ratio+0
heinrichsweikamp
parents:
diff changeset
522 OPTION_UINT8 oGas2O2, .21,.100, .21, tPercent, .42, opt_gas_O2_ratio+1
heinrichsweikamp
parents:
diff changeset
523 OPTION_UINT8 oGas2He, .1, .100, .0, tPercent, .43, opt_gas_He_ratio+1
heinrichsweikamp
parents:
diff changeset
524 OPTION_UINT8 oGas3O2, .21,.100, .21, tPercent, .44, opt_gas_O2_ratio+2
heinrichsweikamp
parents:
diff changeset
525 OPTION_UINT8 oGas3He, .1, .100, .0, tPercent, .45, opt_gas_He_ratio+2
heinrichsweikamp
parents:
diff changeset
526 OPTION_UINT8 oGas4O2, .21,.100, .21, tPercent, .46, opt_gas_O2_ratio+3
heinrichsweikamp
parents:
diff changeset
527 OPTION_UINT8 oGas4He, .1, .100, .0, tPercent, .47, opt_gas_He_ratio+3
heinrichsweikamp
parents:
diff changeset
528 OPTION_UINT8 oGas5O2, .21,.100, .21, tPercent, .48, opt_gas_O2_ratio+4
heinrichsweikamp
parents:
diff changeset
529 OPTION_UINT8 oGas5He, .1, .100, .0, tPercent, .49, opt_gas_He_ratio+4
heinrichsweikamp
parents:
diff changeset
530 OPTION_UINT8 oGas1Depth, .0, .100, .0, tMeters, .50, char_I_deco_gas_change+0
heinrichsweikamp
parents:
diff changeset
531 OPTION_UINT8 oGas2Depth, .0, .100, .0, tMeters, .51, char_I_deco_gas_change+1
heinrichsweikamp
parents:
diff changeset
532 OPTION_UINT8 oGas3Depth, .0, .100, .0, tMeters, .52, char_I_deco_gas_change+2
heinrichsweikamp
parents:
diff changeset
533 OPTION_UINT8 oGas4Depth, .0, .100, .0, tMeters, .53, char_I_deco_gas_change+3
heinrichsweikamp
parents:
diff changeset
534 OPTION_UINT8 oGas5Depth, .0, .100, .0, tMeters, .54, char_I_deco_gas_change+4
heinrichsweikamp
parents:
diff changeset
535 OPTION_UINT8 oDil1O2, .21,.100, .21, tPercent, .55, opt_dil_O2_ratio+0
heinrichsweikamp
parents:
diff changeset
536 OPTION_UINT8 oDil1He, .1, .100, .0, tPercent, .56, opt_dil_He_ratio+0
heinrichsweikamp
parents:
diff changeset
537 OPTION_UINT8 oDil2O2, .21,.100, .21, tPercent, .57, opt_dil_O2_ratio+1
heinrichsweikamp
parents:
diff changeset
538 OPTION_UINT8 oDil2He, .1, .100, .0, tPercent, .58, opt_dil_He_ratio+1
heinrichsweikamp
parents:
diff changeset
539 OPTION_UINT8 oDil3O2, .21,.100, .21, tPercent, .59, opt_dil_O2_ratio+2
heinrichsweikamp
parents:
diff changeset
540 OPTION_UINT8 oDil3He, .1, .100, .0, tPercent, .60, opt_dil_He_ratio+2
heinrichsweikamp
parents:
diff changeset
541 OPTION_UINT8 oDil4O2, .21,.100, .21, tPercent, .61, opt_dil_O2_ratio+3
heinrichsweikamp
parents:
diff changeset
542 OPTION_UINT8 oDil4He, .1, .100, .0, tPercent, .62, opt_dil_He_ratio+3
heinrichsweikamp
parents:
diff changeset
543 OPTION_UINT8 oDil5O2, .21,.100, .21, tPercent, .63, opt_dil_O2_ratio+4
heinrichsweikamp
parents:
diff changeset
544 OPTION_UINT8 oDil5He, .1, .100, .0, tPercent, .64, opt_dil_He_ratio+4
heinrichsweikamp
parents:
diff changeset
545 OPTION_UINT8 oSetPoint1, .20, .160, .70, tbar, .65, char_I_setpoint_cbar+0
heinrichsweikamp
parents:
diff changeset
546 OPTION_UINT8 oSetPoint2, .20, .160, .90, tbar, .66, char_I_setpoint_cbar+1
heinrichsweikamp
parents:
diff changeset
547 OPTION_UINT8 oSetPoint3, .20, .160, .100, tbar, .67, char_I_setpoint_cbar+2
heinrichsweikamp
parents:
diff changeset
548 OPTION_UINT8 oSetPoint4, .20, .160, .120, tbar, .68, char_I_setpoint_cbar+3
heinrichsweikamp
parents:
diff changeset
549 OPTION_UINT8 oSetPoint5, .20, .160, .140, tbar, .69, char_I_setpoint_cbar+4
heinrichsweikamp
parents:
diff changeset
550 OPTION_UINT8 oSP1Depth, .0, .100, .0, tMeters, .70, char_I_setpoint_change+0
heinrichsweikamp
parents:
diff changeset
551 OPTION_UINT8 oSP2Depth, .0, .100, .0, tMeters, .71, char_I_setpoint_change+1
heinrichsweikamp
parents:
diff changeset
552 OPTION_UINT8 oSP3Depth, .0, .100, .0, tMeters, .72, char_I_setpoint_change+2
heinrichsweikamp
parents:
diff changeset
553 OPTION_UINT8 oSP4Depth, .0, .100, .0, tMeters, .73, char_I_setpoint_change+3
heinrichsweikamp
parents:
diff changeset
554 OPTION_UINT8 oSP5Depth, .0, .100, .0, tMeters, .74, char_I_setpoint_change+4
heinrichsweikamp
parents:
diff changeset
555 OPTION_ENUM8 oDil1, 2, 1, tDilDisabled, .75, opt_dil_type+0 ; 0=Disabled, 1=First, 2=Normal
heinrichsweikamp
parents:
diff changeset
556 OPTION_ENUM8 oDil2, 2, 0, tDilDisabled, .76, opt_dil_type+1
heinrichsweikamp
parents:
diff changeset
557 OPTION_ENUM8 oDil3, 2, 0, tDilDisabled, .77, opt_dil_type+2
heinrichsweikamp
parents:
diff changeset
558 OPTION_ENUM8 oDil4, 2, 0, tDilDisabled, .78, opt_dil_type+3
heinrichsweikamp
parents:
diff changeset
559 OPTION_ENUM8 oDil5, 2, 0, tDilDisabled, .79, opt_dil_type+4
heinrichsweikamp
parents:
diff changeset
560 OPTION_UINT8 oDil1Depth, .0, .100, .0, tMeters, .80, char_I_dil_change+0
heinrichsweikamp
parents:
diff changeset
561 OPTION_UINT8 oDil2Depth, .0, .100, .0, tMeters, .81, char_I_dil_change+1
heinrichsweikamp
parents:
diff changeset
562 OPTION_UINT8 oDil3Depth, .0, .100, .0, tMeters, .82, char_I_dil_change+2
heinrichsweikamp
parents:
diff changeset
563 OPTION_UINT8 oDil4Depth, .0, .100, .0, tMeters, .83, char_I_dil_change+3
heinrichsweikamp
parents:
diff changeset
564 OPTION_UINT8 oDil5Depth, .0, .100, .0, tMeters, .84, char_I_dil_change+4
heinrichsweikamp
parents:
diff changeset
565 OPTION_STRING oName, opt_name_length, tDefName, .85, opt_name
heinrichsweikamp
parents:
diff changeset
566 ; opt_name from 85 to 145
heinrichsweikamp
parents:
diff changeset
567
heinrichsweikamp
parents:
diff changeset
568
heinrichsweikamp
parents:
diff changeset
569 ; Set Time/Set Date
heinrichsweikamp
parents:
diff changeset
570 OPTION_UINT8 oSetHours, .0, .23, .0, 0, -1, hours
heinrichsweikamp
parents:
diff changeset
571 OPTION_UINT8 oSetMinutes, .0, .59, .0, 0, -1, mins
heinrichsweikamp
parents:
diff changeset
572 OPTION_UINT8 oSetDay, .1, .31, .0, 0, -1, day
heinrichsweikamp
parents:
diff changeset
573 OPTION_UINT8 oSetMonth, .1, .12, .0, 0, -1, month
heinrichsweikamp
parents:
diff changeset
574 OPTION_UINT8 oSetYear, .13,.20, .0, 0, -1, year
heinrichsweikamp
parents:
diff changeset
575
heinrichsweikamp
parents:
diff changeset
576 option_table_end:
heinrichsweikamp
parents:
diff changeset
577 END