annotate src/option_table.asm @ 634:4050675965ea

3.10 stable release
author heinrichsweikamp
date Tue, 28 Apr 2020 17:34:31 +0200
parents 185ba2f91f59
children 1212d39c9f6f 7d8a4c60ec1a 5b7fe7777425
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
2 ;
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
3 ; File option_table.asm * combined next generation V3.09.4j
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
4 ;
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
5 ; The Option Table
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
6 ;
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
8 ;=============================================================================
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
9 ; HISTORY
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
10 ; 2014-08-03 : mH creation
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
11 ;
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
12
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
13 #include "hwos.inc"
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
14
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
15
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
16 ;=============================================================================
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
17 option_table CODE 0x08000 ; ! DO NOT CHANGE - Option Table must fit 0x08xxx !
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
18 ;=============================================================================
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
19
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
20
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
21 OPTION_UINT8 MACRO lbl, min, max, default, unit, eeprom, serial, register
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
22 global lbl
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
23 lbl: db .0, serial ; type : 0 = INT8
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
24 db .1, min, max, default ; value : increment, min, max, default
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
25 dw unit, register, eeprom ; pointer: unit, variable, EEPROM
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 608
diff changeset
26 ENDM
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 608
diff changeset
27
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
28 OPTION_UINT8d MACRO lbl, min, max, default, unit, eeprom, serial, register
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
29 global lbl
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
30 lbl: db .3, serial ; type : 3 = INT8 with automatic display in meters or feet
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
31 db .1, min, max, default ; value : increment, min, max, default
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
32 dw unit, register, eeprom ; pointer: unit, variable, EEPROM
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
33 ENDM
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
34
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
35 OPTION_UINT8p2 MACRO lbl, min, max, default, unit, eeprom, serial, register
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
36 global lbl
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
37 lbl: db .0, serial ; type : 0 = INT8 with increment 2
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
38 db .2, min, max, default ; value : increment, min, max, default
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
39 dw unit, register, eeprom ; pointer: unit, variable, EEPROM
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
40 ENDM
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
41
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
42 OPTION_UINT8p3 MACRO lbl, min, max, default, unit, eeprom, serial, register
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
43 global lbl
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
44 lbl: db .0, serial ; type : 0 = INT8 with increment 3
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
45 db .3, min, max, default ; value : increment, min, max, default
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
46 dw unit, register, eeprom ; pointer: unit, variable, EEPROM
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 608
diff changeset
47 ENDM
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 608
diff changeset
48
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
49 OPTION_UINT8p3d MACRO lbl, min, max, default, unit, eeprom, serial, register
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 608
diff changeset
50 global lbl
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
51 lbl: db .3, serial ; type : 3 = INT8 with increment 3 and automatic display in meters or feet
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
52 db .3, min, max, default ; value : increment, min, max, default
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
53 dw unit, register, eeprom ; pointer: unit, variable, EEPROM
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
54 ENDM
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
55
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
56 OPTION_UINT8p5 MACRO lbl, min, max, default, unit, eeprom, serial, register
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
57 global lbl
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
58 lbl: db .0, serial ; type : 0 = INT8 with increment 5
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
59 db .5, min, max, default ; value : increment, min, max, default
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
60 dw unit, register, eeprom ; pointer: unit, variable, EEPROM
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
61 ENDM
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
62
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
63 OPTION_UINT8p10 MACRO lbl, min, max, default, unit, eeprom, serial, register
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
64 global lbl
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
65 lbl: db .0, serial ; type : 0 = INT8 with increment 10
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
66 db .10, min, max, default ; value : increment, min, max, default
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
67 dw unit, register, eeprom ; pointer: unit, variable, EEPROM
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
68 ENDM
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
69
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
70 OPTION_ENUM8 MACRO lbl, max, default, tValue, eeprom, serial, register
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
71 global lbl
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
72 extern tValue
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
73 lbl: db .1, serial ; type : 1 = ENUM
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
74 db LOW(tValue), HIGH(tValue) ; value : pointer to base text
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
75 db max-1, default ; value : max, default
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
76 dw .0, register, eeprom ; pointer: (no unit), variable, EEPROM
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
77 ENDM
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
78
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
79 OPTION_BOOL MACRO lbl, default, eeprom, serial, register
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
80 global lbl
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
81 extern tNo
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
82 lbl: db .1, serial ; type : 1 = ENUM
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
83 db LOW(tNo), HIGH(tNo) ; value : pointer to base of text "no"
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
84 db .2-1, default ; value : max, default
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
85 dw .0, register, eeprom ; pointer: (no unit), variable, EEPROM
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
86 ENDM
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
87
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
88 OPTION_STRING MACRO lbl, stringlength, defText, eeprom, serial, register
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
89 global lbl
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
90 lbl: db .2, serial ; type : 2 = STRING
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
91 db LOW(defText), HIGH(defText) ; value : pointer to default text
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
92 db stringlength, .0 ; value : length, (no default)
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
93 dw .0, register, eeprom ; pointer: (no unit), variable, EEPROM
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
94 ENDM
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
95
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
96 OPTION_END MACRO
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
97 db 0xFF, 0xFF ; type : 255 = end of table
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
98 ENDM
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
99
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
100 ;=============================================================================
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
101
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 608
diff changeset
102 extern tPercent, tMeters, tMinutes, tGasDisabled, tbar, tNo, tTrModeOff, tTrPresNone, tDefName, tblank, tLogTunitC, tTissuePresSat
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
103 extern char_I_bottom_time, char_I_bottom_depth
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
104 extern char_I_model
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
105 extern char_I_extra_time
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 608
diff changeset
106 extern char_I_SAC_work, char_I_SAC_deco, tLitersMinute
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
107 extern char_I_PSCR_drop, char_I_PSCR_lungratio
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 608
diff changeset
108 extern char_I_gas_avail_size, char_I_gas_avail_pres, tLiter, tbar10
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 608
diff changeset
109 extern char_I_CC_max_frac_O2
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
110 extern char_I_altitude_wait
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 608
diff changeset
111 extern char_I_ppO2_max_work, char_I_ppO2_min, char_I_ppO2_max_deco, char_I_ppO2_min_loop
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
112 extern char_I_descent_speed, tMeterMinute
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
113 extern char_I_gas_change_time
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
114 extern char_I_max_pres_diff
628
cd58f7fc86db 3.05 stable work
heinrichsweikamp
parents: 623
diff changeset
115 extern char_I_gas_density_att, char_I_gas_density_warn
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
116 extern char_I_dil_check
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
117
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
118 IFDEF _comm_debug
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
119 extern tCommTimeoutU
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
120 ENDIF
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
121
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
122 #DEFINE nounit 0x0000 ; no unit text associated
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
123 #DEFINE volatile 0xFFFF ; not stored in EEPROM
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
124 #DEFINE nocomm 0x00 ; not accessible via RS232
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
125
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
126 ;=============================================================================
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
127
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
128 global option_table_begin
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
129 option_table_begin:
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
130
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
131 ; Option Table - Format:
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
132 ; ----------------------
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
133 ; OPTION_UINT8 Label, min, max, default, unit text, EEPROM, serial, RAM location
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
134 ; OPTION_ENUM8 Label, number of ENUMS, default, unit text, EEPROM, serial, RAM location ; number of enums = 2, 3, ..., default starts with 0
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
135 ; OPTION_BOOL Label, default, EEPROM, serial, RAM location
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
136
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
137 ; Manage Deco Planer & Dive Parameters
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
138 OPTION_ENUM8 oDiveMode, .5, .0, tDvOC, 0x01A, 0x20, opt_dive_mode ; 0=OC, 1=CC, 2=Gauge, 3=Apnea, 4=PSCR
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
139 OPTION_ENUM8 oDecoMode, .2, .1, tZHL16, 0x01B, 0x21, char_I_model ; 0 = ZH-L16, 1 = ZH-L16-GF
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
140 ; 0x01C ; in use, see below
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
141 OPTION_UINT8d oLastDeco, .3, .6, .3, tMeters, 0x01D, 0x2C, opt_last_stop ; depth of the last deco stop
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
142 OPTION_UINT8 oGF_low, .10, .100, .30, tPercent, 0x01E, 0x25, opt_GF_low ; normal GF low
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
143 OPTION_UINT8 oGF_high, .45, .110, .85, tPercent, 0x01F, 0x26, opt_GF_high ; normal GF high
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
144 OPTION_UINT8p5 osatmultgf, .100, .140, .100, tPercent, 0x020, 0x5E, opt_sat_multiplier_gf ; saturation factor for GF mode
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
145 OPTION_UINT8p5 odesatmultgf, .60, .100, .100, tPercent, 0x021, 0x5F, opt_desat_multiplier_gf ; desaturation factor for GF mode
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
146 ; 0x022 ; in use, see below
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
147 OPTION_UINT8 oaGF_low, .10, .100, .30, tPercent, 0x023, 0x27, opt_aGF_low ; alternative GF low
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
148 OPTION_UINT8 oaGF_high, .45, .110, .85, tPercent, 0x024, 0x28, opt_aGF_high ; alternative GF high
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
149 OPTION_BOOL oEnable_aGF, .0, 0x025, 0x29, opt_enable_aGF ; =1: aGF can be selected underwater
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
150 OPTION_UINT8 oCompassGain, .0, .7, .6, tMinutes, 0x026, 0x34, opt_compass_gain ; 0-7 (230 LSB/Gauss to 1370LSB/Gauss)
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
151 OPTION_ENUM8 oSamplingRate, .2, .0, tSetSeconds, 0x027, 0x2F, opt_sampling_rate ; =1: 10s, =0: 2s
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
152
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
153 ; Managing Settings
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
154 OPTION_UINT8 oExtraTime, .0, .9, .0, tMinutes, 0x028, 0x24, char_I_extra_time ; extra bottom time for future TTS calculation
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
155 OPTION_ENUM8 oBrightness, .3, .0, tEco, 0x029, 0x2D, opt_brightness ; =0: Eco, =1:Medium, =2:Full
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
156 OPTION_UINT8 oDiveSalinity, salinity_min, salinity_max, .0, tPercent, 0x02A, 0x30, opt_salinity ; 0-4%
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
157 OPTION_ENUM8 oCCRMode, .3, .0, tCCRModeFixedSP, 0x02B, 0x1F, opt_ccr_mode ; =0: Fixed SP, =1: Sensor, =2: Auto SP
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
158 OPTION_ENUM8 oLanguage, .2, .0, tLang1, 0x02C, 0x32, opt_language ; language selection
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
159 OPTION_ENUM8 oDateFormat, .3, .1, tDateformat, 0x02D, 0x33, opt_dateformat ; =0:MMDDYY, =1:DDMMYY, =2:YYMMDD
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
160 OPTION_ENUM8 oUnits, .2, .0, tMetric, 0x02E, 0x2E, opt_units ; =0:Meter, =1:Feet
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
161
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
162 ; Compass calibration data
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
163 OPTION_UINT8 oCalx0, .0, .255, .0, nounit, 0x02F, nocomm, compass_CX_f+0 ; compass calibration data x, low byte
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
164 OPTION_UINT8 oCalx1, .0, .255, .0, nounit, 0x030, nocomm, compass_CX_f+1 ; x, high byte
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
165 OPTION_UINT8 oCaly0, .0, .255, .0, nounit, 0x031, nocomm, compass_CY_f+0 ; y, low byte
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
166 OPTION_UINT8 oCaly1, .0, .255, .0, nounit, 0x032, nocomm, compass_CY_f+1 ; y, high byte
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
167 OPTION_UINT8 oCalz0, .0, .255, .0, nounit, 0x033, nocomm, compass_CZ_f+0 ; z, low byte
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
168 OPTION_UINT8 oCalz1, .0, .255, .0, nounit, 0x034, nocomm, compass_CZ_f+1 ; z, high byte
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
169
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
170 ; Gas list
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
171 OPTION_ENUM8 oGas1, num_gas_types, .1, tGasDisabled, 0x035, nocomm, opt_gas_type+0 ; gas type: 0=Disabled, 1=First, 2=Travel, 3=Deco
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
172 OPTION_ENUM8 oGas2, num_gas_types, .0, tGasDisabled, 0x036, nocomm, opt_gas_type+1
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
173 OPTION_ENUM8 oGas3, num_gas_types, .0, tGasDisabled, 0x037, nocomm, opt_gas_type+2
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
174 OPTION_ENUM8 oGas4, num_gas_types, .0, tGasDisabled, 0x038, nocomm, opt_gas_type+3
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
175 OPTION_ENUM8 oGas5, num_gas_types, .0, tGasDisabled, 0x039, nocomm, opt_gas_type+4
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
176 OPTION_ENUM8 oDil1, num_dil_types, .1, tGasDisabled, 0x05D, nocomm, opt_dil_type+0 ; diluent type: 0=Disabled, 1=First, 2=Normal
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
177 OPTION_ENUM8 oDil2, num_dil_types, .0, tGasDisabled, 0x05E, nocomm, opt_dil_type+1
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
178 OPTION_ENUM8 oDil3, num_dil_types, .0, tGasDisabled, 0x05F, nocomm, opt_dil_type+2
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
179 OPTION_ENUM8 oDil4, num_dil_types, .0, tGasDisabled, 0x060, nocomm, opt_dil_type+3
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
180 OPTION_ENUM8 oDil5, num_dil_types, .0, tGasDisabled, 0x061, nocomm, opt_dil_type+4
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
181
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
182 OPTION_UINT8 oGas1O2, gaslist_min_o2, gaslist_max_o2, .21, tPercent, 0x03A, 0xFA, opt_gas_O2_ratio+0 ; O2 % of gas 1
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
183 OPTION_UINT8 oGas2O2, gaslist_min_o2, gaslist_max_o2, .21, tPercent, 0x03C, 0xFA, opt_gas_O2_ratio+1
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
184 OPTION_UINT8 oGas3O2, gaslist_min_o2, gaslist_max_o2, .21, tPercent, 0x03E, 0xFA, opt_gas_O2_ratio+2
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
185 OPTION_UINT8 oGas4O2, gaslist_min_o2, gaslist_max_o2, .21, tPercent, 0x040, 0xFA, opt_gas_O2_ratio+3
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
186 OPTION_UINT8 oGas5O2, gaslist_min_o2, gaslist_max_o2, .21, tPercent, 0x042, 0xFA, opt_gas_O2_ratio+4 ; O2 % of gas 5
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
187 OPTION_UINT8 oDil1O2, gaslist_min_o2, gaslist_max_o2, .21, tPercent, 0x049, 0xFA, opt_dil_O2_ratio+0 ; O2 % of diluent 1
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
188 OPTION_UINT8 oDil2O2, gaslist_min_o2, gaslist_max_o2, .21, tPercent, 0x04B, 0xFA, opt_dil_O2_ratio+1
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
189 OPTION_UINT8 oDil3O2, gaslist_min_o2, gaslist_max_o2, .21, tPercent, 0x04D, 0xFA, opt_dil_O2_ratio+2
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
190 OPTION_UINT8 oDil4O2, gaslist_min_o2, gaslist_max_o2, .21, tPercent, 0x04F, 0xFA, opt_dil_O2_ratio+3
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
191 OPTION_UINT8 oDil5O2, gaslist_min_o2, gaslist_max_o2, .21, tPercent, 0x051, 0xFA, opt_dil_O2_ratio+4 ; O2 % of diluent 5
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
192 OPTION_UINT8 oGas1He, .0, gaslist_max_He, .0, tPercent, 0x03B, 0xFB, opt_gas_He_ratio+0 ; He % of gas 1
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
193 OPTION_UINT8 oGas2He, .0, gaslist_max_He, .0, tPercent, 0x03D, 0xFB, opt_gas_He_ratio+1
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
194 OPTION_UINT8 oGas3He, .0, gaslist_max_He, .0, tPercent, 0x03F, 0xFB, opt_gas_He_ratio+2
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
195 OPTION_UINT8 oGas4He, .0, gaslist_max_He, .0, tPercent, 0x041, 0xFB, opt_gas_He_ratio+3
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
196 OPTION_UINT8 oGas5He, .0, gaslist_max_He, .0, tPercent, 0x043, 0xFB, opt_gas_He_ratio+4 ; He % of gas 5
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
197 OPTION_UINT8 oDil1He, .0, gaslist_max_He, .0, tPercent, 0x04A, 0xFB, opt_dil_He_ratio+0 ; He % of diluent 1
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
198 OPTION_UINT8 oDil2He, .0, gaslist_max_He, .0, tPercent, 0x04C, 0xFB, opt_dil_He_ratio+1
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
199 OPTION_UINT8 oDil3He, .0, gaslist_max_He, .0, tPercent, 0x04E, 0xFB, opt_dil_He_ratio+2
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
200 OPTION_UINT8 oDil4He, .0, gaslist_max_He, .0, tPercent, 0x050, 0xFB, opt_dil_He_ratio+3
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
201 OPTION_UINT8 oDil5He, .0, gaslist_max_He, .0, tPercent, 0x052, 0xFB, opt_dil_He_ratio+4 ; He % of diluent 5
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
202
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
203 OPTION_UINT8d oGas1Depth, .0, gaslist_max_change_depth, .56, tMeters, 0x044, nocomm, opt_gas_change+0 ; change depth of gas 1
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
204 OPTION_UINT8d oGas2Depth, .0, gaslist_max_change_depth, .56, tMeters, 0x045, nocomm, opt_gas_change+1
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
205 OPTION_UINT8d oGas3Depth, .0, gaslist_max_change_depth, .56, tMeters, 0x046, nocomm, opt_gas_change+2
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
206 OPTION_UINT8d oGas4Depth, .0, gaslist_max_change_depth, .56, tMeters, 0x047, nocomm, opt_gas_change+3
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
207 OPTION_UINT8d oGas5Depth, .0, gaslist_max_change_depth, .56, tMeters, 0x048, nocomm, opt_gas_change+4 ; change depth of gas 5
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
208 OPTION_UINT8d oDil1Depth, .0, gaslist_max_change_depth, .56, tMeters, 0x062, nocomm, opt_dil_change+0 ; change depth of diluent 1
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
209 OPTION_UINT8d oDil2Depth, .0, gaslist_max_change_depth, .56, tMeters, 0x063, nocomm, opt_dil_change+1
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
210 OPTION_UINT8d oDil3Depth, .0, gaslist_max_change_depth, .56, tMeters, 0x064, nocomm, opt_dil_change+2
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
211 OPTION_UINT8d oDil4Depth, .0, gaslist_max_change_depth, .56, tMeters, 0x065, nocomm, opt_dil_change+3
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
212 OPTION_UINT8d oDil5Depth, .0, gaslist_max_change_depth, .56, tMeters, 0x066, nocomm, opt_dil_change+4 ; change depth of diluent 5
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
213
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
214 OPTION_UINT8 oTankSizeOC1, min_tank_size, max_tank_size, .11, tLiter, 0x0BF, 0x4E, char_I_gas_avail_size+0 ; size of OC gas tank 1, in liters
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
215 OPTION_UINT8 oTankSizeOC2, min_tank_size, max_tank_size, .11, tLiter, 0x0C0, 0x4F, char_I_gas_avail_size+1 ; size of OC gas tank 2, in liters
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
216 OPTION_UINT8 oTankSizeOC3, min_tank_size, max_tank_size, .11, tLiter, 0x0C1, 0x50, char_I_gas_avail_size+2 ; size of OC gas tank 3, in liters
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
217 OPTION_UINT8 oTankSizeOC4, min_tank_size, max_tank_size, .11, tLiter, 0x0C2, 0x51, char_I_gas_avail_size+3 ; size of OC gas tank 4, in liters
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
218 OPTION_UINT8 oTankSizeOC5, min_tank_size, max_tank_size, .11, tLiter, 0x0C3, 0x52, char_I_gas_avail_size+4 ; size of OC gas tank 5, in liters
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
219 OPTION_UINT8 oTankSizeDil1, min_tank_size, max_tank_size, .11, tLiter, 0x0E6, 0x74, char_I_gas_avail_size+5 ; size of DIL gas tank 1, in liters
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
220 OPTION_UINT8 oTankSizeDil2, min_tank_size, max_tank_size, .11, tLiter, 0x0E7, 0x75, char_I_gas_avail_size+6 ; size of DIL gas tank 2, in liters
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
221 OPTION_UINT8 oTankSizeDil3, min_tank_size, max_tank_size, .11, tLiter, 0x0E8, 0x76, char_I_gas_avail_size+7 ; size of DIL gas tank 3, in liters
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
222 OPTION_UINT8 oTankSizeDil4, min_tank_size, max_tank_size, .11, tLiter, 0x0E9, 0x77, char_I_gas_avail_size+8 ; size of DIL gas tank 4, in liters
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
223 OPTION_UINT8 oTankSizeDil5, min_tank_size, max_tank_size, .11, tLiter, 0x0EA, 0x78, char_I_gas_avail_size+9 ; size of DIL gas tank 5, in liters
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
224
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
225 OPTION_UINT8 oTankPresOC1, min_fill_press, max_fill_press, .20, tbar10, 0x0C4, 0x53, char_I_gas_avail_pres+0 ; available press of OC gas tank 1, in multiples of 10 bars
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
226 OPTION_UINT8 oTankPresOC2, min_fill_press, max_fill_press, .20, tbar10, 0x0C5, 0x54, char_I_gas_avail_pres+1 ; available press of OC gas tank 2, in multiples of 10 bars
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
227 OPTION_UINT8 oTankPresOC3, min_fill_press, max_fill_press, .20, tbar10, 0x0C6, 0x55, char_I_gas_avail_pres+2 ; available press of OC gas tank 3, in multiples of 10 bars
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
228 OPTION_UINT8 oTankPresOC4, min_fill_press, max_fill_press, .20, tbar10, 0x0C7, 0x56, char_I_gas_avail_pres+3 ; available press of OC gas tank 4, in multiples of 10 bars
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
229 OPTION_UINT8 oTankPresOC5, min_fill_press, max_fill_press, .20, tbar10, 0x0C8, 0x57, char_I_gas_avail_pres+4 ; available press of OC gas tank 5, in multiples of 10 bars
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
230 OPTION_UINT8 oTankPresDil1, min_fill_press, max_fill_press, .20, tbar10, 0x0EB, 0x79, char_I_gas_avail_pres+5 ; available press of DIL gas tank 1, in multiples of 10 bars
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
231 OPTION_UINT8 oTankPresDil2, min_fill_press, max_fill_press, .20, tbar10, 0x0EC, 0x7A, char_I_gas_avail_pres+6 ; available press of DIL gas tank 2, in multiples of 10 bars
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
232 OPTION_UINT8 oTankPresDil3, min_fill_press, max_fill_press, .20, tbar10, 0x0ED, 0x7B, char_I_gas_avail_pres+7 ; available press of DIL gas tank 3, in multiples of 10 bars
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
233 OPTION_UINT8 oTankPresDil4, min_fill_press, max_fill_press, .20, tbar10, 0x0EE, 0x7C, char_I_gas_avail_pres+8 ; available press of DIL gas tank 4, in multiples of 10 bars
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
234 OPTION_UINT8 oTankPresDil5, min_fill_press, max_fill_press, .20, tbar10, 0x0EF, 0x7D, char_I_gas_avail_pres+9 ; available press of DIL gas tank 5, in multiples of 10 bars
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
235
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
236 OPTION_UINT8p10 oSP1ppO2, gaslist_sp_min, gaslist_sp_max, .70, tbar, 0x053, nocomm, opt_setpoint_cbar+0 ; ppO2 of setpoint 1
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
237 OPTION_UINT8p10 oSP2ppO2, gaslist_sp_min, gaslist_sp_max, .90, tbar, 0x054, nocomm, opt_setpoint_cbar+1 ; ppO2 of setpoint 2
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
238 OPTION_UINT8p10 oSP3ppO2, gaslist_sp_min, gaslist_sp_max, .100, tbar, 0x055, nocomm, opt_setpoint_cbar+2 ; ...
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
239 OPTION_UINT8p10 oSP4ppO2, gaslist_sp_min, gaslist_sp_max, .120, tbar, 0x056, nocomm, opt_setpoint_cbar+3 ; ...
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
240 OPTION_UINT8p10 oSP5ppO2, gaslist_sp_min, gaslist_sp_max, .140, tbar, 0x057, nocomm, opt_setpoint_cbar+4 ; ppO2 of setpoint 5
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
241
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
242 OPTION_UINT8d oSP1Depth, .0, .0, .0, tMeters, 0x058, nocomm, opt_setpoint_change+0 ; change depth of setpoint 1 (forced to 0 in code)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
243 OPTION_UINT8d oSP2Depth, .0, gaslist_sp_max_depth, .0, tMeters, 0x059, nocomm, opt_setpoint_change+1 ; change depth of setpoint 2
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
244 OPTION_UINT8d oSP3Depth, .0, gaslist_sp_max_depth, .0, tMeters, 0x05A, nocomm, opt_setpoint_change+2 ; ...
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
245 OPTION_UINT8d oSP4Depth, .0, gaslist_sp_max_depth, .0, tMeters, 0x05B, nocomm, opt_setpoint_change+3 ; ...
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
246 OPTION_UINT8d oSP5Depth, .0, gaslist_sp_max_depth, .0, tMeters, 0x05C, nocomm, opt_setpoint_change+4 ; change depth of setpoint 5
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
247
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
248 OPTION_UINT8 oXmittID01L, .0, .255, .0, nounit, 0x0D2, 0x60, opt_transmitter_id_1+0 ; ID of transmitter for gas 1 (LOW)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
249 OPTION_UINT8 oXmittID01H, .0, .255, .0, nounit, 0x0D3, 0x61, opt_transmitter_id_1+1 ; ID of transmitter for gas 1 (HIGH)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
250 OPTION_UINT8 oXmittID02L, .0, .255, .0, nounit, 0x0D4, 0x62, opt_transmitter_id_2+0 ; ID of transmitter for gas 2 (LOW)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
251 OPTION_UINT8 oXmittID02H, .0, .255, .0, nounit, 0x0D5, 0x63, opt_transmitter_id_2+1 ; ID of transmitter for gas 2 (HIGH)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
252 OPTION_UINT8 oXmittID03L, .0, .255, .0, nounit, 0x0D6, 0x64, opt_transmitter_id_3+0 ; ID of transmitter for gas 3 (LOW)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
253 OPTION_UINT8 oXmittID03H, .0, .255, .0, nounit, 0x0D7, 0x65, opt_transmitter_id_3+1 ; ID of transmitter for gas 3 (HIGH)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
254 OPTION_UINT8 oXmittID04L, .0, .255, .0, nounit, 0x0D8, 0x66, opt_transmitter_id_4+0 ; ID of transmitter for gas 4 (LOW)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
255 OPTION_UINT8 oXmittID04H, .0, .255, .0, nounit, 0x0D9, 0x67, opt_transmitter_id_4+1 ; ID of transmitter for gas 4 (HIGH)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
256 OPTION_UINT8 oXmittID05L, .0, .255, .0, nounit, 0x0DA, 0x68, opt_transmitter_id_5+0 ; ID of transmitter for gas 5 (LOW)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
257 OPTION_UINT8 oXmittID05H, .0, .255, .0, nounit, 0x0DB, 0x69, opt_transmitter_id_5+1 ; ID of transmitter for gas 5 (HIGH)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
258 OPTION_UINT8 oXmittID06L, .0, .255, .0, nounit, 0x0DC, 0x6A, opt_transmitter_id_6+0 ; ID of transmitter for dil 1 (LOW)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
259 OPTION_UINT8 oXmittID06H, .0, .255, .0, nounit, 0x0DD, 0x6B, opt_transmitter_id_6+1 ; ID of transmitter for dil 1 (HIGH)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
260 OPTION_UINT8 oXmittID07L, .0, .255, .0, nounit, 0x0DE, 0x6C, opt_transmitter_id_7+0 ; ID of transmitter for dil 2 (LOW)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
261 OPTION_UINT8 oXmittID07H, .0, .255, .0, nounit, 0x0DF, 0x6D, opt_transmitter_id_7+1 ; ID of transmitter for dil 2 (HIGH)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
262 OPTION_UINT8 oXmittID08L, .0, .255, .0, nounit, 0x0E0, 0x6E, opt_transmitter_id_8+0 ; ID of transmitter for dil 3 (LOW)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
263 OPTION_UINT8 oXmittID08H, .0, .255, .0, nounit, 0x0E1, 0x6F, opt_transmitter_id_8+1 ; ID of transmitter for dil 3 (HIGH)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
264 OPTION_UINT8 oXmittID09L, .0, .255, .0, nounit, 0x0E2, 0x70, opt_transmitter_id_9+0 ; ID of transmitter for dil 4 (LOW)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
265 OPTION_UINT8 oXmittID09H, .0, .255, .0, nounit, 0x0E3, 0x71, opt_transmitter_id_9+1 ; ID of transmitter for dil 4 (HIGH)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
266 OPTION_UINT8 oXmittID10L, .0, .255, .0, nounit, 0x0E4, 0x72, opt_transmitter_id_10+0 ; ID of transmitter for dil 5 (LOW)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
267 OPTION_UINT8 oXmittID10H, .0, .255, .0, nounit, 0x0E5, 0x73, opt_transmitter_id_10+1 ; ID of transmitter for dil 5 (HIGH)
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
268
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
269 ; opt_name from 85 to 145
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
270 OPTION_STRING oName, opt_name_length, tDefName, 0x067, nocomm, opt_name ; custom text on surface screen
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
271
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
272 ; Misc
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
273 OPTION_ENUM8 oColorSetDive, .4, .0, tColorSetName0, 0x0A4, 0x31, opt_dive_color_scheme ; color scheme dive mode
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
274 OPTION_UINT8 oPressureAdjust, .0, .255, .0, nounit, 0x0A5, 0x35, opt_pressure_adjust ; pressure sensor correction, SIGNED int (clipped to -20/+20 mbar in code)
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
275 OPTION_BOOL oSafetyStop, .0, 0x0A6, 0x36, opt_safetystop ; =1: show safety stops
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
276 OPTION_UINT8 oCalGasO2, .21, .100, .21, tPercent, 0x0A7, 0x37, opt_calibration_O2_ratio ; calibration gas %O2 (do not move in EEPROM, must stay at .149!)
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
277 ; 0x0A8 ; not used any more (ex opt_sensor_fallback)
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
278 OPTION_BOOL oFlipScreen, .0, 0x0A9, 0x39, opt_flip_screen ; =1: flip the screen
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
279 OPTION_UINT8p10 ocR_button_left, .20, .80, .40, tPercent, 0x0AA, 0x3A, opt_cR_button_left ; left button sensitivity
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
280 OPTION_UINT8p10 ocR_button_right, .20, .80, .40, tPercent, 0x0AB, 0x3B, opt_cR_button_right ; right button sensitivity
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
281 OPTION_UINT8 oWork_SAC, .5, .80, .20, tLitersMinute, 0x0AC, 0x3C, char_I_SAC_work ; surface air consumption rate during working phase, l/min
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
282 OPTION_UINT8 oDeco_SAC, .5, .50, .20, tLitersMinute, 0x0AD, 0x3D, char_I_SAC_deco ; surface air consumption rate during deco stops phase, l/min
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
283 OPTION_BOOL oDepthWarn, .1, 0x0AE, 0x3E, opt_depth_warn ; =1: blink on depth related attentions and warnings
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
284 OPTION_BOOL oVSItext, .0, 0x0AF, 0x3F, opt_vsitext ; =1: use the dynamic (depends on depth) ascend rate limits
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
285 OPTION_BOOL oVSIgraph, .1, 0x0B0, 0x40, opt_vsigraph ; =1: draw the graphical VSI bar
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
286 OPTION_BOOL oShowppO2, .0, 0x0B1, 0x41, opt_showppo2 ; =1: always show the ppO2 value in the warning position
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
287 OPTION_UINT8 oTempAdjust, .0, .255, .0, nounit, 0x0B2, 0x42, opt_temperature_adjust ; temperature sensor correction, SIGNED int (clipped to -2.0/+2.0 °C in code)
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
288 OPTION_UINT8 oSafetyStopLength, .60, .240, .180, nounit, 0x0B3, 0x43, opt_safety_stop_length ; [s], duration of the safety stop
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
289 OPTION_UINT8 oSafetyStopStart, .21, .61, .51, nounit, 0x0B4, 0x44, opt_safety_stop_start ; [dm], depth at which safety stop appears, default 51 dm, min 210 dm, max 610 dm
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
290 OPTION_UINT8 oSafetyStopEnd, .19, .39, .29, nounit, 0x0B5, 0x45, opt_safety_stop_end ; [dm], depth at which safety stop disappears, default 290 dm, min 190 dm, max 390 dm
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
291 OPTION_UINT8 oSafetyStopReset, .81, .151, .101, nounit, 0x0B6, 0x46, opt_safety_stop_reset ; [dm], depth at which safety stop re-arms, default 1010 dm, min 810 dm, max 1510 dm
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
292 ; 0x0B7 - 0x0B9 ; unused
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
293 OPTION_UINT8 oDiveTimeout, .1, .20, .5, tMinutes, 0x0BA, 0x48, opt_diveTimeout ; [minutes] timeout for switch from dive mode to surface mode
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
294 OPTION_UINT8 oPSCR_drop, .0, .15, .4, tPercent, 0x0BB, 0x4A, char_I_PSCR_drop ; pSCR drop [%]
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
295 OPTION_UINT8 oPSCR_lungratio, .5, .20, .10, tPercent, 0x0BC, 0x4B, char_I_PSCR_lungratio ; pSCR lung ratio [1/x]
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
296 ; 0x0BD ; in use, see below
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
297 ; 0x0BE ; in use, see below
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
298 OPTION_UINT8 oCCmaxFracO2, .80, .100, .90, tPercent, 0x0C9, 0x58, char_I_CC_max_frac_O2 ; max. O2 % in Loop
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
299 OPTION_UINT8 oSimSetpoint, .1, .5, .1, tblank, 0x0CA, 0x59, opt_sim_setpoint_number ; setpoint to use for deco calculation
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
300 OPTION_BOOL oCalcAscGas, .0, 0x0CB, 0x5A, opt_calc_gasvolume ; calculate OC gas volume needs for ascent
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
301 OPTION_ENUM8 oAltMode, .4, .0, tAltModeFly, 0x0CC, 0x5C, char_I_altitude_wait ; no-fly time calculation for: 0=no-fly, 1=1000m, 2=2000m, 3=3000m
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
302 OPTION_BOOL oEnable_IBCD, .1, 0x0CD, 0x5D, opt_enable_IBCD ; =1: IBCD warning activated
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
303 ; 0x0CE ; not used any more (ex ascent speed)
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
304 OPTION_UINT8 oGasChangeTime, .0, .3, .0, tMinutes, 0x0CF, 0x5B, char_I_gas_change_time ; (extra) time at a stop to change the gas
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
305 OPTION_UINT8p5 osatmult, .100, .140, .110, tPercent, 0x0D0, 0x2A, opt_sat_multiplier_non_gf ; saturation factor for NON-GF Mode
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
306 OPTION_UINT8p5 odesatmult, .60, .100, .90, tPercent, 0x0D1, 0x2B, opt_desat_multiplier_non_gf ; desaturation factor for NON-GF Mode
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
307 OPTION_ENUM8 oTrMode, .4, .1, tTrModeOff, 0x0F0, 0x7E, opt_TR_mode ; TR functions - mode
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
308 OPTION_ENUM8 oTr1stPres, tr_pres_options, .1, tTrPresNone, 0x0F1, 0x7F, opt_TR_1st_pres ; TR functions - 1st pressure assignment
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
309 OPTION_ENUM8 oTr2ndPres, tr_pres_options, .0, tTrPresNone, 0x0F2, 0x80, opt_TR_2nd_pres ; TR functions - 2nd pressure assignment
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
310 OPTION_ENUM8 oTrBailPres, tr_pres_options, .1, tTrPresNone, 0x0F3, 0x81, opt_TR_Bail_pres ; TR functions - bailout pressure assignment
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
311 OPTION_UINT8p5 oTrMaxDeltaPres, max_pres_diff_min, max_pres_diff_max, .5, tbar, 0x0F4, 0x82, char_I_max_pres_diff ; TR functions - maximum delta pressure in independent double mode
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
312 ; 0x0F5 ; not used
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
313 ; 0x0F6 ; not used
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
314 OPTION_ENUM8 o2ndDepthDisp, .2, .0, tMax, 0x0F7, 0x85, opt_2ndDepthDisp ; =1: show average depth instead of max depth
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
315 OPTION_UINT8p3d oMaxDepth, .30, ostc_depth_max, ostc_depth_max, tMeters, 0x0F8, 0x86, opt_max_depth ; depth at which a warning will be given
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
316 OPTION_UINT8 oDescentSpeed, .5, .30, .10, tMeterMinute, 0x0F9, 0x87, char_I_descent_speed ; descent speed for deco calculator [future option, not used yet]
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
317 OPTION_BOOL oStoreApnoe, .0, 0x0FA, 0x88, opt_store_apnoe ; =1: store dives in apnoe mode into logbook
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
318 OPTION_ENUM8 oTissueGraphics, tissue_graphics_options, .0, tTissuePresSat, 0x0FB, 0x88, opt_tissue_graphics ; =0: show pressures and saturations, =1: show N2 and He pressures
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
319 OPTION_ENUM8 oLayout, .2, .0, tLayoutNormal, 0x0FC, 0x8A, opt_layout ; initial layout of dive mode screen =0: normal, =1: big
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
320 OPTION_BOOL oExtendedStops, .1, 0x0FD, 0x8B, opt_ext_stops ; =1: place gas switches also below 1st stop depth
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
321 OPTION_UINT8 oGasDensityAtt, .40, .80, .60, nounit, 0x0FE, 0x8C, char_I_gas_density_att ; threshold for gas density attention [0.1 grams/l]
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
322 OPTION_UINT8 oGasDensityWarn, .40, .80, .65, nounit, 0x0FF, 0x8D, char_I_gas_density_warn ; threshold for gas density warning [0.1 grams/l]
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
323 OPTION_BOOL oDilppO2Check, .1, 0x100, 0x8E, char_I_dil_check ; =1: check ppO2 of the pure diluent against current setpoint
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
324 OPTION_UINT8 oFirmwareMajor, fw_version_major, fw_version_major, fw_version_major, nounit, 0x101, nocomm, opt_fw_version_major ; firmware version, major | use as read-only,
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
325 OPTION_UINT8 oFirmwareMinor, fw_version_minor, fw_version_minor, fw_version_minor, nounit, 0x102, nocomm, opt_fw_version_minor ; firmware version, minor | do not change eeprom index number!
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
326 OPTION_UINT8 oFirmwarebeta, fw_version_beta , fw_version_beta, fw_version_beta, nounit, 0x103, nocomm, opt_fw_version_beta ; firmware version, beta |
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
327 OPTION_ENUM8 oS8Mode, .2, .0, tCCRS8Mode, 0x104, 0x8F, opt_s8_mode ; =0: analog, =1: digital RS232
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
328 OPTION_ENUM8 oCaveMode, .2, .0, tOff, 0x105, 0x90, opt_cave_mode ; =1: cave mode switched on
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
329 OPTION_BOOL oGasContingencyDive, .0, 0x106, 0x91, opt_gas_contingency_dive ; =1: dive mode: switch to alternative gas if best gas is depleted
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
330 OPTION_BOOL oGasDensityCheck, .1, 0x107, 0x92, opt_gas_density_check ; gas density is checked (effective in CCR / pSCR modes only)
623
c40025d8e750 3.03 beta released
heinrichsweikamp
parents: 608
diff changeset
331
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
332 ; +---------------------------------------------------------------------------------------------------------------------------------------------+
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
333 ; | . |
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
334 ; | /|\ |
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
335 ; | | add new options here! |
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
336 ; | | EEPROM address min: 0x012, max: 0x1FF, last used: 0x107, spare: 0x0B7-0x0B9, 0x0F5-0x0F6, disused: 0x0A8, 0x0CE |
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
337 ; | | serial address min: 0x20, max: 0xF9, last used: 0x92, spare: 0x83, 0x84 (0xFA - 0xFE are reserved for internal use) |
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
338 ; +---------------------------------------------------------------------------------------------------------------------------------------------+
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
339
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
340 ; ppO2 warnings, sorted by ppO2 levels
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
341 OPTION_UINT8p10 oPPO2Min, ppo2_warning_low_lowest, ppo2_warning_low_highest, ppo2_warning_low_default, nounit, 0x022, 0x23, char_I_ppO2_min ; ppO2 min on OC and for pure diluent in CCR
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
342 OPTION_UINT8p10 oPPO2MinCC, ppo2_warning_loop_lowest, ppo2_warning_loop_highest, ppo2_warning_loop_default, nounit, 0x0BE, 0x4D, char_I_ppO2_min_loop ; ppO2 min on Loop and for pure diluent in pSCR
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
343 OPTION_UINT8p10 oPPO2Max, ppo2_warning_high_lowest, ppo2_warning_high_highest, ppo2_warning_high_default, nounit, 0x01C, 0x22, char_I_ppO2_max_work ; ppO2 max while in working phase
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
344 OPTION_UINT8p10 oPPO2MaxDeco, ppo2_warning_deco_lowest, ppo2_warning_deco_highest, ppo2_warning_deco_default, nounit, 0x0BD, 0x4C, char_I_ppO2_max_deco ; ppO2 max while in deco stops phase
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
345
604
ca4556fb60b9 bump to 2.99beta, work on 3.00 stable
heinrichsweikamp
parents: 582
diff changeset
346
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
347 ; volatile options
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
348 OPTION_UINT8 oGas6O2, gaslist_min_o2, gaslist_max_o2, .21, tPercent, volatile, 0xFA, opt_gas6_O2_ratio ; O2 % of gas 6
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
349 OPTION_UINT8 oGas6He, .0, gaslist_max_He, .0, tPercent, volatile, 0xFB, opt_gas6_He_ratio ; He % of gas 6
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
350 OPTION_UINT8p10 odiveInterval, .0, .240, .0, tMinutes, volatile, nocomm, opt_surface_interval ; additional surface interval for deco calculator
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
351 OPTION_UINT8p2 obottomTime, .2, .60, .10, tMinutes, volatile, nocomm, char_I_bottom_time ; bottom time for deco calculator
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
352 OPTION_UINT8p3d obottomDepth, .12, .120, .21, tMeters, volatile, nocomm, char_I_bottom_depth ; bottom depth for deco calculator and simulator
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
353 OPTION_BOOL oSimAGF, .0, volatile, nocomm, opt_sim_use_aGF ; =1: use GF (no) or aGF (yes) in deco calculator
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
354 OPTION_ENUM8 oLogOffsetStep, .4, .0, tLogOffStep1, volatile, nocomm, opt_logoffset_step ; step size when adjusting the log offset
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
355 OPTION_UINT8 oClearSeconds, .0, .0, .0, nounit, volatile, nocomm, rtc_latched_secs ; used for setting time & date via menu
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
356 OPTION_UINT8 oSetMinutes, .0, .59, .0, nounit, volatile, nocomm, rtc_latched_mins ; ...
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
357 OPTION_UINT8 oSetHours, .0, .23, .0, nounit, volatile, nocomm, rtc_latched_hour ; ...
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
358 OPTION_UINT8 oSetDay, .1, .31, .0, nounit, volatile, nocomm, rtc_latched_day ; ...
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
359 OPTION_UINT8 oSetMonth, .1, .12, .0, nounit, volatile, nocomm, rtc_latched_month ; ...
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
360 OPTION_UINT8 oSetYear, .18, .24, .0, nounit, volatile, nocomm, rtc_latched_year ; ...
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
361
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
362 OPTION_UINT8 oFallback, .0, .255, .0, nounit, volatile, 0x38, opt_fallback ; unused dummy option for compatibility with 3rd party tools
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
363 OPTION_UINT8 oConservatism, .0, .255, .0, nounit, volatile, 0x47, opt_conservatism ; unused dummy option for compatibility with 3rd party tools
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
364
628
cd58f7fc86db 3.05 stable work
heinrichsweikamp
parents: 623
diff changeset
365
cd58f7fc86db 3.05 stable work
heinrichsweikamp
parents: 623
diff changeset
366 IFDEF _gas_contingency
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
367 OPTION_BOOL oGasContingencySim, .0, volatile, nocomm, opt_gas_contingency_sim ; =1: deco calculator: switch to alternative gas if best gas is depleted
628
cd58f7fc86db 3.05 stable work
heinrichsweikamp
parents: 623
diff changeset
368 ENDIF
cd58f7fc86db 3.05 stable work
heinrichsweikamp
parents: 623
diff changeset
369
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
370 IFDEF _comm_debug
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
371 OPTION_UINT8p5 oCommTimeout, .10, .200, rx_timeout/.10, tCommTimeoutU, volatile, nocomm, opt_comm_timeout ; comm RX timeout in multiples of 10 ms
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
372 ENDIF
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
373
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
374 ;-----------------------------------------------------------------------------
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
375
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
376 global option_table_end
143
be997abd1f73 seperate option table, place in address <0x10000
heinrichsweikamp
parents:
diff changeset
377 option_table_end:
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
378 OPTION_END ; end of option table - important: DO NOT OMIT THIS MACRO!
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 580
diff changeset
379
634
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
380 ;-----------------------------------------------------------------------------
4050675965ea 3.10 stable release
heinrichsweikamp
parents: 631
diff changeset
381
631
185ba2f91f59 3.09 beta 1 release
heinrichsweikamp
parents: 628
diff changeset
382 END