annotate src/ostc3.inc @ 2:ab8a7c3f1db0

battery warning levels, max. brightnes setting
author heinrichsweikamp
date Sun, 05 May 2013 15:37:24 +0200
parents 11d4fc797f74
children ed1dec74d5fd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
heinrichsweikamp
parents:
diff changeset
3 ; File ostc3.asm
heinrichsweikamp
parents:
diff changeset
4 ;
heinrichsweikamp
parents:
diff changeset
5 ; OSTC3 Platform definitions
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
heinrichsweikamp
parents:
diff changeset
16 ;#DEFINE __DEBUG
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
heinrichsweikamp
parents:
diff changeset
21 #DEFINE softwareversion_x d'0' ; Software version XX.YY
2
ab8a7c3f1db0 battery warning levels, max. brightnes setting
heinrichsweikamp
parents: 0
diff changeset
22 #DEFINE softwareversion_y d'91' ; Software version XX.YY
0
heinrichsweikamp
parents:
diff changeset
23 #DEFINE softwareversion_beta 0 ; (and 0 for release)
heinrichsweikamp
parents:
diff changeset
24
heinrichsweikamp
parents:
diff changeset
25 #DEFINE comm_service_key 0xABCDEF
heinrichsweikamp
parents:
diff changeset
26
heinrichsweikamp
parents:
diff changeset
27 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
28
heinrichsweikamp
parents:
diff changeset
29 #DEFINE CCP1CON_VALUE b'00001100' ; PWM1 for LED dimming
heinrichsweikamp
parents:
diff changeset
30 #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
31 #DEFINE T2CON_NORMAL b'00001110'
heinrichsweikamp
parents:
diff changeset
32 #DEFINE T2CON_FASTEST b'00001110' ; 1:2 Postscaler, 1:16 Prescaler, Timer 2 start -> 1960Hz (no-flicker)
heinrichsweikamp
parents:
diff changeset
33
heinrichsweikamp
parents:
diff changeset
34 ; Timing for button hold-down flags
heinrichsweikamp
parents:
diff changeset
35 #DEFINE TMR1H_VALUE_FIRST .255-.128 ; in steps of 7,8125ms -> 1s
heinrichsweikamp
parents:
diff changeset
36 #DEFINE TMR1H_VALUE_CONT .255-.32 ; in steps of 7,8125ms -> 0.25s
heinrichsweikamp
parents:
diff changeset
37 #DEFINE TMR1H_VALUE_CONT_DIVE .255-.64 ; in steps of 7,8125ms -> 0.5s
heinrichsweikamp
parents:
diff changeset
38
heinrichsweikamp
parents:
diff changeset
39 ; Color Definitions: 8Bit RGB b'RRRGGGBB'
heinrichsweikamp
parents:
diff changeset
40 #DEFINE color_red b'11100000' ; (7,0,0)
heinrichsweikamp
parents:
diff changeset
41 #DEFINE color_dark_red b'10000101' ; (4,1,1)
heinrichsweikamp
parents:
diff changeset
42 #DEFINE color_violet b'11101011' ; (7,2,3)
heinrichsweikamp
parents:
diff changeset
43 #DEFINE color_blue b'11000111' ; (6,1,3)
heinrichsweikamp
parents:
diff changeset
44 #DEFINE color_green b'00011100' ; (0,7,0)
heinrichsweikamp
parents:
diff changeset
45 #DEFINE color_greenish b'00111110' ; (1,7,2)
heinrichsweikamp
parents:
diff changeset
46 #DEFINE color_dark_green b'00111001' ; (1,6,1)
heinrichsweikamp
parents:
diff changeset
47 #DEFINE color_yellow b'11111101' ; (7,7,1)
heinrichsweikamp
parents:
diff changeset
48 #DEFINE color_white b'11111111' ; (7,7,3)
heinrichsweikamp
parents:
diff changeset
49 #DEFINE color_black b'00000000' ; (0,0,0)
heinrichsweikamp
parents:
diff changeset
50 #DEFINE color_deepblue b'00000010' ; (0,0,2)
heinrichsweikamp
parents:
diff changeset
51 #DEFINE color_grey b'11011111' ; (6,7,3)
heinrichsweikamp
parents:
diff changeset
52 #DEFINE color_cyan b'11011111' ; (6,7,3)
heinrichsweikamp
parents:
diff changeset
53 #DEFINE color_lightblue b'11011011' ; (6,7,3)
heinrichsweikamp
parents:
diff changeset
54 #DEFINE color_orange b'11111000' ; (7,6,0)
heinrichsweikamp
parents:
diff changeset
55 #DEFINE color_pink b'11111010' ; (7,6,2)
heinrichsweikamp
parents:
diff changeset
56
heinrichsweikamp
parents:
diff changeset
57 #DEFINE FT_TINY .0
heinrichsweikamp
parents:
diff changeset
58 #DEFINE FT_SMALL .1
heinrichsweikamp
parents:
diff changeset
59 #DEFINE FT_MEDIUM .2
heinrichsweikamp
parents:
diff changeset
60 #DEFINE FT_LARGE .3
heinrichsweikamp
parents:
diff changeset
61
heinrichsweikamp
parents:
diff changeset
62 #DEFINE warn_depth .1
heinrichsweikamp
parents:
diff changeset
63 #DEFINE warn_cns .2
heinrichsweikamp
parents:
diff changeset
64 #DEFINE warn_gf .3
heinrichsweikamp
parents:
diff changeset
65 #DEFINE warn_ppo2 .4
heinrichsweikamp
parents:
diff changeset
66 #DEFINE warn_velocity .5
heinrichsweikamp
parents:
diff changeset
67 #DEFINE warn_ceiling .6
heinrichsweikamp
parents:
diff changeset
68 #DEFINE warn_gas_in_gaslist .7
heinrichsweikamp
parents:
diff changeset
69 #DEFINE warn_ppo2_hud .8
heinrichsweikamp
parents:
diff changeset
70 #DEFINE warn_battery .9
heinrichsweikamp
parents:
diff changeset
71
heinrichsweikamp
parents:
diff changeset
72
heinrichsweikamp
parents:
diff changeset
73 ; Profile recording parameters
heinrichsweikamp
parents:
diff changeset
74 #DEFINE logbook_profile_version 0x23
heinrichsweikamp
parents:
diff changeset
75 #DEFINE samplingrate .10 ; [seconds]
heinrichsweikamp
parents:
diff changeset
76 #DEFINE samplingrate_apnoe .1 ; [seconds]
heinrichsweikamp
parents:
diff changeset
77 ; Warning: Divisors must be <.16 !
heinrichsweikamp
parents:
diff changeset
78 #DEFINE div_temperature .6 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
79 #DEFINE div_deco .6 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
80 #DEFINE div_gf .12 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
81 #DEFINE div_ppo2_sensors .2 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
82 #DEFINE div_decoplan .12 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
83 #DEFINE div_cns .12 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
84 #DEFINE div_tank .0 ; x samplingrate [s]
heinrichsweikamp
parents:
diff changeset
85 ; Warning: Information lengths must be <.16 !
heinrichsweikamp
parents:
diff changeset
86 #DEFINE infolength_temperature .2 ; [byte]
heinrichsweikamp
parents:
diff changeset
87 #DEFINE infolength_deco .2 ; [byte]
heinrichsweikamp
parents:
diff changeset
88 #DEFINE infolength_gf .1 ; [byte]
heinrichsweikamp
parents:
diff changeset
89 #DEFINE infolength_ppo2_sensors .9 ; [byte]
heinrichsweikamp
parents:
diff changeset
90 #DEFINE infolength_decoplan .15 ; [byte]
heinrichsweikamp
parents:
diff changeset
91 #DEFINE infolength_cns .2 ; [byte]
heinrichsweikamp
parents:
diff changeset
92 #DEFINE infolength_tank .0 ; [byte]
heinrichsweikamp
parents:
diff changeset
93
heinrichsweikamp
parents:
diff changeset
94 ; "Better Gas" behavior
heinrichsweikamp
parents:
diff changeset
95 ; better_gas_window <= minimum_change_depth !
heinrichsweikamp
parents:
diff changeset
96 ; minimum_change_depth >=5 !
heinrichsweikamp
parents:
diff changeset
97 #DEFINE minimum_change_depth .3 ; [m]
heinrichsweikamp
parents:
diff changeset
98 #DEFINE better_gas_window .3 ; [m]
heinrichsweikamp
parents:
diff changeset
99
heinrichsweikamp
parents:
diff changeset
100 ; Dive mode limits and thresholds
heinrichsweikamp
parents:
diff changeset
101 #DEFINE start_dive_threshold .100 ; [cm]
heinrichsweikamp
parents:
diff changeset
102 #DEFINE high_altitude_dive_threshold .300;[cm]
heinrichsweikamp
parents:
diff changeset
103 #DEFINE apnoe_timeout .30 ; [min]
heinrichsweikamp
parents:
diff changeset
104 #DEFINE divemode_menuview_timeout .10 ; [s]
heinrichsweikamp
parents:
diff changeset
105 #DEFINE divemode_timeout .300 ; [s]
heinrichsweikamp
parents:
diff changeset
106 #DEFINE divemode_menu_timeout .30 ; [s]
heinrichsweikamp
parents:
diff changeset
107 #DEFINE ppo2_warning_low .19 ; [cbar] (Default value)
heinrichsweikamp
parents:
diff changeset
108 #DEFINE ppo2_lowest_setting .16 ; [cbar] (Minimum value)
heinrichsweikamp
parents:
diff changeset
109 #DEFINE ppo2_display_high .120 ; [cbar]
heinrichsweikamp
parents:
diff changeset
110 #DEFINE ppo2_warning_high .160 ; [cbar] (Default value)
heinrichsweikamp
parents:
diff changeset
111 #DEFINE ppo2_highest_setting .160 ; [cbar] (Max. Value)
heinrichsweikamp
parents:
diff changeset
112 #DEFINE cns_display_high .70 ; [%]
heinrichsweikamp
parents:
diff changeset
113 #DEFINE cns_warning_high .100 ; [%]
heinrichsweikamp
parents:
diff changeset
114 #DEFINE gf_display_high .75 ; [%]
heinrichsweikamp
parents:
diff changeset
115 #DEFINE gf_warning_high .100 ; [%]
heinrichsweikamp
parents:
diff changeset
116 #DEFINE depth_warn_mbar .13000 ; [mbar]
heinrichsweikamp
parents:
diff changeset
117 #DEFINE wake_up_from_sleep .1160 ; [mbar]
heinrichsweikamp
parents:
diff changeset
118 #DEFINE gf_display_threshold .20 ; [%]
heinrichsweikamp
parents:
diff changeset
119 #DEFINE simulator_start_depth .2500 ; [mbar] + 1000mbar surface
heinrichsweikamp
parents:
diff changeset
120 #DEFINE simulator_timeout .15 ; [s]
heinrichsweikamp
parents:
diff changeset
121
heinrichsweikamp
parents:
diff changeset
122
heinrichsweikamp
parents:
diff changeset
123 ; Surface mode limits and thresholds
heinrichsweikamp
parents:
diff changeset
124 #DEFINE cns_display_surface_high .70 ; [%]
heinrichsweikamp
parents:
diff changeset
125 #DEFINE high_altitude_threshold .880 ; [mbar]
heinrichsweikamp
parents:
diff changeset
126 #DEFINE max_surfpressure .1080 ; [mbar]
heinrichsweikamp
parents:
diff changeset
127 #DEFINE timeout_surfacemode .90 ; [s]
heinrichsweikamp
parents:
diff changeset
128
heinrichsweikamp
parents:
diff changeset
129
heinrichsweikamp
parents:
diff changeset
130 ; Decomodel paramters
heinrichsweikamp
parents:
diff changeset
131 #DEFINE no_fly_time_ratio .60 ; [%]
heinrichsweikamp
parents:
diff changeset
132 #DEFINE deco_distance .10 ; [dm]
heinrichsweikamp
parents:
diff changeset
133
heinrichsweikamp
parents:
diff changeset
134
heinrichsweikamp
parents:
diff changeset
135 ; Color-code parameters for the divemode
heinrichsweikamp
parents:
diff changeset
136 #DEFINE color_code_cns_high .100 ; [%]
heinrichsweikamp
parents:
diff changeset
137 #DEFINE color_code_gf_warn_high .101 ; [%]
heinrichsweikamp
parents:
diff changeset
138 #DEFINE color_code_velocity_warn_high .10;[m/min]
heinrichsweikamp
parents:
diff changeset
139
heinrichsweikamp
parents:
diff changeset
140 ; Velocity threshold
heinrichsweikamp
parents:
diff changeset
141 #DEFINE velocity_warning_level_1 .7 ; [m/min]
heinrichsweikamp
parents:
diff changeset
142
heinrichsweikamp
parents:
diff changeset
143 ; Battery thresholds
2
ab8a7c3f1db0 battery warning levels, max. brightnes setting
heinrichsweikamp
parents: 0
diff changeset
144 #DEFINE lithium_36v_empty .2800 ; [mV] Saft 3,6V LS14500 AA - threshold for battery percent display
0
heinrichsweikamp
parents:
diff changeset
145 #DEFINE lithium_36v_low .2000 ; [mV] (Must be bigger then aa_15v_high!)
heinrichsweikamp
parents:
diff changeset
146 #DEFINE aa_15v_high .1550 ; [mV] Energizer 1,5V E2 AA
heinrichsweikamp
parents:
diff changeset
147 #DEFINE aa_15v_low .1100 ; [mV] According to Energizer Datasheet EBC-4201R, Page 2
heinrichsweikamp
parents:
diff changeset
148 #DEFINE color_code_battery_low .15 ; [%]
heinrichsweikamp
parents:
diff changeset
149 #DEFINE battery_show_level .30 ; [%]
heinrichsweikamp
parents:
diff changeset
150
heinrichsweikamp
parents:
diff changeset
151 #DEFINE current_sleepmode .62
heinrichsweikamp
parents:
diff changeset
152 #DEFINE current_backlight_multi .115 ; *CCPR1L+current_backlight_offset
heinrichsweikamp
parents:
diff changeset
153 #DEFINE current_backlight_offset .216
heinrichsweikamp
parents:
diff changeset
154 #DEFINE current_speed_eco .1914
heinrichsweikamp
parents:
diff changeset
155 #DEFINE current_speed_normal .4027
heinrichsweikamp
parents:
diff changeset
156 #DEFINE current_speed_fastest .5050
heinrichsweikamp
parents:
diff changeset
157 #DEFINE current_ir_reciever .139
heinrichsweikamp
parents:
diff changeset
158 #DEFINE current_compass .28
heinrichsweikamp
parents:
diff changeset
159
heinrichsweikamp
parents:
diff changeset
160 ; Brightness thresholds (between zero (off) and 255 (max. power))
2
ab8a7c3f1db0 battery warning levels, max. brightnes setting
heinrichsweikamp
parents: 0
diff changeset
161 #DEFINE ambient_light_max_high_36V .175 ; When used with a 3,6V battery
ab8a7c3f1db0 battery warning levels, max. brightnes setting
heinrichsweikamp
parents: 0
diff changeset
162 #DEFINE ambient_light_max_high .150
0
heinrichsweikamp
parents:
diff changeset
163 #DEFINE ambient_light_min_high .40
2
ab8a7c3f1db0 battery warning levels, max. brightnes setting
heinrichsweikamp
parents: 0
diff changeset
164 #DEFINE ambient_light_max_medium .135
0
heinrichsweikamp
parents:
diff changeset
165 #DEFINE ambient_light_min_medium .30
2
ab8a7c3f1db0 battery warning levels, max. brightnes setting
heinrichsweikamp
parents: 0
diff changeset
166 #DEFINE ambient_light_max_eco .110
0
heinrichsweikamp
parents:
diff changeset
167 #DEFINE ambient_light_min_eco .20
heinrichsweikamp
parents:
diff changeset
168
heinrichsweikamp
parents:
diff changeset
169 ; IR Link timeout
heinrichsweikamp
parents:
diff changeset
170 #DEFINE ir_timeout_value .48 ; multiples of 62,5ms
heinrichsweikamp
parents:
diff changeset
171
heinrichsweikamp
parents:
diff changeset
172 ; Gaslist hard-coded limits
heinrichsweikamp
parents:
diff changeset
173 #DEFINE gaslist_min_o2 .7 ; Minimum O2 [%]
heinrichsweikamp
parents:
diff changeset
174 #DEFINE gaslist_max_change_depth .100 ; Max. change depth [m]
heinrichsweikamp
parents:
diff changeset
175 #DEFINE gaslist_sp_stepsize .10 ; Steps for Setpoint Setup [cbar]
heinrichsweikamp
parents:
diff changeset
176 #DEFINE gaslist_sp_max .160 ; Max. Setpoint [cbar]
heinrichsweikamp
parents:
diff changeset
177 #DEFINE gaslist_sp_min .50 ; Min. Setpoint [cbar]
heinrichsweikamp
parents:
diff changeset
178
heinrichsweikamp
parents:
diff changeset
179 ;---------------------------- Macros ------------------------------------
heinrichsweikamp
parents:
diff changeset
180
heinrichsweikamp
parents:
diff changeset
181 TSTOSS macro opt_reg ; TeST Option Skip if not Zero
heinrichsweikamp
parents:
diff changeset
182 movff opt_reg,WREG
heinrichsweikamp
parents:
diff changeset
183 tstfsz WREG,A
heinrichsweikamp
parents:
diff changeset
184 bra $+4
heinrichsweikamp
parents:
diff changeset
185 endm
heinrichsweikamp
parents:
diff changeset
186
heinrichsweikamp
parents:
diff changeset
187 ;---------------------------- Bank0 DATA ------------------------------------
heinrichsweikamp
parents:
diff changeset
188 isr_backup equ 0x60
heinrichsweikamp
parents:
diff changeset
189 isr_backup udata_ovr isr_backup ; Reserved space for interupt data
heinrichsweikamp
parents:
diff changeset
190
heinrichsweikamp
parents:
diff changeset
191 ;---- Backup for general registers
heinrichsweikamp
parents:
diff changeset
192 isr_prod res 2
heinrichsweikamp
parents:
diff changeset
193
heinrichsweikamp
parents:
diff changeset
194 ;---- MS5541 subroutines
heinrichsweikamp
parents:
diff changeset
195 amb_pressure res 2
heinrichsweikamp
parents:
diff changeset
196 temperature res 2
heinrichsweikamp
parents:
diff changeset
197
heinrichsweikamp
parents:
diff changeset
198 W1 res 2 ; Raw (packed) calibration data
heinrichsweikamp
parents:
diff changeset
199 W2 res 2
heinrichsweikamp
parents:
diff changeset
200 W3 res 2
heinrichsweikamp
parents:
diff changeset
201 W4 res 2 ; 100
heinrichsweikamp
parents:
diff changeset
202 C1 res 2 ; Decoded calibration data
heinrichsweikamp
parents:
diff changeset
203 C2 res 2
heinrichsweikamp
parents:
diff changeset
204 C3 res 2
heinrichsweikamp
parents:
diff changeset
205 C4 res 2 ; Here: C4-250
heinrichsweikamp
parents:
diff changeset
206 C5 res 2 ; Here: Reference Temperature UT1 = 8*C5 + 10000 (u16 range 10.000 .. +42.760)
heinrichsweikamp
parents:
diff changeset
207 C6 res 2
heinrichsweikamp
parents:
diff changeset
208 D1 res 2 ; raw pressure
heinrichsweikamp
parents:
diff changeset
209 D2 res 2 ; raw temperature
heinrichsweikamp
parents:
diff changeset
210 xdT res 2
heinrichsweikamp
parents:
diff changeset
211 xdT2 res 2
heinrichsweikamp
parents:
diff changeset
212 OFF res 2
heinrichsweikamp
parents:
diff changeset
213 SENS res 2
heinrichsweikamp
parents:
diff changeset
214 dLSB res 1 ;Pressure sensor interface
heinrichsweikamp
parents:
diff changeset
215 dMSB res 1
heinrichsweikamp
parents:
diff changeset
216 clock_count res 1
heinrichsweikamp
parents:
diff changeset
217 sensor_state_counter res 1 ; counts to eight for state maschine
heinrichsweikamp
parents:
diff changeset
218 amb_pressure_avg res 2
heinrichsweikamp
parents:
diff changeset
219 temperature_avg res 2
heinrichsweikamp
parents:
diff changeset
220 minimum_temperature res 2 ; minimum temperature
heinrichsweikamp
parents:
diff changeset
221 last_temperature res 2
heinrichsweikamp
parents:
diff changeset
222 last_pressure res 2
heinrichsweikamp
parents:
diff changeset
223 last_pressure_velocity res 2 ; For velocity
heinrichsweikamp
parents:
diff changeset
224 last_surfpressure res 2
heinrichsweikamp
parents:
diff changeset
225 last_surfpressure_15min res 2
heinrichsweikamp
parents:
diff changeset
226 last_surfpressure_30min res 2
heinrichsweikamp
parents:
diff changeset
227 rel_pressure res 2
heinrichsweikamp
parents:
diff changeset
228 sim_pressure res 2 ; hold simulated pressure in mbar if in Simulator mode
heinrichsweikamp
parents:
diff changeset
229 max_pressure res 2
heinrichsweikamp
parents:
diff changeset
230 avr_rel_pressure res 2
heinrichsweikamp
parents:
diff changeset
231 avr_rel_pressure_total res 2
heinrichsweikamp
parents:
diff changeset
232 ;---- Data for ISR math subroutines
heinrichsweikamp
parents:
diff changeset
233 isr_xC res 4
heinrichsweikamp
parents:
diff changeset
234 isr_xA res 2
heinrichsweikamp
parents:
diff changeset
235 isr_xB res 2
heinrichsweikamp
parents:
diff changeset
236
heinrichsweikamp
parents:
diff changeset
237 ;---- Data for ISR routines
heinrichsweikamp
parents:
diff changeset
238 isr1_temp res 1 ; ISR temp variable, used in ms5541.asm, isr_rtcc, isr_battery_gauge
heinrichsweikamp
parents:
diff changeset
239 isr2_temp res 1 ; ISR temp variable, used isr_battery_gauge
heinrichsweikamp
parents:
diff changeset
240
heinrichsweikamp
parents:
diff changeset
241 ;---- Display brightness
heinrichsweikamp
parents:
diff changeset
242 max_CCPR1L res 1 ; Max. brightness value for CCPR1L
heinrichsweikamp
parents:
diff changeset
243
heinrichsweikamp
parents:
diff changeset
244 ; Battery gauge (nAs, nC)
heinrichsweikamp
parents:
diff changeset
245 battery_gauge res 6 ; 48Bit -> 78Ah max...
heinrichsweikamp
parents:
diff changeset
246
heinrichsweikamp
parents:
diff changeset
247 ; IR-Link
heinrichsweikamp
parents:
diff changeset
248 ir_buffer res .16
heinrichsweikamp
parents:
diff changeset
249 ir_counter res 1
heinrichsweikamp
parents:
diff changeset
250 ir_timeout res 1 ; Timeout for valid data
heinrichsweikamp
parents:
diff changeset
251
heinrichsweikamp
parents:
diff changeset
252 ; Compass raw data
heinrichsweikamp
parents:
diff changeset
253 compass_DX res 2
heinrichsweikamp
parents:
diff changeset
254 compass_DY res 2
heinrichsweikamp
parents:
diff changeset
255 compass_DZ res 2
heinrichsweikamp
parents:
diff changeset
256
heinrichsweikamp
parents:
diff changeset
257 accel_DX res 2
heinrichsweikamp
parents:
diff changeset
258 accel_DY res 2
heinrichsweikamp
parents:
diff changeset
259 accel_DZ res 2
heinrichsweikamp
parents:
diff changeset
260
heinrichsweikamp
parents:
diff changeset
261 ; Compass FILTERED data
heinrichsweikamp
parents:
diff changeset
262 compass_DX_f res 2
heinrichsweikamp
parents:
diff changeset
263 compass_DY_f res 2
heinrichsweikamp
parents:
diff changeset
264 compass_DZ_f res 2
heinrichsweikamp
parents:
diff changeset
265
heinrichsweikamp
parents:
diff changeset
266 accel_DX_f res 2
heinrichsweikamp
parents:
diff changeset
267 accel_DY_f res 2
heinrichsweikamp
parents:
diff changeset
268 accel_DZ_f res 2
heinrichsweikamp
parents:
diff changeset
269
heinrichsweikamp
parents:
diff changeset
270 ; Compass calibration data
heinrichsweikamp
parents:
diff changeset
271 compass_CX_f res 2
heinrichsweikamp
parents:
diff changeset
272 compass_CY_f res 2
heinrichsweikamp
parents:
diff changeset
273 compass_CZ_f res 2
heinrichsweikamp
parents:
diff changeset
274
heinrichsweikamp
parents:
diff changeset
275 ; Compass more data
heinrichsweikamp
parents:
diff changeset
276 compass_heading res 2 ; Corrected heading (in 1°) : -180 .. 180
heinrichsweikamp
parents:
diff changeset
277 compass_roll res 2 ; Rotation around the X axis
heinrichsweikamp
parents:
diff changeset
278 compass_pitch res 2 ; Rotation arounf the Y axis
heinrichsweikamp
parents:
diff changeset
279
heinrichsweikamp
parents:
diff changeset
280 compass_a res 2 ; Tmp data for Q15 arithmetics
heinrichsweikamp
parents:
diff changeset
281 compass_b res 2
heinrichsweikamp
parents:
diff changeset
282 compass_r res 3
heinrichsweikamp
parents:
diff changeset
283
heinrichsweikamp
parents:
diff changeset
284 CNS_start res 2 ; CNS value at beginning of dive
heinrichsweikamp
parents:
diff changeset
285 GF_start res 1 ; GF value at beginning of dive
heinrichsweikamp
parents:
diff changeset
286
heinrichsweikamp
parents:
diff changeset
287 ;---------------------------- Common DATA ------------------------------------
heinrichsweikamp
parents:
diff changeset
288
heinrichsweikamp
parents:
diff changeset
289 common equ 0x100 ; Alias for "banksel common"
heinrichsweikamp
parents:
diff changeset
290 common udata_ovr common ; Bank1 general variables
heinrichsweikamp
parents:
diff changeset
291
heinrichsweikamp
parents:
diff changeset
292 ;---- Time and Date
heinrichsweikamp
parents:
diff changeset
293 secs res 1
heinrichsweikamp
parents:
diff changeset
294 mins res 1
heinrichsweikamp
parents:
diff changeset
295 hours res 1
heinrichsweikamp
parents:
diff changeset
296 day res 1
heinrichsweikamp
parents:
diff changeset
297 month res 1
heinrichsweikamp
parents:
diff changeset
298 year res 1
heinrichsweikamp
parents:
diff changeset
299 surface_interval res 2
heinrichsweikamp
parents:
diff changeset
300
heinrichsweikamp
parents:
diff changeset
301 flag1 res 1
heinrichsweikamp
parents:
diff changeset
302 flag2 res 1
heinrichsweikamp
parents:
diff changeset
303 flag3 res 1
heinrichsweikamp
parents:
diff changeset
304 flag4 res 1
heinrichsweikamp
parents:
diff changeset
305 flag5 res 1
heinrichsweikamp
parents:
diff changeset
306 flag6 res 1
heinrichsweikamp
parents:
diff changeset
307 flag7 res 1
heinrichsweikamp
parents:
diff changeset
308 flag8 res 1
heinrichsweikamp
parents:
diff changeset
309
heinrichsweikamp
parents:
diff changeset
310 temp1 res 1
heinrichsweikamp
parents:
diff changeset
311 temp2 res 1
heinrichsweikamp
parents:
diff changeset
312
heinrichsweikamp
parents:
diff changeset
313 ;---- Interface to wait macros
heinrichsweikamp
parents:
diff changeset
314 wait_temp res 1
heinrichsweikamp
parents:
diff changeset
315 waitms_temp res 1
heinrichsweikamp
parents:
diff changeset
316
heinrichsweikamp
parents:
diff changeset
317 ;---- Interface to graphic subroutines (aa_wordprocessor, color_processor, ...)
heinrichsweikamp
parents:
diff changeset
318 win_leftx2 res 1
heinrichsweikamp
parents:
diff changeset
319 win_top res 1
heinrichsweikamp
parents:
diff changeset
320 win_width res 2
heinrichsweikamp
parents:
diff changeset
321 win_height res 1
heinrichsweikamp
parents:
diff changeset
322 win_bargraph res 1
heinrichsweikamp
parents:
diff changeset
323 win_color1 res 1
heinrichsweikamp
parents:
diff changeset
324 win_color2 res 1
heinrichsweikamp
parents:
diff changeset
325 win_font res 1
heinrichsweikamp
parents:
diff changeset
326 win_invert res 1
heinrichsweikamp
parents:
diff changeset
327
heinrichsweikamp
parents:
diff changeset
328 ;---- Draw subroutines
heinrichsweikamp
parents:
diff changeset
329 tft_temp4 res 1
heinrichsweikamp
parents:
diff changeset
330 tft_temp3 res 1
heinrichsweikamp
parents:
diff changeset
331 tft_temp2 res 1
heinrichsweikamp
parents:
diff changeset
332 tft_temp1 res 1
heinrichsweikamp
parents:
diff changeset
333
heinrichsweikamp
parents:
diff changeset
334 ;---- data conversion subroutines
heinrichsweikamp
parents:
diff changeset
335 lo res 1
heinrichsweikamp
parents:
diff changeset
336 hi res 1
heinrichsweikamp
parents:
diff changeset
337 up res 1
heinrichsweikamp
parents:
diff changeset
338
heinrichsweikamp
parents:
diff changeset
339 ;---- RS232 temp variables
heinrichsweikamp
parents:
diff changeset
340 uart1_temp res 1
heinrichsweikamp
parents:
diff changeset
341 uart2_temp res 1
heinrichsweikamp
parents:
diff changeset
342
heinrichsweikamp
parents:
diff changeset
343 ;---- Data for math subroutines
heinrichsweikamp
parents:
diff changeset
344 divA res 2
heinrichsweikamp
parents:
diff changeset
345 divB res 1
heinrichsweikamp
parents:
diff changeset
346 xC res 4
heinrichsweikamp
parents:
diff changeset
347 xA res 2
heinrichsweikamp
parents:
diff changeset
348 xB res 2
heinrichsweikamp
parents:
diff changeset
349 sub_c res 2
heinrichsweikamp
parents:
diff changeset
350 sub_a res 2
heinrichsweikamp
parents:
diff changeset
351 sub_b res 2
heinrichsweikamp
parents:
diff changeset
352
heinrichsweikamp
parents:
diff changeset
353 ;---- Data for conversion subroutines
heinrichsweikamp
parents:
diff changeset
354 cvt_flags res 1
heinrichsweikamp
parents:
diff changeset
355 ignore_digits res 1
heinrichsweikamp
parents:
diff changeset
356
heinrichsweikamp
parents:
diff changeset
357 #define leftbind cvt_flags,0
heinrichsweikamp
parents:
diff changeset
358 #define ignore_digit3 cvt_flags,1
heinrichsweikamp
parents:
diff changeset
359 #define ignore_digit4 cvt_flags,2
heinrichsweikamp
parents:
diff changeset
360 #define ignore_digit5 cvt_flags,3
heinrichsweikamp
parents:
diff changeset
361 #DEFINE enable_screen_dumps cvt_flags,4 ; =1: Ignore vin_usb, wait for "l" command (Screen dump)
heinrichsweikamp
parents:
diff changeset
362
heinrichsweikamp
parents:
diff changeset
363 ;---- Misc.
heinrichsweikamp
parents:
diff changeset
364 speed_setting res 1 ; =1: Eco, =2: Normal, =3: Fastest
heinrichsweikamp
parents:
diff changeset
365 nofly_time res 2 ; No Fly time in Minutes (Calculated after Dive)
heinrichsweikamp
parents:
diff changeset
366 timeout_counter res 1
heinrichsweikamp
parents:
diff changeset
367 timeout_counter2 res 1
heinrichsweikamp
parents:
diff changeset
368 timeout_counter3 res 1
heinrichsweikamp
parents:
diff changeset
369 batt_voltage res 2 ; Battery voltage in mV
heinrichsweikamp
parents:
diff changeset
370 batt_percent res 1 ; Battery in percent (1-100)
heinrichsweikamp
parents:
diff changeset
371 ambient_light res 2 ; ambient_light level
heinrichsweikamp
parents:
diff changeset
372 lo_temp res 1
heinrichsweikamp
parents:
diff changeset
373 hi_temp res 1
heinrichsweikamp
parents:
diff changeset
374 desaturation_time res 2
heinrichsweikamp
parents:
diff changeset
375 convert_value_temp res 3 ; used in menu_battery_state_convert_date
heinrichsweikamp
parents:
diff changeset
376 active_gas res 1
heinrichsweikamp
parents:
diff changeset
377 decoplan_page res 1
heinrichsweikamp
parents:
diff changeset
378 warning_counter res 1 ; Counts amount of warning in divemode
heinrichsweikamp
parents:
diff changeset
379 warning_counter_backup res 1 ; Backup of warning_counter
heinrichsweikamp
parents:
diff changeset
380 warning_page res 1 ; current # of warning page
heinrichsweikamp
parents:
diff changeset
381 rssi_value res 1 ; Current RSSI level
heinrichsweikamp
parents:
diff changeset
382
heinrichsweikamp
parents:
diff changeset
383 ; Remind history for menu processor (and such):
heinrichsweikamp
parents:
diff changeset
384 menustack res 5 ; menu stack
heinrichsweikamp
parents:
diff changeset
385 menupos res 1 ; Logbook and divemode menu
heinrichsweikamp
parents:
diff changeset
386 menupos2 res 1 ; For dive mode simulator and pre-menu
heinrichsweikamp
parents:
diff changeset
387 menupos3 res 1 ; For Customviews
heinrichsweikamp
parents:
diff changeset
388 menupos4 res 1 ; For divemode menu
heinrichsweikamp
parents:
diff changeset
389
heinrichsweikamp
parents:
diff changeset
390 ; Apnoe stuff that must be in bank common
heinrichsweikamp
parents:
diff changeset
391 apnoe_mins res 1
heinrichsweikamp
parents:
diff changeset
392 apnoe_secs res 1
heinrichsweikamp
parents:
diff changeset
393 apnoe_max_pressure res 2
heinrichsweikamp
parents:
diff changeset
394
heinrichsweikamp
parents:
diff changeset
395 ; Divemode
heinrichsweikamp
parents:
diff changeset
396 divemins res 2
heinrichsweikamp
parents:
diff changeset
397 divesecs res 1
heinrichsweikamp
parents:
diff changeset
398 samplesecs_value res 1
heinrichsweikamp
parents:
diff changeset
399 divisor_temperature res 1
heinrichsweikamp
parents:
diff changeset
400 divisor_deco res 1
heinrichsweikamp
parents:
diff changeset
401 divisor_gf res 1
heinrichsweikamp
parents:
diff changeset
402 divisor_ppo2_sensors res 1
heinrichsweikamp
parents:
diff changeset
403 divisor_decoplan res 1
heinrichsweikamp
parents:
diff changeset
404 divisor_cns res 1
heinrichsweikamp
parents:
diff changeset
405 divisor_tank res 1
heinrichsweikamp
parents:
diff changeset
406 average_depth_hold res 4
heinrichsweikamp
parents:
diff changeset
407 average_depth_hold_total res 4
heinrichsweikamp
parents:
diff changeset
408 total_divetime_seconds res 2
heinrichsweikamp
parents:
diff changeset
409 average_divesecs res 2 ; For the resettable stopwatch
heinrichsweikamp
parents:
diff changeset
410 decodata res 2
heinrichsweikamp
parents:
diff changeset
411 apnoe_timeout_counter res 1
heinrichsweikamp
parents:
diff changeset
412 apnoe_surface_mins res 1
heinrichsweikamp
parents:
diff changeset
413 apnoe_surface_secs res 1
heinrichsweikamp
parents:
diff changeset
414
heinrichsweikamp
parents:
diff changeset
415
heinrichsweikamp
parents:
diff changeset
416 ; Profile storing
heinrichsweikamp
parents:
diff changeset
417 AlarmType res 1
heinrichsweikamp
parents:
diff changeset
418 samplesecs res 1
heinrichsweikamp
parents:
diff changeset
419 EventByte res 1
heinrichsweikamp
parents:
diff changeset
420 ProfileFlagByte res 1
heinrichsweikamp
parents:
diff changeset
421
heinrichsweikamp
parents:
diff changeset
422 ; External flash
heinrichsweikamp
parents:
diff changeset
423 ext_flash_address res 3 ; 24bit Address
heinrichsweikamp
parents:
diff changeset
424 ext_flash_log_pointer res 3 ; 24bit Address for logbook profile storing
heinrichsweikamp
parents:
diff changeset
425 ext_flash_dive_counter res 3 ; 24bit Counter for dive length (increased in write_byte_ext_flash_plus)
heinrichsweikamp
parents:
diff changeset
426
heinrichsweikamp
parents:
diff changeset
427 ; I2C
heinrichsweikamp
parents:
diff changeset
428 i2c_temp res 1 ; Temp
heinrichsweikamp
parents:
diff changeset
429
heinrichsweikamp
parents:
diff changeset
430 ; MCP
heinrichsweikamp
parents:
diff changeset
431 mcp_temp res 4 ; For RX
heinrichsweikamp
parents:
diff changeset
432
heinrichsweikamp
parents:
diff changeset
433 ; O2 Sensor data
heinrichsweikamp
parents:
diff changeset
434 o2_mv_sensor1 res 2 ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
435 o2_mv_sensor2 res 2 ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
436 o2_mv_sensor3 res 2 ; in 0.1mV steps
heinrichsweikamp
parents:
diff changeset
437 o2_ppo2_sensor1 res 1 ; Sensor1 ppO2 (in 0.01bar steps)
heinrichsweikamp
parents:
diff changeset
438 o2_ppo2_sensor2 res 1 ; Sensor2 ppO2 (in 0.01bar steps)
heinrichsweikamp
parents:
diff changeset
439 o2_ppo2_sensor3 res 1 ; Sensor3 ppO2 (in 0.01bar steps)
heinrichsweikamp
parents:
diff changeset
440 hud_battery_mv res 2
heinrichsweikamp
parents:
diff changeset
441 hud_status_byte res 1
heinrichsweikamp
parents:
diff changeset
442 ;Status Byte/
heinrichsweikamp
parents:
diff changeset
443 ;Bit0 = 1 -> HUD connection ok
heinrichsweikamp
parents:
diff changeset
444 ;Bit1 = 1 -> HUD is calibrated
heinrichsweikamp
parents:
diff changeset
445 ;Bit2 = 1 -> HUD Battery is low (<3000mV)
heinrichsweikamp
parents:
diff changeset
446 ;Bit3 = 1 -> Sensor 1 active
heinrichsweikamp
parents:
diff changeset
447 ;Bit4 = 1 -> Sensor 2 active
heinrichsweikamp
parents:
diff changeset
448 ;Bit5 = 1 -> Sensor 3 active
heinrichsweikamp
parents:
diff changeset
449 ;Bit6 unused in stand-alone HUD
heinrichsweikamp
parents:
diff changeset
450 ;Bit7 unused in stand-alone HUD
heinrichsweikamp
parents:
diff changeset
451
heinrichsweikamp
parents:
diff changeset
452 sensor_setpoint res 1 ; sensor ppo2 in 0.01bar for deco routine
heinrichsweikamp
parents:
diff changeset
453
heinrichsweikamp
parents:
diff changeset
454 better_gas_number res 1 ; number (1-5) of the "better gas" in divemode, =0: no better gas available
heinrichsweikamp
parents:
diff changeset
455
heinrichsweikamp
parents:
diff changeset
456 ;---------------------------- TMP DATA ---------------------------------------
heinrichsweikamp
parents:
diff changeset
457 ; Space for various overlayed data from color, word, menu processors, etc.
heinrichsweikamp
parents:
diff changeset
458 ;
heinrichsweikamp
parents:
diff changeset
459
heinrichsweikamp
parents:
diff changeset
460 tmp udata_ovr 0x1A0 ; Bank1 shared TMP space
heinrichsweikamp
parents:
diff changeset
461 tmp equ 0x1A0 ; Alias for CBLOCK directive.
heinrichsweikamp
parents:
diff changeset
462 res 0x060 ; RESERVED area.
heinrichsweikamp
parents:
diff changeset
463
heinrichsweikamp
parents:
diff changeset
464 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
465 ; Reserve BANK2 for general purpose buffer (strings, images, etc).
heinrichsweikamp
parents:
diff changeset
466 ; NOTE: Needs to be aligned with a bank (LOW(buffer)==0).
heinrichsweikamp
parents:
diff changeset
467 buffer udata_ovr 0x200
heinrichsweikamp
parents:
diff changeset
468 buffer res .256
heinrichsweikamp
parents:
diff changeset
469
heinrichsweikamp
parents:
diff changeset
470 opt_table equ 0xE00
heinrichsweikamp
parents:
diff changeset
471 opt_table udata_ovr opt_table
heinrichsweikamp
parents:
diff changeset
472
heinrichsweikamp
parents:
diff changeset
473 ;---- Dive Options
heinrichsweikamp
parents:
diff changeset
474 opt_gas_O2_ratio res 5 ; Needed because deco gaslist use N2
heinrichsweikamp
parents:
diff changeset
475 opt_dil_O2_ratio res 5 ; Must be in line with opt_gas_O2_ratio
heinrichsweikamp
parents:
diff changeset
476 opt_gas_He_ratio res 5 ; He ratio Gas1-5
heinrichsweikamp
parents:
diff changeset
477 opt_dil_He_ratio res 5 ; Must be in line with opt_gas_He_ratio
heinrichsweikamp
parents:
diff changeset
478 opt_gas_type res 5 ; 0=Disabled, 1=First, 2=Travel, 3=Deco
heinrichsweikamp
parents:
diff changeset
479 opt_dil_type res 5 ; 0=Disabled, 1=First, 2=Normal
heinrichsweikamp
parents:
diff changeset
480 opt_dive_mode res 1 ; 0=OC, 1=CC, 2=Gauge, 3=Apnea
heinrichsweikamp
parents:
diff changeset
481 opt_ppO2_max res 1 ; PPO2 Max for MOD calculation and color coding in divemode
heinrichsweikamp
parents:
diff changeset
482 opt_ccr_mode res 1 ; =0: Fixed SP, =1: Sensor
heinrichsweikamp
parents:
diff changeset
483 opt_ppO2_min res 1 ; PPO2 min for Sensors and color coding in divemode
heinrichsweikamp
parents:
diff changeset
484
heinrichsweikamp
parents:
diff changeset
485 ;---- Managing Settings
heinrichsweikamp
parents:
diff changeset
486
heinrichsweikamp
parents:
diff changeset
487 opt_brightness res 1 ; =0: Eco, =1:Medium, =2:Full
heinrichsweikamp
parents:
diff changeset
488 opt_salinity res 1 ; 0-5%
heinrichsweikamp
parents:
diff changeset
489 #DEFINE opt_name_length .60 ; Custom text string 5 rows with 12 chars
heinrichsweikamp
parents:
diff changeset
490 opt_name res opt_name_length
heinrichsweikamp
parents:
diff changeset
491 opt_language res 1 ; Current language. 0=EN, 1=DE, 2=FR, 3=SP
heinrichsweikamp
parents:
diff changeset
492 opt_units res 1 ; 0:m/°C, 1:ft/°F
heinrichsweikamp
parents:
diff changeset
493 opt_dateformat res 1 ; =0:MMDDYY, =1:DDMMYY, =2:YYMMDD
heinrichsweikamp
parents:
diff changeset
494 opt_last_stop res 1 ; =3:3m, =4:4m, =5:5m, =6:6m
heinrichsweikamp
parents:
diff changeset
495 opt_aGF_high res 1 ; Alternative GF HIGH
heinrichsweikamp
parents:
diff changeset
496 opt_aGF_low res 1 ; Alternative GF LOW
heinrichsweikamp
parents:
diff changeset
497 opt_GF_high res 1 ; GF HIGH
heinrichsweikamp
parents:
diff changeset
498 opt_GF_low res 1 ; GF LOW
heinrichsweikamp
parents:
diff changeset
499 opt_enable_aGF res 1 ; =1: aGF can be selected underwater
heinrichsweikamp
parents:
diff changeset
500
heinrichsweikamp
parents:
diff changeset
501 ;-----------------------------EEPROM DATA ------------------------------------
heinrichsweikamp
parents:
diff changeset
502 ; Automatic reset of all options when this is changed:
heinrichsweikamp
parents:
diff changeset
503 #define eeprom_opt_serial 0x0005 ; Version 0.5
heinrichsweikamp
parents:
diff changeset
504
heinrichsweikamp
parents:
diff changeset
505 ;-----------------------------------------------------------------------------
heinrichsweikamp
parents:
diff changeset
506 ; Flags
heinrichsweikamp
parents:
diff changeset
507 #DEFINE switch_left flag1,0
heinrichsweikamp
parents:
diff changeset
508 #DEFINE switch_right flag1,1
heinrichsweikamp
parents:
diff changeset
509 #DEFINE neg_flag flag1,2 ; e.g. sub16 (sub_c = sub_a - sub_b)
heinrichsweikamp
parents:
diff changeset
510 #DEFINE pressure_refresh flag1,3 ; =1: A new pressure/temperature is available
heinrichsweikamp
parents:
diff changeset
511 #DEFINE sleepmode flag1,4 ; =1: In Sleepmode
heinrichsweikamp
parents:
diff changeset
512 #DEFINE tft_is_dimming flag1,5 ; =1: The TFT is dimming, ignore light sensor
heinrichsweikamp
parents:
diff changeset
513 #DEFINE display_velocity flag1,6 ; =1: show velocity
heinrichsweikamp
parents:
diff changeset
514 #DEFINE no_sensor_int flag1,7 ; =1: block any further access to pressure sensor
heinrichsweikamp
parents:
diff changeset
515
heinrichsweikamp
parents:
diff changeset
516 #DEFINE rs232_recieve_overflow flag2,0 ; =1: An RS232 timeout overflow occoured
heinrichsweikamp
parents:
diff changeset
517 #DEFINE stored_gas_changed flag2,1 ; =1: Stored Gas changed
heinrichsweikamp
parents:
diff changeset
518 #DEFINE high_altitude_mode flag2,2 ; =1: Unit was manually turned on with ambient pressure <880mbar
heinrichsweikamp
parents:
diff changeset
519 #DEFINE FLAG_apnoe_mode flag2,3 ; =1: Apnoe mode selected
heinrichsweikamp
parents:
diff changeset
520 #DEFINE restore_deco_data flag2,4 ; =1: Restore deco data (After simulation)
heinrichsweikamp
parents:
diff changeset
521 #DEFINE premenu flag2,5 ; =1: Premenu/Divemenu selected
heinrichsweikamp
parents:
diff changeset
522 #DEFINE menubit flag2,6 ; menu
heinrichsweikamp
parents:
diff changeset
523 #DEFINE simulatormode_active flag2,7 ; =1: Simulator mode active, override pressure sensor readings
heinrichsweikamp
parents:
diff changeset
524
heinrichsweikamp
parents:
diff changeset
525 #DEFINE divemode_menu flag3,0 ; =1: Divemode menu is shown
heinrichsweikamp
parents:
diff changeset
526 #DEFINE onesecupdate flag3,1 ; =1 after any second
heinrichsweikamp
parents:
diff changeset
527 #DEFINE twosecupdate flag3,2 ; =1: New two-second update
heinrichsweikamp
parents:
diff changeset
528 #DEFINE toggle_customview flag3,3 ; =1: Next customview
heinrichsweikamp
parents:
diff changeset
529 #DEFINE oneminupdate flag3,4 ; =1 after any minute
heinrichsweikamp
parents:
diff changeset
530 #DEFINE divemode flag3,5 ; =1: in Divemode
heinrichsweikamp
parents:
diff changeset
531 #DEFINE battery_is_36v flag3,6 ; =1: 3,6V Battery is in use
heinrichsweikamp
parents:
diff changeset
532 #DEFINE warning_active flag3,7 ; =1: A warning is active in divemode or surfacemode
heinrichsweikamp
parents:
diff changeset
533
heinrichsweikamp
parents:
diff changeset
534 #DEFINE better_gas_available flag4,0 ; =1: A better gas is available
heinrichsweikamp
parents:
diff changeset
535 #DEFINE blinking_better_gas flag4,1 ; =1: Gas is blinking
heinrichsweikamp
parents:
diff changeset
536 #DEFINE menuview flag4,2 ; =1: A menuview is shown in divemode (e.g. "Menu?")
heinrichsweikamp
parents:
diff changeset
537 #DEFINE quarter_second_update flag4,3 ; =1: A new 1/4 second has begun
heinrichsweikamp
parents:
diff changeset
538 #DEFINE divemode_gaschange flag4,4 ; =1: The gas will change very soon
heinrichsweikamp
parents:
diff changeset
539 #DEFINE decostop_active flag4,5 ; =1: Decompression stop shown
heinrichsweikamp
parents:
diff changeset
540 #DEFINE depth_greater_100m flag4,6 ; =1: Current Depth > 100m
heinrichsweikamp
parents:
diff changeset
541 #DEFINE realdive flag4,7 ; =1: A real dive during divemode
heinrichsweikamp
parents:
diff changeset
542
heinrichsweikamp
parents:
diff changeset
543 #DEFINE dive_warning_displayed flag5,0 ; =1: The warning sign is shown
heinrichsweikamp
parents:
diff changeset
544 #DEFINE reset_average_depth flag5,1 ; =1: Reset the average depth
heinrichsweikamp
parents:
diff changeset
545 #DEFINE store_sample flag5,2 ; =1: Store a new sample
heinrichsweikamp
parents:
diff changeset
546 #DEFINE divemode2 flag5,3 ; =1: Dive longer then one minute
heinrichsweikamp
parents:
diff changeset
547 #DEFINE FLAG_active_descent flag5,4 ; Used in Apnoe mode
heinrichsweikamp
parents:
diff changeset
548 #DEFINE event_occured flag5,5 ; =1: An event occured, store it!
heinrichsweikamp
parents:
diff changeset
549 #DEFINE divemode_menu_active flag5,6 ; =1: The divemode menu is shown
heinrichsweikamp
parents:
diff changeset
550 #DEFINE temp_changed flag5,7 ; =1: The temperature changed
heinrichsweikamp
parents:
diff changeset
551
heinrichsweikamp
parents:
diff changeset
552 #DEFINE gas6_changed flag6,0 ; =1: Gas 6 has been selected/changed underwater
heinrichsweikamp
parents:
diff changeset
553 #DEFINE onehourupdate flag6,1 ; =1: A new hour has just begun
heinrichsweikamp
parents:
diff changeset
554 #DEFINE settime_setdate flag6,2 ; =1: In the Set Time or Set Date Menu
heinrichsweikamp
parents:
diff changeset
555 #DEFINE setpoint_changed flag6,3 ; =1: Setpoint has been changed
heinrichsweikamp
parents:
diff changeset
556 #DEFINE second_row_warning flag6,4 ; =1: The second row contains a warning
heinrichsweikamp
parents:
diff changeset
557 #DEFINE FLAG_ccr_mode flag6,5 ; =1: CCR mode (Fixed ppO2 or Sensor) active
heinrichsweikamp
parents:
diff changeset
558 #DEFINE dive_hud1_displayed flag6,6 ; =1: The Sensor1 HUD reading is displayed
heinrichsweikamp
parents:
diff changeset
559 #DEFINE dive_hud2_displayed flag6,7 ; =1: The Sensor2 HUD reading is displayed
heinrichsweikamp
parents:
diff changeset
560
heinrichsweikamp
parents:
diff changeset
561 #DEFINE dive_hud3_displayed flag7,0 ; =1: The Sensor3 HUD reading is displayed
heinrichsweikamp
parents:
diff changeset
562 #DEFINE no_more_divesecs flag7,1 ; =1: Do no longer show seconds in divemode
heinrichsweikamp
parents:
diff changeset
563 #DEFINE FLAG_gauge_mode flag7,2 ; =1: In Gauge mode
heinrichsweikamp
parents:
diff changeset
564 #DEFINE ignore_last_edited_gas flag7,3 ; Used in gaslist_cleanup_list
heinrichsweikamp
parents:
diff changeset
565 #DEFINE ccr_diluent_setup flag7,4 ; =1: Setting up Diluents ("Gas6-10")
heinrichsweikamp
parents:
diff changeset
566 #DEFINE menu_show_sensors flag7,5 ; =1: Update HUD data in menu
heinrichsweikamp
parents:
diff changeset
567 #DEFINE short_gas_decriptions flag7,6 ; =1: Use short versions of gaslist_strcat_gas_mod and gaslist_strcat_setpoint
heinrichsweikamp
parents:
diff changeset
568
heinrichsweikamp
parents:
diff changeset
569 #DEFINE is_bailout flag8,0 ; =1: Bailout
heinrichsweikamp
parents:
diff changeset
570 #DEFINE is_bailout_menu flag8,1 ; =1: Bailout
heinrichsweikamp
parents:
diff changeset
571 #DEFINE toggle_gf flag8,2 ; =1: Toggle GF/aGF
heinrichsweikamp
parents:
diff changeset
572 #DEFINE use_agf flag8,3 ; =1: Use aGF (instead of GF)
heinrichsweikamp
parents:
diff changeset
573 #DEFINE battery_removed_in_usb flag8,4 ; =1: The battery has been removed in USB
heinrichsweikamp
parents:
diff changeset
574 #DEFINE adc_running flag8,5 ; =1: The ADC is in use
heinrichsweikamp
parents:
diff changeset
575 #DEFINE comm_service_enabled flag8,6 ; =1: COMM Service mode unlocked
heinrichsweikamp
parents:
diff changeset
576 #DEFINE compass_enabled flag8,7 ; =1: The compass and accelerometer chip is active
heinrichsweikamp
parents:
diff changeset
577
heinrichsweikamp
parents:
diff changeset
578 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
579 ; C-code Routines
heinrichsweikamp
parents:
diff changeset
580 ; PART 2
heinrichsweikamp
parents:
diff changeset
581 extern deco_calc_CNS_decrease_15min
heinrichsweikamp
parents:
diff changeset
582 extern deco_calc_CNS_fraction
heinrichsweikamp
parents:
diff changeset
583 extern deco_calc_desaturation_time
heinrichsweikamp
parents:
diff changeset
584 extern deco_calc_hauptroutine
heinrichsweikamp
parents:
diff changeset
585 extern deco_calc_tissue
heinrichsweikamp
parents:
diff changeset
586 extern deco_calc_percentage
heinrichsweikamp
parents:
diff changeset
587 extern deco_calc_wo_deco_step_1_min
heinrichsweikamp
parents:
diff changeset
588 extern deco_calc_dive_interval
heinrichsweikamp
parents:
diff changeset
589 extern deco_clear_CNS_fraction
heinrichsweikamp
parents:
diff changeset
590 extern deco_clear_tissue
heinrichsweikamp
parents:
diff changeset
591 extern deco_pull_tissues_from_vault
heinrichsweikamp
parents:
diff changeset
592 extern deco_push_tissues_to_vault
heinrichsweikamp
parents:
diff changeset
593