annotate src/hwos.inc @ 417:e5a9c9f76315

minor
author heinrichsweikamp
date Mon, 18 Apr 2016 17:29:19 +0200
parents 4389fe9673b2
children a5fc007634c5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 273
diff changeset
3 ; File hwos.inc
0
heinrichsweikamp
parents:
diff changeset
4 ;
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 273
diff changeset
5 ; OSTC Platform definitions
0
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-05-24 : [jDG] Cleanups from initial Matthias code.
heinrichsweikamp
parents:
diff changeset
11
heinrichsweikamp
parents:
diff changeset
12 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
13
heinrichsweikamp
parents:
diff changeset
14 LIST P=18F87K22 ; change also: Configure->SelectDevice from Mplab
heinrichsweikamp
parents:
diff changeset
15
99
87cc1adfe4da show event "bailout" in the internal logbook
heinrichsweikamp
parents: 98
diff changeset
16 ;#DEFINE __DEBUG
0
heinrichsweikamp
parents:
diff changeset
17
heinrichsweikamp
parents:
diff changeset
18 #include <p18f87k22.inc>
heinrichsweikamp
parents:
diff changeset
19 #include <ports.inc> ; Portmap
heinrichsweikamp
parents:
diff changeset
20
180
abc429e8b46a 1.60 work...
heinrichsweikamp
parents: 179
diff changeset
21 ; Firmware definition
402
a3a0f1fd7fc4 NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents: 399
diff changeset
22 #DEFINE softwareversion_x d'2' ; Software version XX.YY
416
4389fe9673b2 NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents: 412
diff changeset
23 #DEFINE softwareversion_y d'05' ; Software version XX.YY
4389fe9673b2 NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents: 412
diff changeset
24 #DEFINE softwareversion_beta 0 ; (and 0 for release)
180
abc429e8b46a 1.60 work...
heinrichsweikamp
parents: 179
diff changeset
25 ; Firmware version will appear in "Change Firmware" style
402
a3a0f1fd7fc4 NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents: 399
diff changeset
26 #DEFINE firmware_expire_year .17
410
d3087a8ed7e1 BUGFIX: Fix rare issue after battery change (OSTC3 did not start properly)
heinrichsweikamp
parents: 405
diff changeset
27 #DEFINE firmware_expire_month .3
402
a3a0f1fd7fc4 NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents: 399
diff changeset
28 #DEFINE firmware_expire_day .10
0
heinrichsweikamp
parents:
diff changeset
29
heinrichsweikamp
parents:
diff changeset
30 #DEFINE comm_service_key 0xABCDEF
heinrichsweikamp
parents:
diff changeset
31
heinrichsweikamp
parents:
diff changeset
32 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
33
heinrichsweikamp
parents:
diff changeset
34 #DEFINE CCP1CON_VALUE b'00001100' ; PWM1 for LED dimming
heinrichsweikamp
parents:
diff changeset
35 #DEFINE T2CON_ECO b'00000100' ; 1:1 Postscaler, 1:1 Prescaler, Timer 2 start -> 980Hz (Good compromise of no-flicker and efficiency)
heinrichsweikamp
parents:
diff changeset
36 #DEFINE T2CON_NORMAL b'00001110'
heinrichsweikamp
parents:
diff changeset
37 #DEFINE T2CON_FASTEST b'00001110' ; 1:2 Postscaler, 1:16 Prescaler, Timer 2 start -> 1960Hz (no-flicker)
heinrichsweikamp
parents:
diff changeset
38
28
heinrichsweikamp
parents: 26
diff changeset
39 #DEFINE TMR0H_VALUE .245 ; RX Timeout (~3ms)
heinrichsweikamp
parents: 26
diff changeset
40
0
heinrichsweikamp
parents:
diff changeset
41 ; Timing for button hold-down flags
heinrichsweikamp
parents:
diff changeset
42 #DEFINE TMR1H_VALUE_FIRST .255-.128 ; in steps of 7,8125ms -> 1s
heinrichsweikamp
parents:
diff changeset
43 #DEFINE TMR1H_VALUE_CONT .255-.32 ; in steps of 7,8125ms -> 0.25s
heinrichsweikamp
parents:
diff changeset
44 #DEFINE TMR1H_VALUE_CONT_DIVE .255-.64 ; in steps of 7,8125ms -> 0.5s
heinrichsweikamp
parents:
diff changeset
45
heinrichsweikamp
parents:
diff changeset
46 ; Color Definitions: 8Bit RGB b'RRRGGGBB'
heinrichsweikamp
parents:
diff changeset
47 #DEFINE color_red b'11100000' ; (7,0,0)
heinrichsweikamp
parents:
diff changeset
48 #DEFINE color_dark_red b'10000101' ; (4,1,1)
heinrichsweikamp
parents:
diff changeset
49 #DEFINE color_violet b'11101011' ; (7,2,3)
heinrichsweikamp
parents:
diff changeset
50 #DEFINE color_blue b'11000111' ; (6,1,3)
heinrichsweikamp
parents:
diff changeset
51 #DEFINE color_green b'00011100' ; (0,7,0)
heinrichsweikamp
parents:
diff changeset
52 #DEFINE color_greenish b'00111110' ; (1,7,2)
heinrichsweikamp
parents:
diff changeset
53 #DEFINE color_dark_green b'00111001' ; (1,6,1)
heinrichsweikamp
parents:
diff changeset
54 #DEFINE color_yellow b'11111101' ; (7,7,1)
heinrichsweikamp
parents:
diff changeset
55 #DEFINE color_white b'11111111' ; (7,7,3)
heinrichsweikamp
parents:
diff changeset
56 #DEFINE color_black b'00000000' ; (0,0,0)
heinrichsweikamp
parents:
diff changeset
57 #DEFINE color_deepblue b'00000010' ; (0,0,2)
heinrichsweikamp
parents:
diff changeset
58 #DEFINE color_grey b'11011111' ; (6,7,3)
heinrichsweikamp
parents:
diff changeset
59 #DEFINE color_cyan b'11011111' ; (6,7,3)
heinrichsweikamp
parents:
diff changeset
60 #DEFINE color_lightblue b'11011011' ; (6,7,3)
heinrichsweikamp
parents:
diff changeset
61 #DEFINE color_orange b'11111000' ; (7,6,0)
heinrichsweikamp
parents:
diff changeset
62 #DEFINE color_pink b'11111010' ; (7,6,2)
heinrichsweikamp
parents:
diff changeset
63
heinrichsweikamp
parents:
diff changeset
64 #DEFINE FT_TINY .0
heinrichsweikamp
parents:
diff changeset
65 #DEFINE FT_SMALL .1
heinrichsweikamp
parents:
diff changeset
66 #DEFINE FT_MEDIUM .2
heinrichsweikamp
parents:
diff changeset
67 #DEFINE FT_LARGE .3
heinrichsweikamp
parents:
diff changeset
68
307
14719662fb95 Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents: 303
diff changeset
69 #DEFINE warn_depth .1
14719662fb95 Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents: 303
diff changeset
70 #DEFINE warn_cns .2
14719662fb95 Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents: 303
diff changeset
71 #DEFINE warn_gf .3
14719662fb95 Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents: 303
diff changeset
72 #DEFINE warn_ppo2 .4
14719662fb95 Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents: 303
diff changeset
73 #DEFINE warn_ceiling .5
14719662fb95 Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents: 303
diff changeset
74 #DEFINE warn_gas_in_gaslist .6
14719662fb95 Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents: 303
diff changeset
75 #DEFINE warn_ppo2_hud .7
14719662fb95 Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents: 303
diff changeset
76 #DEFINE warn_battery .8
0
heinrichsweikamp
parents:
diff changeset
77
113
heinrichsweikamp
parents: 111
diff changeset
78 ; External O2 cell input parameters
heinrichsweikamp
parents: 111
diff changeset
79 #DEFINE min_mv .80 ; = 8mV
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 143
diff changeset
80 #DEFINE max_mv .2500 ; = 250mV
196
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 194
diff changeset
81 #DEFINE ignore_mv .3500 ; = 350mV (To suppress ghost readings for long, open cables)
0
heinrichsweikamp
parents:
diff changeset
82
heinrichsweikamp
parents:
diff changeset
83 ; Profile recording parameters
389
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 388
diff changeset
84 #DEFINE logbook_profile_version 0x24
0
heinrichsweikamp
parents:
diff changeset
85 #DEFINE samplingrate_apnoe .1 ; [seconds]
heinrichsweikamp
parents:
diff changeset
86 ; Warning: Divisors must be <.16 !
heinrichsweikamp
parents:
diff changeset
87 #DEFINE div_temperature .6 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
88 #DEFINE div_deco .6 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
89 #DEFINE div_gf .12 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
90 #DEFINE div_ppo2_sensors .2 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
91 #DEFINE div_decoplan .12 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
92 #DEFINE div_cns .12 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
93 #DEFINE div_tank .0 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
94 ; Warning: Information lengths must be <.16 !
heinrichsweikamp
parents:
diff changeset
95 #DEFINE infolength_temperature .2 ; [byte]
heinrichsweikamp
parents:
diff changeset
96 #DEFINE infolength_deco .2 ; [byte]
heinrichsweikamp
parents:
diff changeset
97 #DEFINE infolength_gf .1 ; [byte]
heinrichsweikamp
parents:
diff changeset
98 #DEFINE infolength_ppo2_sensors .9 ; [byte]
heinrichsweikamp
parents:
diff changeset
99 #DEFINE infolength_decoplan .15 ; [byte]
heinrichsweikamp
parents:
diff changeset
100 #DEFINE infolength_cns .2 ; [byte]
heinrichsweikamp
parents:
diff changeset
101 #DEFINE infolength_tank .0 ; [byte]
heinrichsweikamp
parents:
diff changeset
102
heinrichsweikamp
parents:
diff changeset
103 ; "Better Gas" behavior
heinrichsweikamp
parents:
diff changeset
104 ; better_gas_window <= minimum_change_depth !
heinrichsweikamp
parents:
diff changeset
105 ; minimum_change_depth >=5 !
heinrichsweikamp
parents:
diff changeset
106 #DEFINE minimum_change_depth .3 ; [m]
69
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 66
diff changeset
107 #DEFINE better_gas_window_neg .3 ; [m] (Depth above change depth)
50697bd41c54 +CHANGE: Some French Translations
heinrichsweikamp
parents: 66
diff changeset
108 #DEFINE better_gas_window_pos .1 ; [m] (Depth below change depth, if ppO2<opt_ppO2_max)
0
heinrichsweikamp
parents:
diff changeset
109
heinrichsweikamp
parents:
diff changeset
110 ; Dive mode limits and thresholds
heinrichsweikamp
parents:
diff changeset
111 #DEFINE start_dive_threshold .100 ; [cm]
heinrichsweikamp
parents:
diff changeset
112 #DEFINE high_altitude_dive_threshold .300;[cm]
35
eca4a201d8cf change apnea timeout, do no longer store apnea dives in logbook
heinrichsweikamp
parents: 31
diff changeset
113 #DEFINE apnoe_timeout .15 ; [min]
0
heinrichsweikamp
parents:
diff changeset
114 #DEFINE divemode_menuview_timeout .10 ; [s]
heinrichsweikamp
parents:
diff changeset
115 #DEFINE divemode_timeout .300 ; [s]
heinrichsweikamp
parents:
diff changeset
116 #DEFINE divemode_menu_timeout .30 ; [s]
heinrichsweikamp
parents:
diff changeset
117 #DEFINE ppo2_warning_low .19 ; [cbar] (Default value)
heinrichsweikamp
parents:
diff changeset
118 #DEFINE ppo2_lowest_setting .16 ; [cbar] (Minimum value)
heinrichsweikamp
parents:
diff changeset
119 #DEFINE ppo2_display_high .120 ; [cbar]
heinrichsweikamp
parents:
diff changeset
120 #DEFINE ppo2_warning_high .160 ; [cbar] (Default value)
heinrichsweikamp
parents:
diff changeset
121 #DEFINE ppo2_highest_setting .160 ; [cbar] (Max. Value)
heinrichsweikamp
parents:
diff changeset
122 #DEFINE cns_display_high .70 ; [%]
heinrichsweikamp
parents:
diff changeset
123 #DEFINE cns_warning_high .100 ; [%]
heinrichsweikamp
parents:
diff changeset
124 #DEFINE gf_display_high .75 ; [%]
heinrichsweikamp
parents:
diff changeset
125 #DEFINE gf_warning_high .100 ; [%]
heinrichsweikamp
parents:
diff changeset
126 #DEFINE depth_warn_mbar .13000 ; [mbar]
heinrichsweikamp
parents:
diff changeset
127 #DEFINE wake_up_from_sleep .1160 ; [mbar]
heinrichsweikamp
parents:
diff changeset
128 #DEFINE gf_display_threshold .20 ; [%]
heinrichsweikamp
parents:
diff changeset
129 #DEFINE simulator_timeout .15 ; [s]
192
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 189
diff changeset
130 #DEFINE sensor_voting_logic_threshold .20 ; Threshold in 0.01bar
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 189
diff changeset
131
0
heinrichsweikamp
parents:
diff changeset
132
heinrichsweikamp
parents:
diff changeset
133 ; Surface mode limits and thresholds
heinrichsweikamp
parents:
diff changeset
134 #DEFINE cns_display_surface_high .70 ; [%]
heinrichsweikamp
parents:
diff changeset
135 #DEFINE high_altitude_threshold .880 ; [mbar]
heinrichsweikamp
parents:
diff changeset
136 #DEFINE max_surfpressure .1080 ; [mbar]
heinrichsweikamp
parents:
diff changeset
137 #DEFINE timeout_surfacemode .90 ; [s]
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 185
diff changeset
138 #DEFINE timeout_calibrate_menu .240 ; [s]
188
ebc28381f17d NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents: 187
diff changeset
139 #DEFINE timeout_ccr_surface .240 ; [s]
0
heinrichsweikamp
parents:
diff changeset
140
heinrichsweikamp
parents:
diff changeset
141 ; Decomodel paramters
heinrichsweikamp
parents:
diff changeset
142 #DEFINE no_fly_time_ratio .60 ; [%]
heinrichsweikamp
parents:
diff changeset
143 #DEFINE deco_distance .10 ; [dm]
heinrichsweikamp
parents:
diff changeset
144
heinrichsweikamp
parents:
diff changeset
145 ; Color-code parameters for the divemode
heinrichsweikamp
parents:
diff changeset
146 #DEFINE color_code_cns_high .100 ; [%]
heinrichsweikamp
parents:
diff changeset
147 #DEFINE color_code_gf_warn_high .101 ; [%]
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
148 #DEFINE color_code_velocity_warn_high .11 ;[m/min]
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
149 #DEFINE color_code_velocity_attn_high .10 ;[m/min]
0
heinrichsweikamp
parents:
diff changeset
150
heinrichsweikamp
parents:
diff changeset
151 ; Velocity threshold
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
152 #DEFINE velocity_display_threshold_1 .3 ; [m/min]
0
heinrichsweikamp
parents:
diff changeset
153
heinrichsweikamp
parents:
diff changeset
154 ; Battery thresholds
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 35
diff changeset
155 #DEFINE lithium_36v_empty .2400 ; [mV] Saft 3,6V LS14500 AA - threshold for battery percent display
0
heinrichsweikamp
parents:
diff changeset
156 #DEFINE lithium_36v_low .2000 ; [mV] (Must be bigger then aa_15v_high!)
heinrichsweikamp
parents:
diff changeset
157 #DEFINE aa_15v_high .1550 ; [mV] Energizer 1,5V E2 AA
heinrichsweikamp
parents:
diff changeset
158 #DEFINE aa_15v_low .1100 ; [mV] According to Energizer Datasheet EBC-4201R, Page 2
43
83794355f927 .99 release
heinrichsweikamp
parents: 39
diff changeset
159 #DEFINE color_code_battery_low .10 ; [%]
83794355f927 .99 release
heinrichsweikamp
parents: 39
diff changeset
160 #DEFINE battery_show_level .24 ; [%]
0
heinrichsweikamp
parents:
diff changeset
161
92
7ca1105751c7 add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents: 89
diff changeset
162 ; 3,6V battery sensing data points at 70mA load
7ca1105751c7 add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents: 89
diff changeset
163 #DEFINE lithium_36v_75 .3000 ; [mV]
7ca1105751c7 add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents: 89
diff changeset
164 #DEFINE lithium_36v_50 .2900 ; [mV]
7ca1105751c7 add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents: 89
diff changeset
165 #DEFINE lithium_36v_25 .2600 ; [mV]
7ca1105751c7 add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents: 89
diff changeset
166 #DEFINE lithium_36v_10 .2500 ; [mV]
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 35
diff changeset
167
381
e32f424223fb BUGFIX: Battery consumption calculation in sleep mode (3,6V battery only)
heinrichsweikamp
parents: 378
diff changeset
168 #DEFINE current_sleepmode .31
0
heinrichsweikamp
parents:
diff changeset
169 #DEFINE current_backlight_multi .115 ; *CCPR1L+current_backlight_offset
heinrichsweikamp
parents:
diff changeset
170 #DEFINE current_backlight_offset .216
heinrichsweikamp
parents:
diff changeset
171 #DEFINE current_speed_eco .1914
heinrichsweikamp
parents:
diff changeset
172 #DEFINE current_speed_normal .4027
heinrichsweikamp
parents:
diff changeset
173 #DEFINE current_speed_fastest .5050
heinrichsweikamp
parents:
diff changeset
174 #DEFINE current_ir_reciever .139
heinrichsweikamp
parents:
diff changeset
175 #DEFINE current_compass .28
heinrichsweikamp
parents:
diff changeset
176
heinrichsweikamp
parents:
diff changeset
177 ; Brightness thresholds (between zero (off) and 255 (max. power))
402
a3a0f1fd7fc4 NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents: 399
diff changeset
178 #DEFINE ambient_light_max_high_36V .170
200
dcd513840c6c cleanup
heinrichsweikamp
parents: 198
diff changeset
179 #DEFINE ambient_light_max_high_cr .240
402
a3a0f1fd7fc4 NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents: 399
diff changeset
180 #DEFINE ambient_light_max_high_15V .140
198
c511dc403d7e (Slightly) reduce current consumption in Eco and sleep mode
heinrichsweikamp
parents: 196
diff changeset
181 #DEFINE ambient_light_min_high .35
402
a3a0f1fd7fc4 NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents: 399
diff changeset
182 #DEFINE ambient_light_max_medium .125
198
c511dc403d7e (Slightly) reduce current consumption in Eco and sleep mode
heinrichsweikamp
parents: 196
diff changeset
183 #DEFINE ambient_light_min_medium .25
402
a3a0f1fd7fc4 NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents: 399
diff changeset
184 #DEFINE ambient_light_max_eco .70
201
82faedf8fd58 lower minimum backlight in eco mode
heinrichsweikamp
parents: 200
diff changeset
185 #DEFINE ambient_light_min_eco .10 ; Must be the lowest value!
0
heinrichsweikamp
parents:
diff changeset
186
heinrichsweikamp
parents:
diff changeset
187 ; IR Link timeout
101
8c471940d989 increase ir-timeout to 4 seconds
heinrichsweikamp
parents: 100
diff changeset
188 #DEFINE ir_timeout_value .64 ; multiples of 62,5ms
0
heinrichsweikamp
parents:
diff changeset
189
352
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 344
diff changeset
190 ; Sp control constants
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 344
diff changeset
191 #DEFINE surface_sp .50 ; in cbar
5c6da9fa5cb0 add setpoint change to first sample in CCR mode
heinrichsweikamp
parents: 344
diff changeset
192
0
heinrichsweikamp
parents:
diff changeset
193 ; Gaslist hard-coded limits
heinrichsweikamp
parents:
diff changeset
194 #DEFINE gaslist_min_o2 .7 ; Minimum O2 [%]
185
f515712d8cd6 BUGFIX: Check min and max values after PC configuration properly
heinrichsweikamp
parents: 183
diff changeset
195 #DEFINE gaslist_max_change_depth .99 ; Max. change depth [m]
0
heinrichsweikamp
parents:
diff changeset
196 #DEFINE gaslist_sp_stepsize .10 ; Steps for Setpoint Setup [cbar]
heinrichsweikamp
parents:
diff changeset
197 #DEFINE gaslist_sp_max .160 ; Max. Setpoint [cbar]
heinrichsweikamp
parents:
diff changeset
198 #DEFINE gaslist_sp_min .50 ; Min. Setpoint [cbar]
heinrichsweikamp
parents:
diff changeset
199
16
7b06f20881be calm compass reading for minor heading changes
heinrichsweikamp
parents: 15
diff changeset
200 ; Compass display
214
a17359244d93 compass changes
heinrichsweikamp
parents: 207
diff changeset
201 #DEFINE compass_fast_treshold .9 ; show new heading instantly if new and old > compass_fast_treshold
a17359244d93 compass changes
heinrichsweikamp
parents: 207
diff changeset
202 #DEFINE compass_averaging .10 ; numbers of extra averaging
16
7b06f20881be calm compass reading for minor heading changes
heinrichsweikamp
parents: 15
diff changeset
203
235
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
204 ; Hardware defines
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
205 #DEFINE rechargeable hardware_flag,0 ; OSTC has rechargeable battery with battery management chip
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
206 #DEFINE ambient_sensor hardware_flag,1 ; OSTC has an ambient sensor
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
207 #DEFINE analog_o2_input hardware_flag,2 ; OSTC has analog inputs and S8 digital
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
208 #DEFINE optical_input hardware_flag,3 ; OSTC has an digital optical input
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
209 #DEFINE ble_available hardware_flag,4 ; OSTC has an BLE module
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
210 ;unused
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
211 ;unused
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
212 ;unused
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
213
0
heinrichsweikamp
parents:
diff changeset
214 ;---------------------------- Macros ------------------------------------
heinrichsweikamp
parents:
diff changeset
215
heinrichsweikamp
parents:
diff changeset
216 TSTOSS macro opt_reg ; TeST Option Skip if not Zero
heinrichsweikamp
parents:
diff changeset
217 movff opt_reg,WREG
heinrichsweikamp
parents:
diff changeset
218 tstfsz WREG,A
heinrichsweikamp
parents:
diff changeset
219 bra $+4
heinrichsweikamp
parents:
diff changeset
220 endm
heinrichsweikamp
parents:
diff changeset
221
heinrichsweikamp
parents:
diff changeset
222 ;---------------------------- Bank0 DATA ------------------------------------
heinrichsweikamp
parents:
diff changeset
223 isr_backup equ 0x60
heinrichsweikamp
parents:
diff changeset
224 isr_backup udata_ovr isr_backup ; Reserved space for interupt data
heinrichsweikamp
parents:
diff changeset
225
heinrichsweikamp
parents:
diff changeset
226 ;---- Backup for general registers
heinrichsweikamp
parents:
diff changeset
227 isr_prod res 2
heinrichsweikamp
parents:
diff changeset
228
heinrichsweikamp
parents:
diff changeset
229 ;---- MS5541 subroutines
heinrichsweikamp
parents:
diff changeset
230 amb_pressure res 2
heinrichsweikamp
parents:
diff changeset
231 temperature res 2
heinrichsweikamp
parents:
diff changeset
232
heinrichsweikamp
parents:
diff changeset
233 C1 res 2 ; Decoded calibration data
heinrichsweikamp
parents:
diff changeset
234 C2 res 2
heinrichsweikamp
parents:
diff changeset
235 C3 res 2
heinrichsweikamp
parents:
diff changeset
236 C4 res 2 ; Here: C4-250
heinrichsweikamp
parents:
diff changeset
237 C5 res 2 ; Here: Reference Temperature UT1 = 8*C5 + 10000 (u16 range 10.000 .. +42.760)
heinrichsweikamp
parents:
diff changeset
238 C6 res 2
heinrichsweikamp
parents:
diff changeset
239 D1 res 2 ; raw pressure
heinrichsweikamp
parents:
diff changeset
240 D2 res 2 ; raw temperature
heinrichsweikamp
parents:
diff changeset
241 xdT res 2
heinrichsweikamp
parents:
diff changeset
242 xdT2 res 2
heinrichsweikamp
parents:
diff changeset
243 OFF res 2
heinrichsweikamp
parents:
diff changeset
244 SENS res 2
heinrichsweikamp
parents:
diff changeset
245 dLSB res 1 ;Pressure sensor interface
heinrichsweikamp
parents:
diff changeset
246 dMSB res 1
heinrichsweikamp
parents:
diff changeset
247 clock_count res 1
heinrichsweikamp
parents:
diff changeset
248 sensor_state_counter res 1 ; counts to eight for state maschine
heinrichsweikamp
parents:
diff changeset
249 amb_pressure_avg res 2
heinrichsweikamp
parents:
diff changeset
250 temperature_avg res 2
heinrichsweikamp
parents:
diff changeset
251 minimum_temperature res 2 ; minimum temperature
heinrichsweikamp
parents:
diff changeset
252 last_temperature res 2
heinrichsweikamp
parents:
diff changeset
253 last_pressure res 2
heinrichsweikamp
parents:
diff changeset
254 last_pressure_velocity res 2 ; For velocity
heinrichsweikamp
parents:
diff changeset
255 last_surfpressure res 2
heinrichsweikamp
parents:
diff changeset
256 last_surfpressure_15min res 2
heinrichsweikamp
parents:
diff changeset
257 last_surfpressure_30min res 2
heinrichsweikamp
parents:
diff changeset
258 rel_pressure res 2
heinrichsweikamp
parents:
diff changeset
259 sim_pressure res 2 ; hold simulated pressure in mbar if in Simulator mode
heinrichsweikamp
parents:
diff changeset
260 max_pressure res 2
heinrichsweikamp
parents:
diff changeset
261 avr_rel_pressure res 2
heinrichsweikamp
parents:
diff changeset
262 avr_rel_pressure_total res 2
heinrichsweikamp
parents:
diff changeset
263 ;---- Data for ISR math subroutines
heinrichsweikamp
parents:
diff changeset
264 isr_xC res 4
heinrichsweikamp
parents:
diff changeset
265 isr_xA res 2
heinrichsweikamp
parents:
diff changeset
266 isr_xB res 2
heinrichsweikamp
parents:
diff changeset
267
heinrichsweikamp
parents:
diff changeset
268 ;---- Data for ISR routines
heinrichsweikamp
parents:
diff changeset
269 isr1_temp res 1 ; ISR temp variable, used in ms5541.asm, isr_rtcc, isr_battery_gauge
heinrichsweikamp
parents:
diff changeset
270 isr2_temp res 1 ; ISR temp variable, used isr_battery_gauge
heinrichsweikamp
parents:
diff changeset
271
heinrichsweikamp
parents:
diff changeset
272 ;---- Display brightness
heinrichsweikamp
parents:
diff changeset
273 max_CCPR1L res 1 ; Max. brightness value for CCPR1L
heinrichsweikamp
parents:
diff changeset
274
heinrichsweikamp
parents:
diff changeset
275 ; Battery gauge (nAs, nC)
heinrichsweikamp
parents:
diff changeset
276 battery_gauge res 6 ; 48Bit -> 78Ah max...
heinrichsweikamp
parents:
diff changeset
277
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 185
diff changeset
278 ; IR/S8-Link
255
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
279 ir_s8_buffer res .18 ; temporally used in get_calibration_data for the raw (packed) calibration data
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 185
diff changeset
280 ir_s8_counter res 1
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 185
diff changeset
281 ir_S8_timeout res 1 ; Timeout for valid data
0
heinrichsweikamp
parents:
diff changeset
282
heinrichsweikamp
parents:
diff changeset
283 ; Compass raw data
heinrichsweikamp
parents:
diff changeset
284 compass_DX res 2
heinrichsweikamp
parents:
diff changeset
285 compass_DY res 2
heinrichsweikamp
parents:
diff changeset
286 compass_DZ res 2
heinrichsweikamp
parents:
diff changeset
287
heinrichsweikamp
parents:
diff changeset
288 accel_DX res 2
heinrichsweikamp
parents:
diff changeset
289 accel_DY res 2
heinrichsweikamp
parents:
diff changeset
290 accel_DZ res 2
heinrichsweikamp
parents:
diff changeset
291
heinrichsweikamp
parents:
diff changeset
292 ; Compass FILTERED data
heinrichsweikamp
parents:
diff changeset
293 compass_DX_f res 2
heinrichsweikamp
parents:
diff changeset
294 compass_DY_f res 2
heinrichsweikamp
parents:
diff changeset
295 compass_DZ_f res 2
heinrichsweikamp
parents:
diff changeset
296
heinrichsweikamp
parents:
diff changeset
297 accel_DX_f res 2
heinrichsweikamp
parents:
diff changeset
298 accel_DY_f res 2
heinrichsweikamp
parents:
diff changeset
299 accel_DZ_f res 2
heinrichsweikamp
parents:
diff changeset
300
heinrichsweikamp
parents:
diff changeset
301 ; Compass calibration data
heinrichsweikamp
parents:
diff changeset
302 compass_CX_f res 2
heinrichsweikamp
parents:
diff changeset
303 compass_CY_f res 2
heinrichsweikamp
parents:
diff changeset
304 compass_CZ_f res 2
heinrichsweikamp
parents:
diff changeset
305
heinrichsweikamp
parents:
diff changeset
306 ; Compass more data
heinrichsweikamp
parents:
diff changeset
307 compass_heading res 2 ; Corrected heading (in 1°) : -180 .. 180
16
7b06f20881be calm compass reading for minor heading changes
heinrichsweikamp
parents: 15
diff changeset
308 compass_heading_old res 2 ; Old heading (For smoother display)
170
8bcb064b4fb8 CHANGE: Compass readout smoothed
heinrichsweikamp
parents: 164
diff changeset
309 compass_heading_shown res 2 ; Displayed heading
214
a17359244d93 compass changes
heinrichsweikamp
parents: 207
diff changeset
310 ;compass_roll res 2 ; Rotation around the X axis
a17359244d93 compass changes
heinrichsweikamp
parents: 207
diff changeset
311 ;compass_pitch res 2 ; Rotation arounf the Y axis
0
heinrichsweikamp
parents:
diff changeset
312
heinrichsweikamp
parents:
diff changeset
313 compass_a res 2 ; Tmp data for Q15 arithmetics
heinrichsweikamp
parents:
diff changeset
314 compass_b res 2
heinrichsweikamp
parents:
diff changeset
315 compass_r res 3
heinrichsweikamp
parents:
diff changeset
316
heinrichsweikamp
parents:
diff changeset
317 CNS_start res 2 ; CNS value at beginning of dive
heinrichsweikamp
parents:
diff changeset
318 GF_start res 1 ; GF value at beginning of dive
heinrichsweikamp
parents:
diff changeset
319
319
cf929551d31c move flag13 into bank common
heinrichsweikamp
parents: 315
diff changeset
320 speed_setting res 1 ; =1: Eco, =2: Normal, =3: Fastest
cf929551d31c move flag13 into bank common
heinrichsweikamp
parents: 315
diff changeset
321
254
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 250
diff changeset
322 ;---- Data for graphical compass
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 250
diff changeset
323 xRD res 2 ; virtual compass ruler offset
255
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
324 xRDr res 2 ; virtual compass ruler offset - right end
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
325 xRD180 res 2 ; virtual compass ruler offset for the -180 marker
254
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 250
diff changeset
326 xLO res 1 ; lo backup to prevent trashing
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 250
diff changeset
327 xHI res 1 ; hi backup to prevent trashing
255
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
328 xCM res 1 ; compass bearing relative position
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
329 compass_bearing res 2 ; this is where the bearing menu stores the actual heading for bearing
254
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 250
diff changeset
330
0
heinrichsweikamp
parents:
diff changeset
331 ;---------------------------- Common DATA ------------------------------------
heinrichsweikamp
parents:
diff changeset
332
heinrichsweikamp
parents:
diff changeset
333 common equ 0x100 ; Alias for "banksel common"
heinrichsweikamp
parents:
diff changeset
334 common udata_ovr common ; Bank1 general variables
heinrichsweikamp
parents:
diff changeset
335
heinrichsweikamp
parents:
diff changeset
336 ;---- Time and Date
heinrichsweikamp
parents:
diff changeset
337 secs res 1
heinrichsweikamp
parents:
diff changeset
338 mins res 1
heinrichsweikamp
parents:
diff changeset
339 hours res 1
heinrichsweikamp
parents:
diff changeset
340 day res 1
heinrichsweikamp
parents:
diff changeset
341 month res 1
heinrichsweikamp
parents:
diff changeset
342 year res 1
heinrichsweikamp
parents:
diff changeset
343 surface_interval res 2
heinrichsweikamp
parents:
diff changeset
344
heinrichsweikamp
parents:
diff changeset
345 flag1 res 1
heinrichsweikamp
parents:
diff changeset
346 flag2 res 1
heinrichsweikamp
parents:
diff changeset
347 flag3 res 1
heinrichsweikamp
parents:
diff changeset
348 flag4 res 1
heinrichsweikamp
parents:
diff changeset
349 flag5 res 1
heinrichsweikamp
parents:
diff changeset
350 flag6 res 1
heinrichsweikamp
parents:
diff changeset
351 flag7 res 1
heinrichsweikamp
parents:
diff changeset
352 flag8 res 1
16
7b06f20881be calm compass reading for minor heading changes
heinrichsweikamp
parents: 15
diff changeset
353 flag9 res 1
113
heinrichsweikamp
parents: 111
diff changeset
354 flag10 res 1
189
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 188
diff changeset
355 flag11 res 1
255
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
356 flag12 res 1
319
cf929551d31c move flag13 into bank common
heinrichsweikamp
parents: 315
diff changeset
357 flag13 res 1
0
heinrichsweikamp
parents:
diff changeset
358
235
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
359 hardware_flag res 1 ; hardware descriptor flag
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 234
diff changeset
360
0
heinrichsweikamp
parents:
diff changeset
361 temp1 res 1
heinrichsweikamp
parents:
diff changeset
362 temp2 res 1
heinrichsweikamp
parents:
diff changeset
363
heinrichsweikamp
parents:
diff changeset
364 ;---- Interface to wait macros
heinrichsweikamp
parents:
diff changeset
365 wait_temp res 1
heinrichsweikamp
parents:
diff changeset
366 waitms_temp res 1
heinrichsweikamp
parents:
diff changeset
367
heinrichsweikamp
parents:
diff changeset
368 ;---- Interface to graphic subroutines (aa_wordprocessor, color_processor, ...)
heinrichsweikamp
parents:
diff changeset
369 win_leftx2 res 1
heinrichsweikamp
parents:
diff changeset
370 win_top res 1
heinrichsweikamp
parents:
diff changeset
371 win_width res 2
heinrichsweikamp
parents:
diff changeset
372 win_height res 1
heinrichsweikamp
parents:
diff changeset
373 win_bargraph res 1
heinrichsweikamp
parents:
diff changeset
374 win_color1 res 1
heinrichsweikamp
parents:
diff changeset
375 win_color2 res 1
heinrichsweikamp
parents:
diff changeset
376 win_font res 1
heinrichsweikamp
parents:
diff changeset
377
heinrichsweikamp
parents:
diff changeset
378 ;---- Draw subroutines
heinrichsweikamp
parents:
diff changeset
379 tft_temp4 res 1
heinrichsweikamp
parents:
diff changeset
380 tft_temp3 res 1
heinrichsweikamp
parents:
diff changeset
381 tft_temp2 res 1
heinrichsweikamp
parents:
diff changeset
382 tft_temp1 res 1
heinrichsweikamp
parents:
diff changeset
383
heinrichsweikamp
parents:
diff changeset
384 ;---- data conversion subroutines
heinrichsweikamp
parents:
diff changeset
385 lo res 1
heinrichsweikamp
parents:
diff changeset
386 hi res 1
heinrichsweikamp
parents:
diff changeset
387 up res 1
heinrichsweikamp
parents:
diff changeset
388
heinrichsweikamp
parents:
diff changeset
389 ;---- RS232 temp variables
heinrichsweikamp
parents:
diff changeset
390 uart1_temp res 1
heinrichsweikamp
parents:
diff changeset
391 uart2_temp res 1
378
7faa688db105 BUGFIX: BLE timings for MAC issues
heinrichsweikamp
parents: 376
diff changeset
392 uart3_temp res 1
0
heinrichsweikamp
parents:
diff changeset
393
heinrichsweikamp
parents:
diff changeset
394 ;---- Data for math subroutines
heinrichsweikamp
parents:
diff changeset
395 divA res 2
heinrichsweikamp
parents:
diff changeset
396 divB res 1
heinrichsweikamp
parents:
diff changeset
397 xC res 4
heinrichsweikamp
parents:
diff changeset
398 xA res 2
heinrichsweikamp
parents:
diff changeset
399 xB res 2
heinrichsweikamp
parents:
diff changeset
400 sub_c res 2
heinrichsweikamp
parents:
diff changeset
401 sub_a res 2
heinrichsweikamp
parents:
diff changeset
402 sub_b res 2
heinrichsweikamp
parents:
diff changeset
403
heinrichsweikamp
parents:
diff changeset
404 ;---- Data for conversion subroutines
heinrichsweikamp
parents:
diff changeset
405 cvt_flags res 1
heinrichsweikamp
parents:
diff changeset
406 ignore_digits res 1
heinrichsweikamp
parents:
diff changeset
407
heinrichsweikamp
parents:
diff changeset
408 #define leftbind cvt_flags,0
heinrichsweikamp
parents:
diff changeset
409 #define ignore_digit3 cvt_flags,1
heinrichsweikamp
parents:
diff changeset
410 #define ignore_digit4 cvt_flags,2
heinrichsweikamp
parents:
diff changeset
411 #define ignore_digit5 cvt_flags,3
360
5f142cff43f6 hardware support
heinrichsweikamp
parents: 352
diff changeset
412 #DEFINE enable_screen_dumps cvt_flags,4 ; =1: Ignore vin_usb, wait for "l" command (Screen dump
5f142cff43f6 hardware support
heinrichsweikamp
parents: 352
diff changeset
413 #DEFINE screen_type cvt_flags,5 ; =1: display1, =0; display0
0
heinrichsweikamp
parents:
diff changeset
414
heinrichsweikamp
parents:
diff changeset
415 ;---- Misc.
heinrichsweikamp
parents:
diff changeset
416 nofly_time res 2 ; No Fly time in Minutes (Calculated after Dive)
heinrichsweikamp
parents:
diff changeset
417 timeout_counter res 1
heinrichsweikamp
parents:
diff changeset
418 timeout_counter2 res 1
heinrichsweikamp
parents:
diff changeset
419 timeout_counter3 res 1
heinrichsweikamp
parents:
diff changeset
420 batt_voltage res 2 ; Battery voltage in mV
heinrichsweikamp
parents:
diff changeset
421 batt_percent res 1 ; Battery in percent (1-100)
heinrichsweikamp
parents:
diff changeset
422 ambient_light res 2 ; ambient_light level
heinrichsweikamp
parents:
diff changeset
423 lo_temp res 1
heinrichsweikamp
parents:
diff changeset
424 hi_temp res 1
heinrichsweikamp
parents:
diff changeset
425 desaturation_time res 2
97
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 96
diff changeset
426 convert_value_temp res 3 ; used in menu_battery_state_convert_date
0
heinrichsweikamp
parents:
diff changeset
427 active_gas res 1
97
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 96
diff changeset
428 active_diluent res 1 ; As a backup when switching back from Bailout to CCR
0
heinrichsweikamp
parents:
diff changeset
429 warning_counter res 1 ; Counts amount of warning in divemode
heinrichsweikamp
parents:
diff changeset
430 warning_counter_backup res 1 ; Backup of warning_counter
heinrichsweikamp
parents:
diff changeset
431 warning_page res 1 ; current # of warning page
heinrichsweikamp
parents:
diff changeset
432
heinrichsweikamp
parents:
diff changeset
433 ; Remind history for menu processor (and such):
heinrichsweikamp
parents:
diff changeset
434 menustack res 5 ; menu stack
heinrichsweikamp
parents:
diff changeset
435 menupos res 1 ; Logbook and divemode menu
heinrichsweikamp
parents:
diff changeset
436 menupos2 res 1 ; For dive mode simulator and pre-menu
heinrichsweikamp
parents:
diff changeset
437 menupos3 res 1 ; For Customviews
heinrichsweikamp
parents:
diff changeset
438 menupos4 res 1 ; For divemode menu
heinrichsweikamp
parents:
diff changeset
439
heinrichsweikamp
parents:
diff changeset
440 ; Apnoe stuff that must be in bank common
heinrichsweikamp
parents:
diff changeset
441 apnoe_mins res 1
heinrichsweikamp
parents:
diff changeset
442 apnoe_secs res 1
heinrichsweikamp
parents:
diff changeset
443 apnoe_max_pressure res 2
heinrichsweikamp
parents:
diff changeset
444
heinrichsweikamp
parents:
diff changeset
445 ; Divemode
heinrichsweikamp
parents:
diff changeset
446 divemins res 2
heinrichsweikamp
parents:
diff changeset
447 divesecs res 1
23
e402813343b6 new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents: 18
diff changeset
448 samplingrate res 1
0
heinrichsweikamp
parents:
diff changeset
449 samplesecs_value res 1
heinrichsweikamp
parents:
diff changeset
450 divisor_temperature res 1
heinrichsweikamp
parents:
diff changeset
451 divisor_deco res 1
heinrichsweikamp
parents:
diff changeset
452 divisor_gf res 1
heinrichsweikamp
parents:
diff changeset
453 divisor_ppo2_sensors res 1
heinrichsweikamp
parents:
diff changeset
454 divisor_decoplan res 1
heinrichsweikamp
parents:
diff changeset
455 divisor_cns res 1
heinrichsweikamp
parents:
diff changeset
456 divisor_tank res 1
heinrichsweikamp
parents:
diff changeset
457 average_depth_hold res 4
heinrichsweikamp
parents:
diff changeset
458 average_depth_hold_total res 4
heinrichsweikamp
parents:
diff changeset
459 total_divetime_seconds res 2
heinrichsweikamp
parents:
diff changeset
460 average_divesecs res 2 ; For the resettable stopwatch
heinrichsweikamp
parents:
diff changeset
461 decodata res 2
heinrichsweikamp
parents:
diff changeset
462 apnoe_timeout_counter res 1
heinrichsweikamp
parents:
diff changeset
463 apnoe_surface_mins res 1
heinrichsweikamp
parents:
diff changeset
464 apnoe_surface_secs res 1
heinrichsweikamp
parents:
diff changeset
465
heinrichsweikamp
parents:
diff changeset
466 ; Profile storing
heinrichsweikamp
parents:
diff changeset
467 AlarmType res 1
heinrichsweikamp
parents:
diff changeset
468 samplesecs res 1
heinrichsweikamp
parents:
diff changeset
469 EventByte res 1
98
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
470 EventByte2 res 1
0
heinrichsweikamp
parents:
diff changeset
471 ProfileFlagByte res 1
heinrichsweikamp
parents:
diff changeset
472
heinrichsweikamp
parents:
diff changeset
473 ; External flash
heinrichsweikamp
parents:
diff changeset
474 ext_flash_address res 3 ; 24bit Address
heinrichsweikamp
parents:
diff changeset
475 ext_flash_log_pointer res 3 ; 24bit Address for logbook profile storing
heinrichsweikamp
parents:
diff changeset
476 ext_flash_dive_counter res 3 ; 24bit Counter for dive length (increased in write_byte_ext_flash_plus)
heinrichsweikamp
parents:
diff changeset
477
heinrichsweikamp
parents:
diff changeset
478 ; I2C
113
heinrichsweikamp
parents: 111
diff changeset
479 i2c_temp res 2 ; Temp
0
heinrichsweikamp
parents:
diff changeset
480
heinrichsweikamp
parents:
diff changeset
481 ; O2 Sensor data
heinrichsweikamp
parents:
diff changeset
482 o2_mv_sensor1 res 2 ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
483 o2_mv_sensor2 res 2 ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
484 o2_mv_sensor3 res 2 ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
485 o2_ppo2_sensor1 res 1 ; Sensor1 ppO2 (in 0.01bar steps)
heinrichsweikamp
parents:
diff changeset
486 o2_ppo2_sensor2 res 1 ; Sensor2 ppO2 (in 0.01bar steps)
heinrichsweikamp
parents:
diff changeset
487 o2_ppo2_sensor3 res 1 ; Sensor3 ppO2 (in 0.01bar steps)
heinrichsweikamp
parents:
diff changeset
488 hud_status_byte res 1
heinrichsweikamp
parents:
diff changeset
489 ;Status Byte/
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 143
diff changeset
490 #DEFINE hud_connection_ok hud_status_byte,0 ;Bit0 = 1 -> HUD connection ok
0
heinrichsweikamp
parents:
diff changeset
491 ;Bit1 = 1 -> HUD is calibrated
heinrichsweikamp
parents:
diff changeset
492 ;Bit2 = 1 -> HUD Battery is low (<3000mV)
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 143
diff changeset
493 #DEFINE sensor1_active hud_status_byte,3 ;=1: Sensor1 is active
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 143
diff changeset
494 #DEFINE sensor2_active hud_status_byte,4 ;=1: Sensor2 is active
113
heinrichsweikamp
parents: 111
diff changeset
495 #DEFINE sensor3_active hud_status_byte,5 ;=1: Sensor3 is active
0
heinrichsweikamp
parents:
diff changeset
496 ;Bit6 unused in stand-alone HUD
heinrichsweikamp
parents:
diff changeset
497 ;Bit7 unused in stand-alone HUD
heinrichsweikamp
parents:
diff changeset
498
heinrichsweikamp
parents:
diff changeset
499 sensor_setpoint res 1 ; sensor ppo2 in 0.01bar for deco routine
heinrichsweikamp
parents:
diff changeset
500
heinrichsweikamp
parents:
diff changeset
501 better_gas_number res 1 ; number (1-5) of the "better gas" in divemode, =0: no better gas available
39
e4e91fe8b09d remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents: 37
diff changeset
502 customview_divemode res 1 ; keeps last custom view
e4e91fe8b09d remember last customview in dive and surface mode
mh@mh-THINK.fritz.box
parents: 37
diff changeset
503 customview_surfmode res 1
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 101
diff changeset
504 safety_stop_countdown res 1 ; counts seconds of safety stop
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 101
diff changeset
505
0
heinrichsweikamp
parents:
diff changeset
506 ;---------------------------- TMP DATA ---------------------------------------
heinrichsweikamp
parents:
diff changeset
507 ; Space for various overlayed data from color, word, menu processors, etc.
heinrichsweikamp
parents:
diff changeset
508 ;
heinrichsweikamp
parents:
diff changeset
509
heinrichsweikamp
parents:
diff changeset
510 tmp udata_ovr 0x1A0 ; Bank1 shared TMP space
heinrichsweikamp
parents:
diff changeset
511 tmp equ 0x1A0 ; Alias for CBLOCK directive.
heinrichsweikamp
parents:
diff changeset
512 res 0x060 ; RESERVED area.
heinrichsweikamp
parents:
diff changeset
513
268
29acdb601548 BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents: 266
diff changeset
514 ;---------------------------- Common2 DATA ------------------------------------
29acdb601548 BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents: 266
diff changeset
515
29acdb601548 BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents: 266
diff changeset
516 common2 equ 0xA00 ; Alias for "banksel common"
29acdb601548 BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents: 266
diff changeset
517 common2 udata_ovr common2 ; Bank1 general variables
29acdb601548 BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents: 266
diff changeset
518
29acdb601548 BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents: 266
diff changeset
519 s8_rawdata_sensor1 res 3 ; 24bit A/D raw data from S8 HUD sensor 1
29acdb601548 BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents: 266
diff changeset
520 s8_rawdata_sensor2 res 3 ; 24bit A/D raw data from S8 HUD sensor 2
29acdb601548 BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents: 266
diff changeset
521 s8_rawdata_sensor3 res 3 ; 24bit A/D raw data from S8 HUD sensor 3
29acdb601548 BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents: 266
diff changeset
522
378
7faa688db105 BUGFIX: BLE timings for MAC issues
heinrichsweikamp
parents: 376
diff changeset
523 hud_battery_mv res 2 ; hud/ppo2 monitor battery voltage in mV
389
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 388
diff changeset
524 start_day res 1 ; At start of dive (For logbook)
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 388
diff changeset
525 start_month res 1 ; At start of dive (For logbook)
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 388
diff changeset
526 start_year res 1 ; At start of dive (For logbook)
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 388
diff changeset
527 start_hours res 1 ; At start of dive (For logbook)
9175429bdeba CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents: 388
diff changeset
528 start_mins res 1 ; At start of dive (For logbook)
378
7faa688db105 BUGFIX: BLE timings for MAC issues
heinrichsweikamp
parents: 376
diff changeset
529
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
530 old_velocity res 4 ; Strores the last 4 speeds (8 seconds) in m/min
403
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 402
diff changeset
531 opt_gas_type_backup res 5 ; 0=Disabled, 1=First, 2=Travel, 3=Deco
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 402
diff changeset
532 opt_dil_type_backup res 5 ; 0=Disabled, 1=First, 2=Normal
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 402
diff changeset
533 opt_OC_bail_gas_change_backup res 5 ; Gas change depths OC/Bailout
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 402
diff changeset
534
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
535
0
heinrichsweikamp
parents:
diff changeset
536 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
537 ; Reserve BANK2 for general purpose buffer (strings, images, etc).
heinrichsweikamp
parents:
diff changeset
538 ; NOTE: Needs to be aligned with a bank (LOW(buffer)==0).
heinrichsweikamp
parents:
diff changeset
539 buffer udata_ovr 0x200
heinrichsweikamp
parents:
diff changeset
540 buffer res .256
heinrichsweikamp
parents:
diff changeset
541
heinrichsweikamp
parents:
diff changeset
542 opt_table equ 0xE00
heinrichsweikamp
parents:
diff changeset
543 opt_table udata_ovr opt_table
heinrichsweikamp
parents:
diff changeset
544
heinrichsweikamp
parents:
diff changeset
545 ;---- Dive Options
heinrichsweikamp
parents:
diff changeset
546 opt_gas_O2_ratio res 5 ; Needed because deco gaslist use N2
heinrichsweikamp
parents:
diff changeset
547 opt_dil_O2_ratio res 5 ; Must be in line with opt_gas_O2_ratio
heinrichsweikamp
parents:
diff changeset
548 opt_gas_He_ratio res 5 ; He ratio Gas1-5
heinrichsweikamp
parents:
diff changeset
549 opt_dil_He_ratio res 5 ; Must be in line with opt_gas_He_ratio
heinrichsweikamp
parents:
diff changeset
550 opt_gas_type res 5 ; 0=Disabled, 1=First, 2=Travel, 3=Deco
heinrichsweikamp
parents:
diff changeset
551 opt_dil_type res 5 ; 0=Disabled, 1=First, 2=Normal
heinrichsweikamp
parents:
diff changeset
552 opt_dive_mode res 1 ; 0=OC, 1=CC, 2=Gauge, 3=Apnea
heinrichsweikamp
parents:
diff changeset
553 opt_ppO2_max res 1 ; PPO2 Max for MOD calculation and color coding in divemode
heinrichsweikamp
parents:
diff changeset
554 opt_ccr_mode res 1 ; =0: Fixed SP, =1: Sensor
heinrichsweikamp
parents:
diff changeset
555 opt_ppO2_min res 1 ; PPO2 min for Sensors and color coding in divemode
97
53a99a2dc6a1 CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents: 96
diff changeset
556 opt_OC_bail_gas_change res 5 ; Gas change depths OC/Bailout
0
heinrichsweikamp
parents:
diff changeset
557 ;---- Managing Settings
heinrichsweikamp
parents:
diff changeset
558
heinrichsweikamp
parents:
diff changeset
559 opt_brightness res 1 ; =0: Eco, =1:Medium, =2:Full
heinrichsweikamp
parents:
diff changeset
560 opt_salinity res 1 ; 0-5%
heinrichsweikamp
parents:
diff changeset
561 #DEFINE opt_name_length .60 ; Custom text string 5 rows with 12 chars
heinrichsweikamp
parents:
diff changeset
562 opt_name res opt_name_length
heinrichsweikamp
parents:
diff changeset
563 opt_language res 1 ; Current language. 0=EN, 1=DE, 2=FR, 3=SP
heinrichsweikamp
parents:
diff changeset
564 opt_units res 1 ; 0:m/°C, 1:ft/°F
heinrichsweikamp
parents:
diff changeset
565 opt_dateformat res 1 ; =0:MMDDYY, =1:DDMMYY, =2:YYMMDD
heinrichsweikamp
parents:
diff changeset
566 opt_last_stop res 1 ; =3:3m, =4:4m, =5:5m, =6:6m
heinrichsweikamp
parents:
diff changeset
567 opt_aGF_high res 1 ; Alternative GF HIGH
heinrichsweikamp
parents:
diff changeset
568 opt_aGF_low res 1 ; Alternative GF LOW
heinrichsweikamp
parents:
diff changeset
569 opt_GF_high res 1 ; GF HIGH
heinrichsweikamp
parents:
diff changeset
570 opt_GF_low res 1 ; GF LOW
heinrichsweikamp
parents:
diff changeset
571 opt_enable_aGF res 1 ; =1: aGF can be selected underwater
18
4e3f133dfbf4 add new opt_compass_gain option to work with more magnetic battery types
heinrichsweikamp
parents: 17
diff changeset
572 opt_compass_gain res 1 ; 0-7 (230LSB/Gauss to 1370LSB/Gaus)
24
f51caad821b4 save logbook recording interval
heinrichsweikamp
parents: 23
diff changeset
573 opt_sampling_rate res 1 ; =1: 10s, =0: 2s
50
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 47
diff changeset
574 opt_dive_color_scheme res 1 ; 0-3
92
7ca1105751c7 add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents: 89
diff changeset
575 opt_pressure_adjust res 1 ; SIGNED int (two's complement), -20/+20mbar max.
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 101
diff changeset
576 opt_enable_safetystop res 1 ; =1: A safety stop is shown
113
heinrichsweikamp
parents: 111
diff changeset
577 opt_calibration_O2_ratio res 1 ; %O2 of calibration gas
heinrichsweikamp
parents: 111
diff changeset
578 opt_x_s1 res 2 ; calibration factor (Not stored in EEPROM)
heinrichsweikamp
parents: 111
diff changeset
579 opt_x_s2 res 2 ; calibration factor (Not stored in EEPROM)
heinrichsweikamp
parents: 111
diff changeset
580 opt_x_s3 res 2 ; calibration factor (Not stored in EEPROM)
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 143
diff changeset
581 opt_sensor_fallback res 1 ; =1: Fallback to SP1 when sensor is lost
155
5f71e31bd5b3 CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents: 151
diff changeset
582 opt_flip_screen res 1 ; =1: Flip the screen
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
583 opt_cR_button_left res 1 ; Left button sensitivity (cR hardware)
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
584 opt_cR_button_right res 1 ; Right button sensitivity (cR hardware)
307
14719662fb95 Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents: 303
diff changeset
585 opt_modwarning res 1 ; =1:do a red blinking warning, =0:default behaviour
14719662fb95 Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents: 303
diff changeset
586 opt_vsitextv2 res 1 ; =1:use the depth dependent ascend rate limits
326
d21b172d5a7a VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents: 319
diff changeset
587 opt_vsigraph res 1 ; =1:draw the graphical VSI bar
335
3d43da7acfe1 Always show ppO2 (warning position, standard color) option
janos_kovacs <kovjanos@gmail.com>
parents: 333
diff changeset
588 opt_showppo2 res 1 ; =1:always show the ppO2 value in the warning position
368
57e349960ef4 Additional temperature calibration via PC interface
heinrichsweikamp
parents: 367
diff changeset
589 opt_temperature_adjust res 1 ; SIGNED int (two's complement), -2.0/+2.0 °C max.
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
590 opt_safety_stop_length res 1 ; [s]
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
591 opt_safety_stop_start res 1 ; [cbar]
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
592 opt_safety_stop_end res 1 ; [cbar]
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
593 opt_safety_stop_reset res 1 ; [cbar]
0
heinrichsweikamp
parents:
diff changeset
594
heinrichsweikamp
parents:
diff changeset
595 ;-----------------------------EEPROM DATA ------------------------------------
heinrichsweikamp
parents:
diff changeset
596 ; Automatic reset of all options when this is changed:
heinrichsweikamp
parents:
diff changeset
597 #define eeprom_opt_serial 0x0005 ; Version 0.5
heinrichsweikamp
parents:
diff changeset
598
heinrichsweikamp
parents:
diff changeset
599 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
600 ; Flags
heinrichsweikamp
parents:
diff changeset
601 #DEFINE switch_left flag1,0
heinrichsweikamp
parents:
diff changeset
602 #DEFINE switch_right flag1,1
heinrichsweikamp
parents:
diff changeset
603 #DEFINE neg_flag flag1,2 ; e.g. sub16 (sub_c = sub_a - sub_b)
heinrichsweikamp
parents:
diff changeset
604 #DEFINE pressure_refresh flag1,3 ; =1: A new pressure/temperature is available
heinrichsweikamp
parents:
diff changeset
605 #DEFINE sleepmode flag1,4 ; =1: In Sleepmode
heinrichsweikamp
parents:
diff changeset
606 #DEFINE tft_is_dimming flag1,5 ; =1: The TFT is dimming, ignore light sensor
heinrichsweikamp
parents:
diff changeset
607 #DEFINE display_velocity flag1,6 ; =1: show velocity
heinrichsweikamp
parents:
diff changeset
608 #DEFINE no_sensor_int flag1,7 ; =1: block any further access to pressure sensor
heinrichsweikamp
parents:
diff changeset
609
heinrichsweikamp
parents:
diff changeset
610 #DEFINE rs232_recieve_overflow flag2,0 ; =1: An RS232 timeout overflow occoured
heinrichsweikamp
parents:
diff changeset
611 #DEFINE stored_gas_changed flag2,1 ; =1: Stored Gas changed
heinrichsweikamp
parents:
diff changeset
612 #DEFINE high_altitude_mode flag2,2 ; =1: Unit was manually turned on with ambient pressure <880mbar
heinrichsweikamp
parents:
diff changeset
613 #DEFINE FLAG_apnoe_mode flag2,3 ; =1: Apnoe mode selected
heinrichsweikamp
parents:
diff changeset
614 #DEFINE restore_deco_data flag2,4 ; =1: Restore deco data (After simulation)
heinrichsweikamp
parents:
diff changeset
615 #DEFINE premenu flag2,5 ; =1: Premenu/Divemenu selected
heinrichsweikamp
parents:
diff changeset
616 #DEFINE menubit flag2,6 ; menu
heinrichsweikamp
parents:
diff changeset
617 #DEFINE simulatormode_active flag2,7 ; =1: Simulator mode active, override pressure sensor readings
heinrichsweikamp
parents:
diff changeset
618
heinrichsweikamp
parents:
diff changeset
619 #DEFINE divemode_menu flag3,0 ; =1: Divemode menu is shown
heinrichsweikamp
parents:
diff changeset
620 #DEFINE onesecupdate flag3,1 ; =1 after any second
heinrichsweikamp
parents:
diff changeset
621 #DEFINE twosecupdate flag3,2 ; =1: New two-second update
heinrichsweikamp
parents:
diff changeset
622 #DEFINE toggle_customview flag3,3 ; =1: Next customview
heinrichsweikamp
parents:
diff changeset
623 #DEFINE oneminupdate flag3,4 ; =1 after any minute
heinrichsweikamp
parents:
diff changeset
624 #DEFINE divemode flag3,5 ; =1: in Divemode
heinrichsweikamp
parents:
diff changeset
625 #DEFINE battery_is_36v flag3,6 ; =1: 3,6V Battery is in use
heinrichsweikamp
parents:
diff changeset
626 #DEFINE warning_active flag3,7 ; =1: A warning is active in divemode or surfacemode
heinrichsweikamp
parents:
diff changeset
627
heinrichsweikamp
parents:
diff changeset
628 #DEFINE better_gas_available flag4,0 ; =1: A better gas is available
heinrichsweikamp
parents:
diff changeset
629 #DEFINE blinking_better_gas flag4,1 ; =1: Gas is blinking
heinrichsweikamp
parents:
diff changeset
630 #DEFINE menuview flag4,2 ; =1: A menuview is shown in divemode (e.g. "Menu?")
heinrichsweikamp
parents:
diff changeset
631 #DEFINE quarter_second_update flag4,3 ; =1: A new 1/4 second has begun
heinrichsweikamp
parents:
diff changeset
632 #DEFINE divemode_gaschange flag4,4 ; =1: The gas will change very soon
heinrichsweikamp
parents:
diff changeset
633 #DEFINE decostop_active flag4,5 ; =1: Decompression stop shown
heinrichsweikamp
parents:
diff changeset
634 #DEFINE depth_greater_100m flag4,6 ; =1: Current Depth > 100m
heinrichsweikamp
parents:
diff changeset
635 #DEFINE realdive flag4,7 ; =1: A real dive during divemode
heinrichsweikamp
parents:
diff changeset
636
heinrichsweikamp
parents:
diff changeset
637 #DEFINE dive_warning_displayed flag5,0 ; =1: The warning sign is shown
heinrichsweikamp
parents:
diff changeset
638 #DEFINE reset_average_depth flag5,1 ; =1: Reset the average depth
heinrichsweikamp
parents:
diff changeset
639 #DEFINE store_sample flag5,2 ; =1: Store a new sample
heinrichsweikamp
parents:
diff changeset
640 #DEFINE divemode2 flag5,3 ; =1: Dive longer then one minute
heinrichsweikamp
parents:
diff changeset
641 #DEFINE FLAG_active_descent flag5,4 ; Used in Apnoe mode
heinrichsweikamp
parents:
diff changeset
642 #DEFINE event_occured flag5,5 ; =1: An event occured, store it!
heinrichsweikamp
parents:
diff changeset
643 #DEFINE divemode_menu_active flag5,6 ; =1: The divemode menu is shown
heinrichsweikamp
parents:
diff changeset
644 #DEFINE temp_changed flag5,7 ; =1: The temperature changed
heinrichsweikamp
parents:
diff changeset
645
heinrichsweikamp
parents:
diff changeset
646 #DEFINE gas6_changed flag6,0 ; =1: Gas 6 has been selected/changed underwater
heinrichsweikamp
parents:
diff changeset
647 #DEFINE onehourupdate flag6,1 ; =1: A new hour has just begun
heinrichsweikamp
parents:
diff changeset
648 #DEFINE settime_setdate flag6,2 ; =1: In the Set Time or Set Date Menu
heinrichsweikamp
parents:
diff changeset
649 #DEFINE setpoint_changed flag6,3 ; =1: Setpoint has been changed
heinrichsweikamp
parents:
diff changeset
650 #DEFINE second_row_warning flag6,4 ; =1: The second row contains a warning
heinrichsweikamp
parents:
diff changeset
651 #DEFINE FLAG_ccr_mode flag6,5 ; =1: CCR mode (Fixed ppO2 or Sensor) active
heinrichsweikamp
parents:
diff changeset
652 #DEFINE dive_hud1_displayed flag6,6 ; =1: The Sensor1 HUD reading is displayed
heinrichsweikamp
parents:
diff changeset
653 #DEFINE dive_hud2_displayed flag6,7 ; =1: The Sensor2 HUD reading is displayed
heinrichsweikamp
parents:
diff changeset
654
heinrichsweikamp
parents:
diff changeset
655 #DEFINE dive_hud3_displayed flag7,0 ; =1: The Sensor3 HUD reading is displayed
heinrichsweikamp
parents:
diff changeset
656 #DEFINE no_more_divesecs flag7,1 ; =1: Do no longer show seconds in divemode
heinrichsweikamp
parents:
diff changeset
657 #DEFINE FLAG_gauge_mode flag7,2 ; =1: In Gauge mode
heinrichsweikamp
parents:
diff changeset
658 #DEFINE ignore_last_edited_gas flag7,3 ; Used in gaslist_cleanup_list
heinrichsweikamp
parents:
diff changeset
659 #DEFINE ccr_diluent_setup flag7,4 ; =1: Setting up Diluents ("Gas6-10")
heinrichsweikamp
parents:
diff changeset
660 #DEFINE menu_show_sensors flag7,5 ; =1: Update HUD data in menu
heinrichsweikamp
parents:
diff changeset
661 #DEFINE short_gas_decriptions flag7,6 ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint
11
04794990b619 Show Max. Depth with 0.1m precision
heinrichsweikamp
parents: 7
diff changeset
662 #DEFINE max_depth_greater_100m flag7,7 ; =1: Max. Depth > 100m
0
heinrichsweikamp
parents:
diff changeset
663
heinrichsweikamp
parents:
diff changeset
664 #DEFINE is_bailout flag8,0 ; =1: Bailout
heinrichsweikamp
parents:
diff changeset
665 #DEFINE is_bailout_menu flag8,1 ; =1: Bailout
heinrichsweikamp
parents:
diff changeset
666 #DEFINE toggle_gf flag8,2 ; =1: Toggle GF/aGF
heinrichsweikamp
parents:
diff changeset
667 #DEFINE use_agf flag8,3 ; =1: Use aGF (instead of GF)
heinrichsweikamp
parents:
diff changeset
668 #DEFINE battery_removed_in_usb flag8,4 ; =1: The battery has been removed in USB
heinrichsweikamp
parents:
diff changeset
669 #DEFINE adc_running flag8,5 ; =1: The ADC is in use
heinrichsweikamp
parents:
diff changeset
670 #DEFINE comm_service_enabled flag8,6 ; =1: COMM Service mode unlocked
heinrichsweikamp
parents:
diff changeset
671 #DEFINE compass_enabled flag8,7 ; =1: The compass and accelerometer chip is active
heinrichsweikamp
parents:
diff changeset
672
16
7b06f20881be calm compass reading for minor heading changes
heinrichsweikamp
parents: 15
diff changeset
673 #DEFINE compass_fast_mode flag9,0 ; =1: The compass is in fast mode
50
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 47
diff changeset
674 #DEFINE in_color_menu flag9,1 ; =1: In the color scheme menu
98
24b3fd59e61f add event "bailout" in profile
heinrichsweikamp
parents: 97
diff changeset
675 #DEFINE bailoutgas_event flag9,2 ; =1: bailout was selected or a gaschange during bailout
189
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 188
diff changeset
676 #DEFINE win_invert flag9,3 ; =1: Invert font output
104
223579e905c3 Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents: 101
diff changeset
677 #DEFINE show_safety_stop flag9,4 ; =1: Show the safety stop
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 143
diff changeset
678 #DEFINE safety_stop_active flag9,5 ; =1: The safety stop is currently displayed
113
heinrichsweikamp
parents: 111
diff changeset
679 #DEFINE new_s8_data_available flag9,6 ; =1: New data frame recieved
254
5fe7aff622f3 preparations to set a course for the compass display
heinrichsweikamp
parents: 250
diff changeset
680 #DEFINE print_compass_label flag9,7 ; =1: print the graphical comapss label
113
heinrichsweikamp
parents: 111
diff changeset
681
heinrichsweikamp
parents: 111
diff changeset
682 #DEFINE s8_digital flag10,0; =1: Digital I/O
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 143
diff changeset
683 #DEFINE menu_show_sensors2 flag10,1; =1: Update mV data in calibration menu
192
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 189
diff changeset
684 #DEFINE use_O2_sensor1 flag10,2; =1: Use this sensor for deco
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 189
diff changeset
685 #DEFINE use_O2_sensor2 flag10,3; =1: Use this sensor for deco
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 189
diff changeset
686 #DEFINE use_O2_sensor3 flag10,4; =1: Use this sensor for deco
145
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 143
diff changeset
687 #DEFINE setpoint_fallback flag10,5; =1: Fallback to SP1 due to external O2 sensor failure
e3ac5b2021bc NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents: 143
diff changeset
688 #DEFINE blinking_setpoint flag10,6; =1: SP is blinking
151
5cb177f0948a work on flip screen...
heinrichsweikamp
parents: 150
diff changeset
689 #DEFINE flip_screen flag10,7; =1: Screen is flipped by 180°
189
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 188
diff changeset
690
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 188
diff changeset
691 #DEFINE sensor1_calibrated_ok flag11,0; =1: This sensor has been calibrated ok
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 188
diff changeset
692 #DEFINE sensor2_calibrated_ok flag11,1; =1: This sensor has been calibrated ok
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 188
diff changeset
693 #DEFINE sensor3_calibrated_ok flag11,2; =1: This sensor has been calibrated ok
192
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 189
diff changeset
694 #DEFINE voting_logic_sensor1 flag11,3; =1: This sensor is within the voting logic threshold
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 189
diff changeset
695 #DEFINE voting_logic_sensor2 flag11,4; =1: This sensor is within the voting logic threshold
efe70488a04b voting logic for external monitoring
heinrichsweikamp
parents: 189
diff changeset
696 #DEFINE voting_logic_sensor3 flag11,5; =1: This sensor is within the voting logic threshold
207
f5d909e03f52 charge indicator on surface screen
heinrichsweikamp
parents: 205
diff changeset
697 #DEFINE cc_active flag11,6; =1: Constant Current active (cR Hardware)
f5d909e03f52 charge indicator on surface screen
heinrichsweikamp
parents: 205
diff changeset
698 #DEFINE cv_active flag11,7; =1: Constant Voltage active (cR Hardware)
250
20e3bad0b0f2 Graphical compass from kovacs
heinrichsweikamp
parents: 239
diff changeset
699
255
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
700 #DEFINE compass_bearing_set flag12,0 ; bearing set
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
701 #DEFINE compass_bearing_eq flag12,1 ; bearing is in direction? do not show << or >>
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
702 #DEFINE compass_bearing_lft flag12,2 ; bearing is to the left/<< if set, otherwise to the right/>>
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
703 #DEFINE compass_bearing_vis flag12,3 ; bearing is visible? (either ahead or behind/-180°)
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
704 #DEFINE compass_bearing_ahd flag12,4 ; bearing is ahead or behind?
300
5ad479f2a868 Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents: 283
diff changeset
705 #DEFINE blinking_depth_warning flag12,5 ; set by the color_depth. =1: warning color
5ad479f2a868 Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents: 283
diff changeset
706 #DEFINE blinking_depth_prev flag12,6 ; set by the TFT_depth. =1: prev display had warning color
5ad479f2a868 Merged Screen layout mod #1 into Screen layout work #3
Janos Kovacs <kovjanos@gmail.com>
parents: 283
diff changeset
707 #DEFINE blinking_depth_toggle flag12,7 ; toggle to blink
255
ad62dff7739a add bearing option to compass
heinrichsweikamp
parents: 254
diff changeset
708
315
4f83470dcece VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents: 310
diff changeset
709 #DEFINE neg_flag_velocity flag13,0 ; neg_flag backup for velocity logic
399
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
710 ;#DEFINE unused
db25f2028074 CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents: 398
diff changeset
711 ;#DEFINE unused
338
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
712 #DEFINE sp2_switched flag13,3 ; =1: This setpoint has been autoselected already
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
713 #DEFINE sp3_switched flag13,4 ; =1: This setpoint has been autoselected already
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
714 #DEFINE sp4_switched flag13,5 ; =1: This setpoint has been autoselected already
2811932b4e99 NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents: 337
diff changeset
715 #DEFINE sp5_switched flag13,6 ; =1: This setpoint has been autoselected already
307
14719662fb95 Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents: 303
diff changeset
716
0
heinrichsweikamp
parents:
diff changeset
717 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
718 ; C-code Routines
heinrichsweikamp
parents:
diff changeset
719 ; PART 2
heinrichsweikamp
parents:
diff changeset
720 extern deco_calc_CNS_decrease_15min
heinrichsweikamp
parents:
diff changeset
721 extern deco_calc_CNS_fraction
heinrichsweikamp
parents:
diff changeset
722 extern deco_calc_desaturation_time
heinrichsweikamp
parents:
diff changeset
723 extern deco_calc_hauptroutine
heinrichsweikamp
parents:
diff changeset
724 extern deco_calc_tissue
heinrichsweikamp
parents:
diff changeset
725 extern deco_calc_percentage
heinrichsweikamp
parents:
diff changeset
726 extern deco_calc_wo_deco_step_1_min
heinrichsweikamp
parents:
diff changeset
727 extern deco_calc_dive_interval
heinrichsweikamp
parents:
diff changeset
728 extern deco_clear_CNS_fraction
heinrichsweikamp
parents:
diff changeset
729 extern deco_clear_tissue
heinrichsweikamp
parents:
diff changeset
730 extern deco_pull_tissues_from_vault
heinrichsweikamp
parents:
diff changeset
731 extern deco_push_tissues_to_vault
heinrichsweikamp
parents:
diff changeset
732