Mercurial > public > hwos_code
annotate src/hwos.inc @ 579:e6d5a1f02daf
Work-Around for 2.97 stable
| author | heinrichsweikamp |
|---|---|
| date | Wed, 21 Feb 2018 13:52:45 +0100 |
| parents | 2b8ef780cfa8 |
| children | 1ab93aca7fa9 |
| rev | line source |
|---|---|
| 0 | 1 ;============================================================================= |
| 2 ; | |
| 560 | 3 ; File hwos.inc REFACTORED VERSION V2.95a1 |
| 0 | 4 ; |
| 275 | 5 ; OSTC Platform definitions |
| 0 | 6 ; |
| 7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
| 8 ;============================================================================= | |
| 9 ; HISTORY | |
| 10 ; 2011-05-24 : [jDG] Cleanups from initial Matthias code. | |
| 11 | |
| 12 ;============================================================================= | |
| 13 | |
| 14 LIST P=18F87K22 ; change also: Configure->SelectDevice from Mplab | |
| 15 | |
|
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
16 ;#DEFINE __DEBUG |
| 0 | 17 |
| 578 | 18 ;#DEFINE french_italian ; If defined, use french and italian instead of english and german |
| 448 | 19 |
| 0 | 20 #include <p18f87k22.inc> |
| 21 #include <ports.inc> ; Portmap | |
| 22 | |
| 180 | 23 ; Firmware definition |
|
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
399
diff
changeset
|
24 #DEFINE softwareversion_x d'2' ; Software version XX.YY |
| 565 | 25 #DEFINE softwareversion_y d'97' ; Software version XX.YY |
| 573 | 26 #DEFINE softwareversion_beta 0 ; (and 0 for release) |
| 560 | 27 |
| 180 | 28 ; Firmware version will appear in "Change Firmware" style |
| 486 | 29 #DEFINE firmware_expire_year .18 |
| 560 | 30 #DEFINE firmware_expire_month .2 |
| 31 #DEFINE firmware_expire_day .22 | |
| 0 | 32 |
| 33 #DEFINE comm_service_key 0xABCDEF | |
| 34 | |
| 35 ;----------------------------------------------------------------------------- | |
| 36 | |
| 37 #DEFINE CCP1CON_VALUE b'00001100' ; PWM1 for LED dimming | |
| 38 #DEFINE T2CON_ECO b'00000100' ; 1:1 Postscaler, 1:1 Prescaler, Timer 2 start -> 980Hz (Good compromise of no-flicker and efficiency) | |
| 39 #DEFINE T2CON_NORMAL b'00001110' | |
| 40 #DEFINE T2CON_FASTEST b'00001110' ; 1:2 Postscaler, 1:16 Prescaler, Timer 2 start -> 1960Hz (no-flicker) | |
| 41 | |
| 28 | 42 #DEFINE TMR0H_VALUE .245 ; RX Timeout (~3ms) |
| 43 | |
| 0 | 44 ; Timing for button hold-down flags |
| 45 #DEFINE TMR1H_VALUE_FIRST .255-.128 ; in steps of 7,8125ms -> 1s | |
| 46 #DEFINE TMR1H_VALUE_CONT .255-.32 ; in steps of 7,8125ms -> 0.25s | |
| 47 #DEFINE TMR1H_VALUE_CONT_DIVE .255-.64 ; in steps of 7,8125ms -> 0.5s | |
| 48 | |
| 49 ; Color Definitions: 8Bit RGB b'RRRGGGBB' | |
| 560 | 50 #DEFINE color_red b'11100000' ; (7,0,0) |
| 0 | 51 #DEFINE color_dark_red b'10000101' ; (4,1,1) |
| 560 | 52 #DEFINE color_violet b'11101011' ; (7,2,3) |
| 53 #DEFINE color_blue b'11000111' ; (6,1,3) | |
| 0 | 54 #DEFINE color_green b'00011100' ; (0,7,0) |
| 55 #DEFINE color_greenish b'00111110' ; (1,7,2) | |
| 56 #DEFINE color_dark_green b'00111001' ; (1,6,1) | |
| 57 #DEFINE color_yellow b'11111101' ; (7,7,1) | |
| 58 #DEFINE color_white b'11111111' ; (7,7,3) | |
| 59 #DEFINE color_black b'00000000' ; (0,0,0) | |
| 60 #DEFINE color_deepblue b'00000010' ; (0,0,2) | |
| 61 #DEFINE color_grey b'11011111' ; (6,7,3) | |
| 62 #DEFINE color_cyan b'11011111' ; (6,7,3) | |
| 63 #DEFINE color_lightblue b'11011011' ; (6,7,3) | |
| 64 #DEFINE color_orange b'11111000' ; (7,6,0) | |
| 65 #DEFINE color_pink b'11111010' ; (7,6,2) | |
| 66 | |
| 67 #DEFINE FT_TINY .0 | |
| 68 #DEFINE FT_SMALL .1 | |
| 69 #DEFINE FT_MEDIUM .2 | |
| 70 #DEFINE FT_LARGE .3 | |
| 71 | |
|
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
72 #DEFINE warn_depth .1 |
|
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
73 #DEFINE warn_cns .2 |
|
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
74 #DEFINE warn_gf .3 |
|
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
75 #DEFINE warn_ppo2 .4 |
|
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
76 #DEFINE warn_ceiling .5 |
|
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
77 #DEFINE warn_gas_in_gaslist .6 |
| 560 | 78 #DEFINE warn_ppo2_hud .7 |
|
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
79 #DEFINE warn_battery .8 |
| 560 | 80 #DEFINE warn_stop .9 |
| 0 | 81 |
| 113 | 82 ; External O2 cell input parameters |
| 573 | 83 #DEFINE min_mv .80 ; = 8mV |
|
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
143
diff
changeset
|
84 #DEFINE max_mv .2500 ; = 250mV |
|
196
a0e0ddfc1b49
suppress ghost readings for long, open cables
heinrichsweikamp
parents:
194
diff
changeset
|
85 #DEFINE ignore_mv .3500 ; = 350mV (To suppress ghost readings for long, open cables) |
| 0 | 86 |
| 87 ; 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
|
88 #DEFINE logbook_profile_version 0x24 |
| 0 | 89 #DEFINE samplingrate_apnoe .1 ; [seconds] |
| 560 | 90 |
| 0 | 91 ; Warning: Divisors must be <.16 ! |
| 92 #DEFINE div_temperature .6 ; x samplingrate [s] | |
| 93 #DEFINE div_deco .6 ; x samplingrate [s] | |
| 94 #DEFINE div_gf .12 ; x samplingrate [s] | |
| 95 #DEFINE div_ppo2_sensors .2 ; x samplingrate [s] | |
| 96 #DEFINE div_decoplan .12 ; x samplingrate [s] | |
| 97 #DEFINE div_cns .12 ; x samplingrate [s] | |
| 98 #DEFINE div_tank .0 ; x samplingrate [s] | |
| 560 | 99 |
| 0 | 100 ; Warning: Information lengths must be <.16 ! |
| 101 #DEFINE infolength_temperature .2 ; [byte] | |
| 102 #DEFINE infolength_deco .2 ; [byte] | |
| 103 #DEFINE infolength_gf .1 ; [byte] | |
| 104 #DEFINE infolength_ppo2_sensors .9 ; [byte] | |
| 105 #DEFINE infolength_decoplan .15 ; [byte] | |
| 106 #DEFINE infolength_cns .2 ; [byte] | |
| 107 #DEFINE infolength_tank .0 ; [byte] | |
| 108 | |
| 109 ; "Better Gas" behavior | |
| 110 ; better_gas_window <= minimum_change_depth ! | |
| 111 ; minimum_change_depth >=5 ! | |
| 112 #DEFINE minimum_change_depth .3 ; [m] | |
| 69 | 113 #DEFINE better_gas_window_neg .3 ; [m] (Depth above change depth) |
| 114 #DEFINE better_gas_window_pos .1 ; [m] (Depth below change depth, if ppO2<opt_ppO2_max) | |
| 0 | 115 |
| 116 ; Dive mode limits and thresholds | |
| 560 | 117 #DEFINE start_dive_threshold .100 ; [cm] |
| 118 #DEFINE high_altitude_dive_threshold .300 ; [cm] | |
| 119 #DEFINE apnoe_timeout .15 ; [min] | |
| 120 #DEFINE divemode_menuview_timeout .10 ; [s] | |
| 121 #DEFINE divemode_timeout_default .5 ; [min] | |
| 122 #DEFINE divemode_menu_timeout .30 ; [s] | |
| 123 | |
| 124 #DEFINE ppo2_warning_low .19 ; [cbar] (Default value) | |
| 125 #DEFINE ppo2_lowest_setting .16 ; [cbar] (Minimum value) | |
| 126 ;#DEFINE ppo2_display_high .120 ; [cbar] ## V2.94 moved to p2_deco.c | |
| 127 #DEFINE ppo2_warning_high .160 ; [cbar] (Default value) for bottom/travel gases | |
|
507
4e6f5c36f4cc
NEW: Two ppO2 max settings. One for travel/bottom and one for deco gases
heinrichsweikamp
parents:
506
diff
changeset
|
128 #DEFINE ppo2_warning_high_deco .160 ; [cbar] (Default value) for deco gases |
| 560 | 129 #DEFINE ppo2_highest_setting .160 ; [cbar] (Max. Value) for bottom/travel gases |
| 130 #DEFINE ppo2_highest_setting_deco .160 ; [cbar] (Max. Value) for deco gases | |
| 131 | |
| 132 ; NEW ## min ppO2 CC | |
| 133 #DEFINE ppo2_warning_low_cc .40 ; [cbar] Default value for loop | |
| 134 #DEFINE ppo2_warning_low_cc_min .20 ; [cbar] Default value for loop | |
| 135 #DEFINE ppo2_warning_low_cc_max .60 ; [cbar] Default value for loop | |
| 136 | |
| 137 ;#DEFINE cns_display_high .70 ; [%] ## V2.94 moved to p2_deco.c | |
| 138 ;#DEFINE cns_warning_high .100 ; [%] ## V2.94 moved to p2_deco.c | |
| 139 ;#DEFINE gf_display_high .75 ; [%] ## V2.94 moved to p2_deco.c | |
| 140 ;#DEFINE gf_warning_high .100 ; [%] ## V2.94 moved to p2_deco.c | |
| 0 | 141 #DEFINE depth_warn_mbar .13000 ; [mbar] |
| 142 #DEFINE wake_up_from_sleep .1160 ; [mbar] | |
| 143 #DEFINE gf_display_threshold .20 ; [%] | |
| 144 #DEFINE simulator_timeout .15 ; [s] | |
| 192 | 145 |
| 560 | 146 #DEFINE sensor_voting_logic_threshold .10 ; Threshold in 0.01bar |
| 0 | 147 |
| 148 ; Surface mode limits and thresholds | |
| 149 #DEFINE cns_display_surface_high .70 ; [%] | |
| 150 #DEFINE high_altitude_threshold .880 ; [mbar] | |
| 151 #DEFINE max_surfpressure .1080 ; [mbar] | |
| 152 #DEFINE timeout_surfacemode .90 ; [s] | |
|
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
185
diff
changeset
|
153 #DEFINE timeout_calibrate_menu .240 ; [s] |
|
188
ebc28381f17d
NEW: Show Bailout Gas List in Surface mode (CCR Modes)
heinrichsweikamp
parents:
187
diff
changeset
|
154 #DEFINE timeout_ccr_surface .240 ; [s] |
| 0 | 155 |
| 156 ; Decomodel paramters | |
| 157 #DEFINE deco_distance .10 ; [dm] | |
| 158 | |
| 159 ; Color-code parameters for the divemode | |
| 560 | 160 ;#DEFINE color_code_cns_high .100 ; [%] ## V2.94 moved to p2_deco.c |
| 161 ;#DEFINE color_code_gf_warn_high .101 ; [%] ## V2.94 moved to p2_deco.c | |
| 162 #DEFINE color_code_velocity_warn_high .11 ;[m/min] | |
| 163 #DEFINE color_code_velocity_attn_high .10 ;[m/min] | |
| 0 | 164 |
| 165 ; Velocity threshold | |
|
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
166 #DEFINE velocity_display_threshold_1 .3 ; [m/min] |
| 0 | 167 |
| 168 ; Battery thresholds | |
|
37
0e1723f2761e
use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents:
35
diff
changeset
|
169 #DEFINE lithium_36v_empty .2400 ; [mV] Saft 3,6V LS14500 AA - threshold for battery percent display |
| 0 | 170 #DEFINE lithium_36v_low .2000 ; [mV] (Must be bigger then aa_15v_high!) |
| 171 #DEFINE aa_15v_high .1550 ; [mV] Energizer 1,5V E2 AA | |
| 172 #DEFINE aa_15v_low .1100 ; [mV] According to Energizer Datasheet EBC-4201R, Page 2 | |
| 43 | 173 #DEFINE color_code_battery_low .10 ; [%] |
| 174 #DEFINE battery_show_level .24 ; [%] | |
| 0 | 175 |
|
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
89
diff
changeset
|
176 ; 3,6V battery sensing data points at 70mA load |
|
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
89
diff
changeset
|
177 #DEFINE lithium_36v_75 .3000 ; [mV] |
|
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
89
diff
changeset
|
178 #DEFINE lithium_36v_50 .2900 ; [mV] |
|
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
89
diff
changeset
|
179 #DEFINE lithium_36v_25 .2600 ; [mV] |
|
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
89
diff
changeset
|
180 #DEFINE lithium_36v_10 .2500 ; [mV] |
| 448 | 181 |
| 182 ; Capacity for 2.4Ah Saft LS14500 and 0.8Ah Panasonic UR14500P | |
| 183 ; battery_gauge:6 is nAs | |
| 184 ; devide through 65536 | |
| 560 | 185 ; a) devide through 364 -> Result is in percent of a 2.4Ah Battery |
| 448 | 186 ; or b) devide through 121 -> Result is in percent of a 0.8Ah Battery |
|
37
0e1723f2761e
use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents:
35
diff
changeset
|
187 |
| 448 | 188 ; For internal battery gauging |
| 189 #DEFINE internal_saft_capacity .364 | |
| 190 #DEFINE internal_panasonic_capacity .121 | |
| 191 | |
| 192 ; For gauge IC | |
| 193 #DEFINE saft_capacity .281 ; 2.4Ah/0.085mAh/100 [%] | |
| 560 | 194 #DEFINE saft_offset .37300 ; 65536-(2.4Ah/0.085mAh) |
| 448 | 195 |
| 560 | 196 #DEFINE panasonic_capacity .94 ; 0.8Ah/0.085mAh/100 [%] |
| 448 | 197 #DEFINE panasonic_offset .56124 ; 65536-(0.8Ah/0.085mAh) |
| 198 | |
| 199 #DEFINE ncr18650_capacity .364 ; 3.1Ah/0.085mAh/100 [%] | |
| 200 #DEFINE ncr18650_offset .29065 ; 65536-(3.1Ah/0.085mAh) | |
| 201 | |
|
472
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
466
diff
changeset
|
202 #DEFINE ur16650_capacity .271 ; 2.3Ah/0.085mAh/100 [%] |
|
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
466
diff
changeset
|
203 #DEFINE ur16650_offset .38477 ; 65536-(2.3Ah/0.085mAh) |
|
4fdf6886004b
CHANGE: Show warnings either in Customview (If active) _or_ next to warning sign
heinrichsweikamp
parents:
466
diff
changeset
|
204 |
|
381
e32f424223fb
BUGFIX: Battery consumption calculation in sleep mode (3,6V battery only)
heinrichsweikamp
parents:
378
diff
changeset
|
205 #DEFINE current_sleepmode .31 |
| 0 | 206 #DEFINE current_backlight_multi .115 ; *CCPR1L+current_backlight_offset |
| 207 #DEFINE current_backlight_offset .216 | |
| 208 #DEFINE current_speed_eco .1914 | |
| 209 #DEFINE current_speed_normal .4027 | |
| 210 #DEFINE current_speed_fastest .5050 | |
| 211 #DEFINE current_ir_reciever .139 | |
| 212 #DEFINE current_compass .28 | |
| 213 | |
| 214 ; 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
|
215 #DEFINE ambient_light_max_high_36V .170 |
| 200 | 216 #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
|
217 #DEFINE ambient_light_max_high_15V .140 |
|
198
c511dc403d7e
(Slightly) reduce current consumption in Eco and sleep mode
heinrichsweikamp
parents:
196
diff
changeset
|
218 #DEFINE ambient_light_min_high .35 |
|
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
399
diff
changeset
|
219 #DEFINE ambient_light_max_medium .125 |
|
198
c511dc403d7e
(Slightly) reduce current consumption in Eco and sleep mode
heinrichsweikamp
parents:
196
diff
changeset
|
220 #DEFINE ambient_light_min_medium .25 |
|
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
399
diff
changeset
|
221 #DEFINE ambient_light_max_eco .70 |
| 201 | 222 #DEFINE ambient_light_min_eco .10 ; Must be the lowest value! |
| 0 | 223 |
| 224 ; IR Link timeout | |
| 101 | 225 #DEFINE ir_timeout_value .64 ; multiples of 62,5ms |
| 0 | 226 |
|
352
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
344
diff
changeset
|
227 ; Sp control constants |
|
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
344
diff
changeset
|
228 #DEFINE surface_sp .50 ; in cbar |
|
5c6da9fa5cb0
add setpoint change to first sample in CCR mode
heinrichsweikamp
parents:
344
diff
changeset
|
229 |
| 0 | 230 ; Gaslist hard-coded limits |
| 231 #DEFINE gaslist_min_o2 .7 ; Minimum O2 [%] | |
|
185
f515712d8cd6
BUGFIX: Check min and max values after PC configuration properly
heinrichsweikamp
parents:
183
diff
changeset
|
232 #DEFINE gaslist_max_change_depth .99 ; Max. change depth [m] |
| 0 | 233 #DEFINE gaslist_sp_stepsize .10 ; Steps for Setpoint Setup [cbar] |
| 234 #DEFINE gaslist_sp_max .160 ; Max. Setpoint [cbar] | |
| 235 #DEFINE gaslist_sp_min .50 ; Min. Setpoint [cbar] | |
| 236 | |
|
16
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
15
diff
changeset
|
237 ; Compass display |
| 214 | 238 #DEFINE compass_fast_treshold .9 ; show new heading instantly if new and old > compass_fast_treshold |
| 239 #DEFINE compass_averaging .10 ; numbers of extra averaging | |
|
16
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
15
diff
changeset
|
240 |
|
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
241 ; Hardware defines |
|
561
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
242 #DEFINE battery_gauge_available hardware_flag,0 ; OSTC has rechargeable battery with battery management chip |
|
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
243 #DEFINE ambient_sensor hardware_flag,1 ; OSTC has an ambient light sensor |
| 560 | 244 #DEFINE analog_o2_input hardware_flag,2 ; OSTC has analog inputs and S8 digital |
| 245 #DEFINE optical_input hardware_flag,3 ; OSTC has an digital optical input | |
| 246 #DEFINE ble_available hardware_flag,4 ; OSTC has an BLE module | |
| 247 #DEFINE ostc_rx_present hardware_flag,5 ; OSTC_RX circuity present | |
|
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
248 ;unused |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
249 ;unused |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
250 |
|
561
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
251 ; Hardware flag byte: |
|
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
252 ; BIT0 = OSTC has rechargeable battery with battery management chip |
|
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
253 ; BIT1 = OSTC has an ambient light sensor |
|
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
254 ; BIT2 = OSTC has analog inputs and S8 digital |
|
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
255 ; BIT3 = OSTC has an digital optical input |
|
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
256 ; BIT4 = OSTC has an BLE module |
|
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
257 ; BIT5 = OSTC_RX circuity present |
|
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
258 ; BIT6 = unused |
|
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
259 ; BIT7 = unused |
|
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
260 |
|
9c54849b8d3b
Remove routine to fix corrupt dives made with v1.80
heinrichsweikamp
parents:
560
diff
changeset
|
261 |
| 0 | 262 ;---------------------------- Macros ------------------------------------ |
| 263 | |
| 264 TSTOSS macro opt_reg ; TeST Option Skip if not Zero | |
| 265 movff opt_reg,WREG | |
| 266 tstfsz WREG,A | |
| 267 bra $+4 | |
| 268 endm | |
| 269 | |
| 270 ;---------------------------- Bank0 DATA ------------------------------------ | |
| 271 isr_backup equ 0x60 | |
| 272 isr_backup udata_ovr isr_backup ; Reserved space for interupt data | |
| 545 | 273 |
| 0 | 274 ;---- Backup for general registers |
| 560 | 275 isr_prod res 2 |
| 0 | 276 |
| 277 ;---- MS5541 subroutines | |
| 560 | 278 amb_pressure res 2 |
| 279 temperature res 2 | |
| 0 | 280 |
| 560 | 281 C1 res 2 ; Decoded calibration data |
| 282 C2 res 2 | |
| 283 C3 res 2 | |
| 284 C4 res 2 ; Here: C4-250 | |
| 285 C5 res 2 ; Here: Reference Temperature UT1 = 8*C5 + 10000 (u16 range 10.000 .. +42.760) | |
| 286 C6 res 2 | |
| 287 D1 res 2 ; raw pressure | |
| 288 D2 res 2 ; raw temperature | |
| 289 xdT res 2 | |
| 290 xdT2 res 2 | |
| 291 OFF res 2 | |
| 292 SENS res 2 | |
| 293 dLSB res 1 ; Pressure sensor interface | |
| 294 dMSB res 1 | |
| 295 clock_count res 1 | |
| 296 sensor_state_counter res 1 ; counts to eight for state maschine | |
| 297 amb_pressure_avg res 2 | |
| 298 temperature_avg res 2 | |
| 299 minimum_temperature res 2 ; minimum temperature | |
| 300 last_temperature res 2 | |
| 301 last_pressure res 2 | |
| 0 | 302 last_pressure_velocity res 2 ; For velocity |
| 560 | 303 last_surfpressure res 2 |
| 0 | 304 last_surfpressure_15min res 2 |
| 305 last_surfpressure_30min res 2 | |
| 560 | 306 rel_pressure res 2 |
| 307 sim_pressure res 2 ; hold simulated pressure in mbar if in Simulator mode | |
| 308 max_pressure res 2 | |
| 309 avg_rel_pressure res 2 | |
| 310 avg_rel_pressure_total res 2 | |
| 0 | 311 ;---- Data for ISR math subroutines |
| 560 | 312 isr_xC res 4 |
| 313 isr_xA res 2 | |
| 314 isr_xB res 2 | |
| 0 | 315 |
| 316 ;---- Data for ISR routines | |
| 560 | 317 isr1_temp res 1 ; ISR temp variable, used in ms5541.asm, isr_rtcc, isr_battery_gauge |
| 318 isr2_temp res 1 ; ISR temp variable, used isr_battery_gauge | |
| 0 | 319 |
| 320 ;---- Display brightness | |
| 560 | 321 max_CCPR1L res 1 ; Max. brightness value for CCPR1L |
| 0 | 322 |
| 323 ; Battery gauge (nAs, nC) | |
| 560 | 324 battery_gauge res 6 ; 48Bit -> 78Ah max... |
| 0 | 325 |
|
187
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
185
diff
changeset
|
326 ; IR/S8-Link |
| 255 | 327 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
|
328 ir_s8_counter res 1 |
|
669b5d00706d
CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents:
185
diff
changeset
|
329 ir_S8_timeout res 1 ; Timeout for valid data |
| 0 | 330 |
| 331 ; Compass raw data | |
| 332 compass_DX res 2 | |
| 333 compass_DY res 2 | |
| 334 compass_DZ res 2 | |
| 335 | |
| 336 accel_DX res 2 | |
| 337 accel_DY res 2 | |
| 338 accel_DZ res 2 | |
| 339 | |
| 340 ; Compass FILTERED data | |
| 341 compass_DX_f res 2 | |
| 342 compass_DY_f res 2 | |
| 343 compass_DZ_f res 2 | |
| 344 | |
| 345 accel_DX_f res 2 | |
| 346 accel_DY_f res 2 | |
| 347 accel_DZ_f res 2 | |
| 348 | |
| 349 ; Compass calibration data | |
| 350 compass_CX_f res 2 | |
| 351 compass_CY_f res 2 | |
| 352 compass_CZ_f res 2 | |
| 353 | |
| 354 ; Compass more data | |
| 355 compass_heading res 2 ; Corrected heading (in 1°) : -180 .. 180 | |
|
16
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
15
diff
changeset
|
356 compass_heading_old res 2 ; Old heading (For smoother display) |
| 170 | 357 compass_heading_shown res 2 ; Displayed heading |
| 560 | 358 ;compass_roll res 2 ; Rotation around the X axis |
| 359 ;compass_pitch res 2 ; Rotation around the Y axis | |
| 0 | 360 |
| 361 compass_a res 2 ; Tmp data for Q15 arithmetics | |
| 362 compass_b res 2 | |
| 363 compass_r res 3 | |
| 364 | |
| 365 CNS_start res 2 ; CNS value at beginning of dive | |
| 366 GF_start res 1 ; GF value at beginning of dive | |
| 367 | |
| 560 | 368 speed_setting res 1 ; =1: Eco, =2: Normal, =3: Fastest |
| 319 | 369 |
|
254
5fe7aff622f3
preparations to set a course for the compass display
heinrichsweikamp
parents:
250
diff
changeset
|
370 ;---- Data for graphical compass |
| 560 | 371 xRD res 2 ; virtual compass ruler offset |
| 372 xRDr res 2 ; virtual compass ruler offset - right end | |
| 373 xRD180 res 2 ; virtual compass ruler offset for the -180 marker | |
| 374 xLO res 1 ; lo backup to prevent trashing | |
| 375 xHI res 1 ; hi backup to prevent trashing | |
| 376 xCM res 1 ; compass bearing relative position | |
| 377 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
|
378 |
| 0 | 379 ;---------------------------- Common DATA ------------------------------------ |
| 380 | |
| 381 common equ 0x100 ; Alias for "banksel common" | |
| 382 common udata_ovr common ; Bank1 general variables | |
| 383 | |
| 384 ;---- Time and Date | |
| 560 | 385 secs res 1 |
| 386 mins res 1 | |
| 387 hours res 1 | |
| 388 day res 1 | |
| 389 month res 1 | |
| 390 year res 1 | |
| 0 | 391 surface_interval res 2 |
| 392 | |
| 560 | 393 flag1 res 1 |
| 394 flag2 res 1 | |
| 395 flag3 res 1 | |
| 396 flag4 res 1 | |
| 397 flag5 res 1 | |
| 398 flag6 res 1 | |
| 399 flag7 res 1 | |
| 400 flag8 res 1 | |
| 401 flag9 res 1 | |
| 402 flag10 res 1 | |
| 403 flag11 res 1 | |
| 404 flag12 res 1 | |
| 405 flag13 res 1 | |
| 406 flag14 res 1 | |
| 0 | 407 |
| 560 | 408 hardware_flag res 1 ; hardware descriptor flag |
|
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
234
diff
changeset
|
409 |
| 0 | 410 temp1 res 1 |
| 411 temp2 res 1 | |
| 412 | |
| 413 ;---- Interface to wait macros | |
| 414 wait_temp res 1 | |
| 415 waitms_temp res 1 | |
| 416 | |
| 417 ;---- Interface to graphic subroutines (aa_wordprocessor, color_processor, ...) | |
| 418 win_leftx2 res 1 | |
| 419 win_top res 1 | |
| 420 win_width res 2 | |
| 421 win_height res 1 | |
| 422 win_bargraph res 1 | |
| 423 win_color1 res 1 | |
| 424 win_color2 res 1 | |
| 425 win_font res 1 | |
| 426 | |
| 427 ;---- Draw subroutines | |
| 428 tft_temp4 res 1 | |
| 429 tft_temp3 res 1 | |
| 430 tft_temp2 res 1 | |
| 431 tft_temp1 res 1 | |
| 432 | |
| 433 ;---- data conversion subroutines | |
| 434 lo res 1 | |
| 435 hi res 1 | |
| 436 up res 1 | |
| 437 | |
| 438 ;---- RS232 temp variables | |
| 439 uart1_temp res 1 | |
| 440 uart2_temp res 1 | |
| 378 | 441 uart3_temp res 1 |
| 0 | 442 |
| 443 ;---- Data for math subroutines | |
| 444 divA res 2 | |
| 445 divB res 1 | |
| 446 xC res 4 | |
| 447 xA res 2 | |
| 448 xB res 2 | |
| 449 sub_c res 2 | |
| 450 sub_a res 2 | |
| 451 sub_b res 2 | |
| 452 | |
| 453 ;---- Data for conversion subroutines | |
| 560 | 454 cvt_flags res 2 |
| 0 | 455 ignore_digits res 1 |
| 456 | |
| 457 #define leftbind cvt_flags,0 | |
| 458 #define ignore_digit3 cvt_flags,1 | |
| 459 #define ignore_digit4 cvt_flags,2 | |
| 460 #define ignore_digit5 cvt_flags,3 | |
| 360 | 461 #DEFINE enable_screen_dumps cvt_flags,4 ; =1: Ignore vin_usb, wait for "l" command (Screen dump |
| 462 #DEFINE screen_type cvt_flags,5 ; =1: display1, =0; display0 | |
| 427 | 463 #DEFINE compass_type cvt_flags,6 ; =1: compass1, =0: compass0 |
|
464
0491a84fd0b8
CHANGE: Easier to understand "New Battery" menu (OSTC model dependent)
heinrichsweikamp
parents:
461
diff
changeset
|
464 #DEFINE analog_switches cvt_flags,7 ; =1: Analog switches available |
| 560 | 465 |
| 466 #DEFINE compass_type2 cvt_flags+1,0 ; =1: Compass2, =0: Compass1 or compass0 | |
| 467 | |
| 468 | |
| 0 | 469 ;---- Misc. |
| 470 timeout_counter res 1 | |
| 471 timeout_counter2 res 1 | |
| 472 timeout_counter3 res 1 | |
| 473 batt_voltage res 2 ; Battery voltage in mV | |
| 474 batt_percent res 1 ; Battery in percent (1-100) | |
| 475 ambient_light res 2 ; ambient_light level | |
| 476 lo_temp res 1 | |
| 477 hi_temp res 1 | |
|
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
96
diff
changeset
|
478 convert_value_temp res 3 ; used in menu_battery_state_convert_date |
| 560 | 479 active_gas res 1 ; the currently breathed gas (1-5) |
| 480 active_diluent res 1 ; backup when switching back from bailout to CCR/pSCR loop | |
| 0 | 481 warning_counter res 1 ; Counts amount of warning in divemode |
| 482 warning_page res 1 ; current # of warning page | |
| 483 | |
| 484 ; Remind history for menu processor (and such): | |
| 485 menustack res 5 ; menu stack | |
| 486 menupos res 1 ; Logbook and divemode menu | |
| 487 menupos2 res 1 ; For dive mode simulator and pre-menu | |
| 488 menupos3 res 1 ; For Customviews | |
| 489 menupos4 res 1 ; For divemode menu | |
| 490 | |
| 491 ; Apnoe stuff that must be in bank common | |
| 492 apnoe_mins res 1 | |
| 493 apnoe_secs res 1 | |
| 494 apnoe_max_pressure res 2 | |
| 495 | |
| 496 ; Divemode | |
| 497 divemins res 2 | |
| 498 divesecs res 1 | |
|
23
e402813343b6
new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents:
18
diff
changeset
|
499 samplingrate res 1 |
| 0 | 500 samplesecs_value res 1 |
| 501 divisor_temperature res 1 | |
| 502 divisor_deco res 1 | |
| 503 divisor_gf res 1 | |
| 504 divisor_ppo2_sensors res 1 | |
| 505 divisor_decoplan res 1 | |
| 506 divisor_cns res 1 | |
| 507 divisor_tank res 1 | |
| 508 average_depth_hold res 4 | |
| 509 average_depth_hold_total res 4 | |
| 510 total_divetime_seconds res 2 | |
| 511 average_divesecs res 2 ; For the resettable stopwatch | |
| 512 decodata res 2 | |
| 513 apnoe_timeout_counter res 1 | |
| 514 apnoe_surface_mins res 1 | |
| 515 apnoe_surface_secs res 1 | |
| 516 | |
| 517 ; Profile storing | |
| 560 | 518 AlarmType res 1 |
| 519 samplesecs res 1 | |
| 520 EventByte res 1 | |
| 521 EventByte2 res 1 | |
| 522 ProfileFlagByte res 1 | |
| 0 | 523 |
| 524 ; External flash | |
| 525 ext_flash_address res 3 ; 24bit Address | |
| 526 ext_flash_log_pointer res 3 ; 24bit Address for logbook profile storing | |
| 527 ext_flash_dive_counter res 3 ; 24bit Counter for dive length (increased in write_byte_ext_flash_plus) | |
| 528 | |
| 529 ; I2C | |
| 113 | 530 i2c_temp res 2 ; Temp |
| 0 | 531 |
| 532 ; O2 Sensor data | |
| 533 o2_mv_sensor1 res 2 ; in 0.1mV steps | |
| 534 o2_mv_sensor2 res 2 ; in 0.1mV steps | |
| 535 o2_mv_sensor3 res 2 ; in 0.1mV steps | |
| 536 o2_ppo2_sensor1 res 1 ; Sensor1 ppO2 (in 0.01bar steps) | |
| 537 o2_ppo2_sensor2 res 1 ; Sensor2 ppO2 (in 0.01bar steps) | |
| 538 o2_ppo2_sensor3 res 1 ; Sensor3 ppO2 (in 0.01bar steps) | |
| 539 hud_status_byte res 1 | |
| 540 ;Status Byte/ | |
|
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
143
diff
changeset
|
541 #DEFINE hud_connection_ok hud_status_byte,0 ;Bit0 = 1 -> HUD connection ok |
| 0 | 542 ;Bit1 = 1 -> HUD is calibrated |
| 543 ;Bit2 = 1 -> HUD Battery is low (<3000mV) | |
|
145
e3ac5b2021bc
NEW: Setpoint-Fallback option for external O2 sensor failure
heinrichsweikamp
parents:
143
diff
changeset
|
544 #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
|
545 #DEFINE sensor2_active hud_status_byte,4 ;=1: Sensor2 is active |
| 113 | 546 #DEFINE sensor3_active hud_status_byte,5 ;=1: Sensor3 is active |
| 0 | 547 ;Bit6 unused in stand-alone HUD |
| 548 ;Bit7 unused in stand-alone HUD | |
| 549 | |
| 560 | 550 sensor_setpoint res 1 ; sensor ppo2 in 0.01bar for deco routine |
| 0 | 551 |
| 552 better_gas_number res 1 ; number (1-5) of the "better gas" in divemode, =0: no better gas available | |
| 560 | 553 customview_divemode res 1 ; keeps last custom view |
| 554 customview_surfmode res 1 | |
| 555 safety_stop_countdown res 1 ; counts seconds of safety stop | |
| 556 tft_update_flags res 3 ; probably more then needed... | |
| 557 | |
| 558 ; bank common 1 Byte left here... | |
| 559 | |
|
104
223579e905c3
Show a Safety Stop if enabled (Menu "Deco Parameters")
heinrichsweikamp
parents:
101
diff
changeset
|
560 |
| 0 | 561 ;---------------------------- TMP DATA --------------------------------------- |
| 562 ; Space for various overlayed data from color, word, menu processors, etc. | |
| 563 ; | |
| 564 | |
| 565 tmp udata_ovr 0x1A0 ; Bank1 shared TMP space | |
| 566 tmp equ 0x1A0 ; Alias for CBLOCK directive. | |
| 418 | 567 res 0x05F ; RESERVED area. |
| 0 | 568 |
|
268
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
266
diff
changeset
|
569 ;---------------------------- Common2 DATA ------------------------------------ |
|
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
266
diff
changeset
|
570 |
|
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
266
diff
changeset
|
571 common2 equ 0xA00 ; Alias for "banksel common" |
|
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
266
diff
changeset
|
572 common2 udata_ovr common2 ; Bank1 general variables |
|
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
266
diff
changeset
|
573 |
| 560 | 574 s8_rawdata_sensor1 res 3 ; 24bit A/D raw data from S8 HUD sensor 1 |
| 575 s8_rawdata_sensor2 res 3 ; 24bit A/D raw data from S8 HUD sensor 2 | |
| 576 s8_rawdata_sensor3 res 3 ; 24bit A/D raw data from S8 HUD sensor 3 | |
|
268
29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
heinrichsweikamp
parents:
266
diff
changeset
|
577 |
| 560 | 578 hud_battery_mv res 2 ; hud/ppo2 monitor battery voltage in mV |
| 579 start_day res 1 ; At start of dive (For logbook) | |
| 580 start_month res 1 ; At start of dive (For logbook) | |
| 581 start_year res 1 ; At start of dive (For logbook) | |
| 582 start_hours res 1 ; At start of dive (For logbook) | |
| 583 start_mins res 1 ; At start of dive (For logbook) | |
| 378 | 584 |
| 560 | 585 old_velocity res 4 ; Stores the last 4 speeds (8 seconds) in m/min |
| 586 opt_gas_type_backup res 5 ; 0=Disabled, 1=First, 2=Travel, 3=Deco | |
| 587 opt_dil_type_backup res 5 ; 0=Disabled, 1=First, 2=Normal | |
| 588 | |
| 589 opt_OC_bail_gas_change_backup res 5 ; Gas change depths OC/Bailout | |
| 590 opt_dil_change_backup res 5 ; Gas change depths Diluents | |
|
516
2ef8cf6b320d
NEW: ppO2 blinks in sensor mode when min/max boundaries are hit
heinrichsweikamp
parents:
509
diff
changeset
|
591 |
| 448 | 592 internal_battery_capacity res 2 ; For internal battery gauging |
| 560 | 593 battery_capacity res 2 ; For battery gauge IC |
| 594 battery_offset res 2 ; For battery gauge IC | |
| 448 | 595 |
| 560 | 596 analog_sw1_raw res 2 ; idle values (average) |
| 597 analog_sw2_raw res 2 ; idle values (average) | |
| 598 analog_counter res 1 ; for averaging | |
| 599 analog_sw1 res 1 ; analog value for switch 1 | |
| 600 analog_sw2 res 1 ; analog value for switch 2 | |
| 601 battery_type res 1 ; =0:1.5V, =1:3,6V Saft, =2:LiIon 3,7V/0.8Ah, =3:LiIon 3,7V/3.1Ah, =4: LiIon 3,7V/2.3Ah | |
| 602 uptime res 4 ; Uptime [s] | |
| 603 lastdive_time res 4 ; Time since last dive [s] | |
| 604 lastdive_duration res 3 ; mins:2 and secs | |
| 605 lastdive_maxdepth res 2 ; in mbar | |
| 466 | 606 battery_acumulated_charge res 2 ; Raw values in battery gauge IC |
| 560 | 607 gauge_status_byte res 1 ; Gauge IC status byte |
| 608 button_polarity res 1 ; 0xFF (Both normal), 0x00 (Both inverted), 0x01 (Left inverted only), 0x02 (Right inverted only) | |
| 609 gaslist_gas_global res 1 ; for color coding the gas lists | |
| 610 ;active_gas_type res 1 ; 0=Disabled, 1=First, 2=Travel, 3=Deco for OC gases and 0=Disabled, 1=First, 2=Normal for diluents | |
| 611 rx_buffer res .48 ; Buffer for RX data (Slots 0-7) | |
| 612 rx_firmware res 2 ; The RX firmware version xx.yy | |
| 613 | |
| 614 gas6_O2_ratio res 1 ; gas6 O2 ratio | |
| 615 gas6_He_ratio res 1 ; gas6 He ratio | |
| 616 gas6_temp res 1 ; temp used in divemenu_tree.asm | |
| 617 | |
|
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
618 |
| 0 | 619 ;----------------------------------------------------------------------------- |
| 620 ; Reserve BANK2 for general purpose buffer (strings, images, etc). | |
| 621 ; NOTE: Needs to be aligned with a bank (LOW(buffer)==0). | |
| 622 buffer udata_ovr 0x200 | |
| 623 buffer res .256 | |
| 624 | |
| 625 opt_table equ 0xE00 | |
| 626 opt_table udata_ovr opt_table | |
| 627 | |
| 628 ;---- Dive Options | |
| 629 opt_gas_O2_ratio res 5 ; Needed because deco gaslist use N2 | |
| 630 opt_dil_O2_ratio res 5 ; Must be in line with opt_gas_O2_ratio | |
| 631 opt_gas_He_ratio res 5 ; He ratio Gas1-5 | |
| 632 opt_dil_He_ratio res 5 ; Must be in line with opt_gas_He_ratio | |
| 633 opt_gas_type res 5 ; 0=Disabled, 1=First, 2=Travel, 3=Deco | |
|
507
4e6f5c36f4cc
NEW: Two ppO2 max settings. One for travel/bottom and one for deco gases
heinrichsweikamp
parents:
506
diff
changeset
|
634 opt_dil_type res 5 ; 0=Disabled, 1=First, 2=Normal -> ; Must be in line with opt_gas_type |
|
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
479
diff
changeset
|
635 opt_dive_mode res 1 ; 0=OC, 1=CC, 2=Gauge, 3=Apnea, 4=PSCR |
| 0 | 636 opt_ccr_mode res 1 ; =0: Fixed SP, =1: Sensor |
|
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
96
diff
changeset
|
637 opt_OC_bail_gas_change res 5 ; Gas change depths OC/Bailout |
| 579 | 638 opt_CC_dil_gas_change res 5 ; Work-Around for 2.97 stable |
| 639 | |
| 0 | 640 ;---- Managing Settings |
| 641 opt_brightness res 1 ; =0: Eco, =1:Medium, =2:Full | |
| 642 opt_salinity res 1 ; 0-5% | |
| 643 #DEFINE opt_name_length .60 ; Custom text string 5 rows with 12 chars | |
| 644 opt_name res opt_name_length | |
| 645 opt_language res 1 ; Current language. 0=EN, 1=DE, 2=FR, 3=SP | |
| 646 opt_units res 1 ; 0:m/°C, 1:ft/°F | |
| 578 | 647 opt_dateformat res 1 ; =0:MMDDYY, =1:DDMMYY, =2:YYMMDD |
| 0 | 648 opt_last_stop res 1 ; =3:3m, =4:4m, =5:5m, =6:6m |
| 649 opt_aGF_high res 1 ; Alternative GF HIGH | |
| 650 opt_aGF_low res 1 ; Alternative GF LOW | |
| 651 opt_GF_high res 1 ; GF HIGH | |
| 652 opt_GF_low res 1 ; GF LOW | |
| 653 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
|
654 opt_compass_gain res 1 ; 0-7 (230LSB/Gauss to 1370LSB/Gaus) |
| 24 | 655 opt_sampling_rate res 1 ; =1: 10s, =0: 2s |
| 50 | 656 opt_dive_color_scheme res 1 ; 0-3 |
|
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
89
diff
changeset
|
657 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
|
658 opt_enable_safetystop res 1 ; =1: A safety stop is shown |
| 113 | 659 opt_calibration_O2_ratio res 1 ; %O2 of calibration gas |
| 578 | 660 opt_x_s1 res 2 ; calibration factor (Not stored in EEPROM) |
| 661 opt_x_s2 res 2 ; calibration factor (Not stored in EEPROM) | |
| 662 opt_x_s3 res 2 ; calibration factor (Not stored in EEPROM) | |
| 560 | 663 opt_sensor_fallback res 1 ; NOT USED ANY MORE, KEPT FOR COMPATIBILITY WITH EEPROM IMAGE |
|
155
5f71e31bd5b3
CHANGE: Re-arranged Settings Menu, add 180? rotate to menu
heinrichsweikamp
parents:
151
diff
changeset
|
664 opt_flip_screen res 1 ; =1: Flip the screen |
|
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
665 opt_cR_button_left res 1 ; Left button sensitivity (cR hardware) |
|
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
218
diff
changeset
|
666 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
|
667 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
|
668 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
|
669 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
|
670 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
|
671 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
|
672 opt_safety_stop_length res 1 ; [s] |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
673 opt_safety_stop_start res 1 ; [cbar] |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
674 opt_safety_stop_end res 1 ; [cbar] |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
398
diff
changeset
|
675 opt_safety_stop_reset res 1 ; [cbar] |
| 560 | 676 opt_diveTimeout res 1 ; Timeout for Divemode [min] |
| 677 opt_sim_setpoint_number res 1 ; NEW setpoint to use for deco calculation | |
| 678 opt_calc_asc_gasvolume res 1 ; NEW calculate OC gas volume needs for ascent | |
| 679 opt_sim_use_aGF res 1 ; NEW use GF (no) or aGF (yes) for deco calculation | |
| 680 opt_enable_IBCD res 1 ; NEW enable IBCD warning | |
|
562
8b7ea27ea1fa
seperate desat and sat multipliers for GF and Non-GF modes. Set to 100/100 as default in GF mode
heinrichsweikamp
parents:
561
diff
changeset
|
681 opt_sat_multiplier_gf res 1 ; Bühlmann safety factor for GF deco |
|
8b7ea27ea1fa
seperate desat and sat multipliers for GF and Non-GF modes. Set to 100/100 as default in GF mode
heinrichsweikamp
parents:
561
diff
changeset
|
682 opt_desat_multiplier_gf res 1 ; Bühlmann safety factor for GF deco |
|
8b7ea27ea1fa
seperate desat and sat multipliers for GF and Non-GF modes. Set to 100/100 as default in GF mode
heinrichsweikamp
parents:
561
diff
changeset
|
683 opt_sat_multiplier_non_gf res 1 ; Bühlmann safety factor for NON-GF deco |
|
8b7ea27ea1fa
seperate desat and sat multipliers for GF and Non-GF modes. Set to 100/100 as default in GF mode
heinrichsweikamp
parents:
561
diff
changeset
|
684 opt_desat_multiplier_non_gf res 1 ; Bühlmann safety factor for NON-GF deco |
| 0 | 685 |
| 686 ;-----------------------------EEPROM DATA ------------------------------------ | |
| 687 ; Automatic reset of all options when this is changed: | |
| 560 | 688 #define eeprom_opt_serial 0x0006 ; Version 0.6 |
| 0 | 689 |
| 690 ;----------------------------------------------------------------------------- | |
| 691 ; Flags | |
| 692 #DEFINE switch_left flag1,0 | |
| 693 #DEFINE switch_right flag1,1 | |
| 560 | 694 #DEFINE neg_flag flag1,2 ; e.g. sub16 (sub_c = sub_a - sub_b) |
| 0 | 695 #DEFINE pressure_refresh flag1,3 ; =1: A new pressure/temperature is available |
| 696 #DEFINE sleepmode flag1,4 ; =1: In Sleepmode | |
| 697 #DEFINE tft_is_dimming flag1,5 ; =1: The TFT is dimming, ignore light sensor | |
| 698 #DEFINE display_velocity flag1,6 ; =1: show velocity | |
| 699 #DEFINE no_sensor_int flag1,7 ; =1: block any further access to pressure sensor | |
| 700 | |
| 701 #DEFINE rs232_recieve_overflow flag2,0 ; =1: An RS232 timeout overflow occoured | |
| 702 #DEFINE stored_gas_changed flag2,1 ; =1: Stored Gas changed | |
| 703 #DEFINE high_altitude_mode flag2,2 ; =1: Unit was manually turned on with ambient pressure <880mbar | |
| 704 #DEFINE FLAG_apnoe_mode flag2,3 ; =1: Apnoe mode selected | |
| 705 #DEFINE restore_deco_data flag2,4 ; =1: Restore deco data (After simulation) | |
| 706 #DEFINE premenu flag2,5 ; =1: Premenu/Divemenu selected | |
| 560 | 707 #DEFINE menubit flag2,6 ; menu |
| 0 | 708 #DEFINE simulatormode_active flag2,7 ; =1: Simulator mode active, override pressure sensor readings |
| 709 | |
| 710 #DEFINE divemode_menu flag3,0 ; =1: Divemode menu is shown | |
| 560 | 711 #DEFINE onesecupdate flag3,1 ; =1: after any second |
| 0 | 712 #DEFINE twosecupdate flag3,2 ; =1: New two-second update |
| 713 #DEFINE toggle_customview flag3,3 ; =1: Next customview | |
| 560 | 714 #DEFINE oneminupdate flag3,4 ; =1: after any minute |
| 0 | 715 #DEFINE divemode flag3,5 ; =1: in Divemode |
| 716 #DEFINE battery_is_36v flag3,6 ; =1: 3,6V Battery is in use | |
| 717 #DEFINE warning_active flag3,7 ; =1: A warning is active in divemode or surfacemode | |
| 718 | |
| 719 #DEFINE better_gas_available flag4,0 ; =1: A better gas is available | |
| 720 #DEFINE blinking_better_gas flag4,1 ; =1: Gas is blinking | |
| 721 #DEFINE menuview flag4,2 ; =1: A menuview is shown in divemode (e.g. "Menu?") | |
| 722 #DEFINE quarter_second_update flag4,3 ; =1: A new 1/4 second has begun | |
| 723 #DEFINE divemode_gaschange flag4,4 ; =1: The gas will change very soon | |
| 724 #DEFINE decostop_active flag4,5 ; =1: Decompression stop shown | |
| 725 #DEFINE depth_greater_100m flag4,6 ; =1: Current Depth > 100m | |
| 726 #DEFINE realdive flag4,7 ; =1: A real dive during divemode | |
| 727 | |
| 728 #DEFINE dive_warning_displayed flag5,0 ; =1: The warning sign is shown | |
| 729 #DEFINE reset_average_depth flag5,1 ; =1: Reset the average depth | |
| 730 #DEFINE store_sample flag5,2 ; =1: Store a new sample | |
| 731 #DEFINE divemode2 flag5,3 ; =1: Dive longer then one minute | |
| 560 | 732 #DEFINE FLAG_active_descent flag5,4 ; Used in Apnoe mode |
| 0 | 733 #DEFINE event_occured flag5,5 ; =1: An event occured, store it! |
| 734 #DEFINE divemode_menu_active flag5,6 ; =1: The divemode menu is shown | |
| 735 #DEFINE temp_changed flag5,7 ; =1: The temperature changed | |
| 736 | |
| 737 #DEFINE gas6_changed flag6,0 ; =1: Gas 6 has been selected/changed underwater | |
| 738 #DEFINE onehourupdate flag6,1 ; =1: A new hour has just begun | |
| 739 #DEFINE settime_setdate flag6,2 ; =1: In the Set Time or Set Date Menu | |
| 740 #DEFINE setpoint_changed flag6,3 ; =1: Setpoint has been changed | |
| 741 #DEFINE second_row_warning flag6,4 ; =1: The second row contains a warning | |
| 742 #DEFINE FLAG_ccr_mode flag6,5 ; =1: CCR mode (Fixed ppO2 or Sensor) active | |
| 743 #DEFINE dive_hud1_displayed flag6,6 ; =1: The Sensor1 HUD reading is displayed | |
| 744 #DEFINE dive_hud2_displayed flag6,7 ; =1: The Sensor2 HUD reading is displayed | |
| 745 | |
| 746 #DEFINE dive_hud3_displayed flag7,0 ; =1: The Sensor3 HUD reading is displayed | |
| 747 #DEFINE no_more_divesecs flag7,1 ; =1: Do no longer show seconds in divemode | |
| 748 #DEFINE FLAG_gauge_mode flag7,2 ; =1: In Gauge mode | |
| 560 | 749 #DEFINE ignore_last_edited_gas flag7,3 ; Used in gaslist_cleanup_list |
| 0 | 750 #DEFINE ccr_diluent_setup flag7,4 ; =1: Setting up Diluents ("Gas6-10") |
| 560 | 751 #DEFINE menu_show_sensors flag7,5 ; =1: Update HUD data in menu ## NOT USED ANYMORE ## |
| 0 | 752 #DEFINE short_gas_decriptions flag7,6 ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint |
| 11 | 753 #DEFINE max_depth_greater_100m flag7,7 ; =1: Max. Depth > 100m |
| 0 | 754 |
| 755 #DEFINE is_bailout flag8,0 ; =1: Bailout | |
| 756 #DEFINE is_bailout_menu flag8,1 ; =1: Bailout | |
| 757 #DEFINE toggle_gf flag8,2 ; =1: Toggle GF/aGF | |
| 758 #DEFINE use_agf flag8,3 ; =1: Use aGF (instead of GF) | |
| 759 #DEFINE battery_removed_in_usb flag8,4 ; =1: The battery has been removed in USB | |
| 760 #DEFINE adc_running flag8,5 ; =1: The ADC is in use | |
| 761 #DEFINE comm_service_enabled flag8,6 ; =1: COMM Service mode unlocked | |
| 762 #DEFINE compass_enabled flag8,7 ; =1: The compass and accelerometer chip is active | |
| 763 | |
|
16
7b06f20881be
calm compass reading for minor heading changes
heinrichsweikamp
parents:
15
diff
changeset
|
764 #DEFINE compass_fast_mode flag9,0 ; =1: The compass is in fast mode |
| 50 | 765 #DEFINE in_color_menu flag9,1 ; =1: In the color scheme menu |
| 98 | 766 #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
|
767 #DEFINE win_invert flag9,3 ; =1: Invert font output |
| 560 | 768 #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
|
769 #DEFINE safety_stop_active flag9,5 ; =1: The safety stop is currently displayed |
| 113 | 770 #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
|
771 #DEFINE print_compass_label flag9,7 ; =1: print the graphical comapss label |
| 113 | 772 |
| 773 #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
|
774 #DEFINE menu_show_sensors2 flag10,1; =1: Update mV data in calibration menu |
| 192 | 775 #DEFINE use_O2_sensor1 flag10,2; =1: Use this sensor for deco |
| 776 #DEFINE use_O2_sensor2 flag10,3; =1: Use this sensor for deco | |
| 777 #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
|
778 #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
|
779 #DEFINE blinking_setpoint flag10,6; =1: SP is blinking |
| 151 | 780 #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
|
781 |
|
e79bc535ef9e
ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents:
188
diff
changeset
|
782 #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
|
783 #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
|
784 #DEFINE sensor3_calibrated_ok flag11,2; =1: This sensor has been calibrated ok |
| 192 | 785 #DEFINE voting_logic_sensor1 flag11,3; =1: This sensor is within the voting logic threshold |
| 786 #DEFINE voting_logic_sensor2 flag11,4; =1: This sensor is within the voting logic threshold | |
| 787 #DEFINE voting_logic_sensor3 flag11,5; =1: This sensor is within the voting logic threshold | |
| 207 | 788 #DEFINE cc_active flag11,6; =1: Constant Current active (cR Hardware) |
| 789 #DEFINE cv_active flag11,7; =1: Constant Voltage active (cR Hardware) | |
| 250 | 790 |
| 255 | 791 #DEFINE compass_bearing_set flag12,0 ; bearing set |
| 792 #DEFINE compass_bearing_eq flag12,1 ; bearing is in direction? do not show << or >> | |
| 793 #DEFINE compass_bearing_lft flag12,2 ; bearing is to the left/<< if set, otherwise to the right/>> | |
| 794 #DEFINE compass_bearing_vis flag12,3 ; bearing is visible? (either ahead or behind/-180°) | |
| 795 #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
|
796 #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
|
797 #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
|
798 #DEFINE blinking_depth_toggle flag12,7 ; toggle to blink |
| 255 | 799 |
|
315
4f83470dcece
VSIbar #3: remaining changes for the split style bar
Janos Kovacs <kovjanos@gmail.com>
parents:
310
diff
changeset
|
800 #DEFINE neg_flag_velocity flag13,0 ; neg_flag backup for velocity logic |
| 560 | 801 #DEFINE analog_sw1_pressed flag13,1 ; =1: Analog switch 1 pressed |
| 802 #DEFINE analog_sw2_pressed flag13,2 ; =1: Analog switch 2 pressed | |
|
338
2811932b4e99
NEW: Mode Auto SP: Automatically switches the SP during descent (CC Mode)
heinrichsweikamp
parents:
337
diff
changeset
|
803 #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
|
804 #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
|
805 #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
|
806 #DEFINE sp5_switched flag13,6 ; =1: This setpoint has been autoselected already |
| 560 | 807 #DEFINE use_old_batt_flag flag13,7 ; =1: load old battery information after power-on reset |
|
480
ad8acade5567
NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents:
479
diff
changeset
|
808 |
| 560 | 809 #DEFINE FLAG_pscr_mode flag14,0 ; =1: OSTC is in PSCR mode |
| 810 #DEFINE deep_sleep flag14,1 ; OSTC is in deep sleep (ignore buttons, etc) | |
| 811 #DEFINE sensors_agree flag14,2 ; =1: the ppO2 of all sensors are within the threshold range | |
| 812 #DEFINE gas_needs_attention flag14,3 ; =1: the gas needs attention has been raised before | |
| 813 #DEFINE gas_needs_warning flag14,4 ; =1: the gas needs warning has been raised before | |
| 814 #DEFINE sensor_warning flag14,5 ; =1: the sensors disagree warning has been raised before | |
| 815 #DEFINE alternative_divelayout flag14,6 ; =1: the alternative divelayout is used (aka Blind Mode) | |
| 816 #DEFINE i2c_error_flag flag14,7 ; =1: An I2C error occured | |
| 817 | |
| 818 | |
| 819 ; Update flags in divemode, =1: Update the screen | |
| 820 #DEFINE FLAG_TFT_divemode_mask tft_update_flags+0,0 | |
| 821 #DEFINE FLAG_TFT_display_ndl_mask tft_update_flags+0,1 | |
| 822 #DEFINE FLAG_TFT_depth tft_update_flags+0,2 | |
| 823 #DEFINE FLAG_TFT_divemins tft_update_flags+0,3 | |
| 824 #DEFINE FLAG_TFT_show_safety_stop tft_update_flags+0,4 | |
| 825 #DEFINE FLAG_TFT_display_ndl tft_update_flags+0,5 | |
| 826 #DEFINE FLAG_TFT_display_deko_mask tft_update_flags+0,6 | |
| 827 #DEFINE FLAG_TFT_display_deko tft_update_flags+0,7 | |
| 828 #DEFINE FLAG_TFT_display_tts tft_update_flags+1,0 | |
| 829 #DEFINE FLAG_TFT_temp_divemode tft_update_flags+1,1 | |
| 830 #DEFINE FLAG_TFT_divemode_warning tft_update_flags+1,2 | |
| 831 #DEFINE FLAG_TFT_divemode_warning_clear tft_update_flags+1,3 | |
| 832 #DEFINE FLAG_TFT_active_gas_divemode tft_update_flags+1,4 | |
| 833 #DEFINE FLAG_TFT_clear_safety_stop tft_update_flags+1,5 | |
| 834 #DEFINE FLAG_TFT_max_depth tft_update_flags+1,6 | |
| 835 #DEFINE FLAG_TFT_divemode_mask_alt tft_update_flags+1,7 | |
| 836 #DEFINE FLAG_TFT_dive_warning_text_clear tft_update_flags+2,0 | |
| 837 #DEFINE FLAG_TFT_dive_warning_text_clr2 tft_update_flags+2,1 | |
| 838 #DEFINE FLAG_TFT_max_depth_alt tft_update_flags+2,2 | |
| 839 #DEFINE FLAG_TFT_big_deco_alt tft_update_flags+2,3 | |
| 840 #define FLAG_TFT_not_defined_yet tft_update_flags+2,7 ; last usable flag within tft_update_flags memory space | |
| 841 | |
| 842 | |
| 843 ; Bit Masks for communication with p2_deco.c | |
| 844 #define DECO_STATUS_MASK .3 | |
| 845 | |
| 846 ; Bit Flags for communication with p2_deco.c - char_O_deco_status | |
| 847 #define DECO_STATUS_0_FLAG .0 | |
| 848 #define DECO_STATUS_1_FLAG .1 | |
| 849 #define DECO_MODE_LOOP_FLAG .2 | |
| 850 #define DECO_MODE_PSCR_FLAG .3 | |
| 851 #define DECO_PLAN_FLAG .4 | |
| 852 #define DECO_CNS_FLAG .5 | |
| 853 #define DECO_VOLUME_FLAG .6 | |
| 854 #define DECO_ASCENT_FLAG .7 | |
| 855 | |
| 856 ; Bit Flags for communication with p2_deco.c - char_O_main_status | |
| 857 ;#define DECO_MODE_LOOP_FLAG .2 | |
| 858 ;#define DECO_MODE_PSCR_FLAG .3 | |
| 859 #define DECO_GASCHANGE_OVRD .4 | |
| 860 #define DECO_BOTTOM_FLAG .6 | |
| 861 | |
| 862 ; Bit Values for communication with p2_deco.c | |
| 863 #define DECO_STATUS_INIT .3 | |
| 864 #define DECO_MODE_LOOP .4 | |
| 865 #define DECO_MODE_PSCR .8 | |
| 866 #define DECO_PLAN_ALTERNATE .16 | |
| 867 #define DECO_CNS_CALCULATE .32 | |
| 868 #define DECO_VOLUME_CALCULATE .64 | |
| 869 #define DECO_ASCENT_DELAYED .128 | |
| 870 | |
| 871 ; Bit Flags for char_O_deco_warnings | |
| 872 #define IBCD_warning .0 | |
| 873 #define IBCD_warning_lock .1 | |
| 874 #define mbubble_warning .2 | |
| 875 #define mbubble_warning_lock .3 | |
| 876 #define outside_warning .4 | |
| 877 #define outside_warning_lock .5 | |
| 878 #define stoptable_overflow .6 | |
| 879 #define deco_flag .7 | |
| 880 | |
| 881 #define char_invalid_flag .7 | |
| 882 | |
| 883 #define int_invalid_flag .2 | |
| 884 #define int_not_yet_computed .3 | |
| 885 #define int_is_zero .3 | |
| 886 #define int_low_flag .4 | |
| 887 #define int_high_flag .5 | |
| 888 #define int_prewarning_flag .6 | |
| 889 #define int_warning_flag .7 | |
| 890 | |
| 891 | |
| 892 | |
| 0 | 893 ;============================================================================= |
| 894 ; C-code Routines | |
| 895 ; PART 2 | |
| 896 extern deco_calc_CNS_decrease_15min | |
| 897 extern deco_calc_desaturation_time | |
| 898 extern deco_calc_hauptroutine | |
| 899 extern deco_calc_wo_deco_step_1_min | |
| 900 extern deco_calc_dive_interval | |
| 901 extern deco_clear_tissue | |
| 902 extern deco_pull_tissues_from_vault | |
| 903 extern deco_push_tissues_to_vault | |
| 904 |
