Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/definitions.asm @ 169:e26f49674956
Merge decoplan display for both GF and Buhlmann models.
+ Add CF(54) to reverse deco plan display order.
+ Clean state machine to faster redisplay in divemode.
Fix don't flip screen for soft emulation.
author | JeanDo |
---|---|
date | Wed, 26 Jan 2011 19:19:02 +0100 |
parents | cb055a7d75f3 |
children | 53b16a746166 |
rev | line source |
---|---|
0 | 1 ; OSTC - diving computer code |
2 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
3 | |
4 ; This program is free software: you can redistribute it and/or modifyn 3 of the License, or | |
5 ; (at your option) any later version. | |
6 | |
7 ; This program is distributed in the hope that it will be useful, | |
8 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
9 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
10 ; GNU General Public License for more details. | |
11 | |
12 ; You should have received a copy of the GNU General Public License | |
13 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
14 | |
15 | |
16 ; Defines, I/O Ports and variables | |
17 ; written by: Matthias Heinrichs, info@heinrichsweikamp.com | |
18 ; written: 10/30/05 | |
19 ; last updated: 01/23/08 | |
163 | 20 ; 2011/01/20: [jDG] Create a common file included in ASM and C code. |
0 | 21 ; known bugs: |
22 ; ToDo: | |
23 | |
24 ;#DEFINE NO_SENSOR_MODE ; uses Dummy values | |
25 | |
26 #DEFINE softwareversion_x d'1' ; Software version XX.YY | |
160 | 27 #DEFINE softwareversion_y d'81' ; Software version XX.YY |
0 | 28 |
160 | 29 #DEFINE softwareversion_beta 1 ; (and 0 for release) |
140 | 30 |
137 | 31 #DEFINE max_custom_number d'53' ; Number of last used custom function |
0 | 32 |
140 | 33 |
0 | 34 #DEFINE logbook_profile_version 0x20 ; Do not touch! |
35 #DEFINE T0CON_debounce b'00000000' ; Timer0 Switch Debounce | |
36 | |
37 #DEFINE FT_SMALL .0 | |
38 #DEFINE FT_MEDIUM .1 | |
39 #DEFINE FT_LARGE .2 | |
40 | |
41 ; Color Definitions: 8Bit RGB b'RRRGGGBB' | |
9 | 42 ;#DEFINE color_red b'11100000' |
0 | 43 #DEFINE color_blue b'00000011' |
44 #DEFINE color_green b'00011100' | |
3 | 45 ;#DEFINE color_white b'11111111' |
0 | 46 #DEFINE color_black b'00000000' |
47 #DEFINE color_deepblue b'00000001' | |
17 | 48 #DEFINE color_grey d'74' |
0 | 49 |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
50 #DEFINE warn_depth d'1' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
51 #DEFINE warn_cns d'2' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
52 #DEFINE warn_gf d'3' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
53 #DEFINE warn_ppo2 d'4' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
54 #DEFINE warn_velocity d'5' |
69 | 55 #DEFINE warn_ceiling d'6' |
71
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
56 #DEFINE warn_gas_in_gaslist d'7' |
6beb680a6130
1.72beta - color-coded gaslist, small fix with stopwatch
heinrichsweikamp
parents:
70
diff
changeset
|
57 |
0 | 58 ;Configuration bits |
59 CONFIG OSC = IRCIO67 ;Internal oscillator block, port function on RA6 and RA7 | |
60 CONFIG FCMEN = OFF ;Fail-Safe Clock Monitor disabled | |
61 CONFIG IESO = OFF ;Oscillator Switchover mode disabled | |
62 | |
63 CONFIG PWRT = ON ;PWRT enabled | |
64 CONFIG BOREN = OFF ;Brown-out Reset disabled in hardware and software | |
65 | |
66 CONFIG WDT = OFF ;WDT disabled | |
67 CONFIG WDTPS = 128 ;1:128 | |
68 | |
69 CONFIG MCLRE = ON ;MCLR pin enabled; RE3 input pin disabled | |
70 CONFIG LPT1OSC = OFF ;Timer1 configured for higher power operation | |
71 CONFIG PBADEN = OFF ;PORTB<4> and PORTB<1:0> Configured as Digital I/O Pins on Reset | |
72 | |
73 CONFIG DEBUG = OFF ;Background debugger disabled, RB6 and RB7 configured as general purpose I/O pins | |
74 CONFIG XINST = OFF ;Instruction set extension and Indexed Addressing mode disabled (Legacy mode) | |
75 CONFIG LVP = OFF ;Single-Supply ICSP disabled | |
76 CONFIG STVREN = OFF ;Stack full/underflow will not cause Reset | |
77 | |
142 | 78 ;============================================================================= |
79 | |
163 | 80 #include "../OSTC_code_c_part2/shared_definitions.h" |
125 | 81 |
163 | 82 ;============================================================================= |
165 | 83 ; Reserve space for C-code data space. Eg.when calling log. |
84 ; Note: overlayed with md_hash temporary space. | |
85 c_code_data_stack EQU 0x800 | |
0 | 86 |
164 | 87 ;============================================================================= |
88 ; BANK0 data | |
89 ; | |
90 bank0 udata 0x060 ;Bank 0 | |
167 | 91 |
92 global letter, win_color1, win_top, win_leftx2 | |
93 global win_font, win_invert | |
94 global win_height, win_width, win_bargraph | |
95 | |
164 | 96 letter res .26 ;letter buffer |
97 win_color1 res 1 | |
98 win_color2 res 1 | |
99 win_top res 1 ; Box/text position (0..239). | |
100 win_height res 1 ; Box/text height (1..240) | |
101 win_leftx2 res 1 ; Box/text position (0..159) | |
102 win_width res 1 ; box width (1..160) | |
103 win_font res 1 | |
104 win_invert res 1 | |
105 win_bargraph res 1 ; PLED_box swicth to black after this position (0..159). | |
106 win_flags res 1 ; flip_screen flag, transparent fonts, etc... | |
123 | 107 |
164 | 108 pressureSum res 2 ; Stabilize surface presure by a long averaging window [mbar] |
109 pressureCount res 1 ; Count of pressure values. | |
110 pressureAvg res 2 ; save averaged pressure x16, for altimeter_menu | |
111 pressureRef res 2 ; Pressure at sea level [mbar] | |
112 altitude res 2 ; Last computed altitude [m] | |
0 | 113 |
164 | 114 ;============================================================================= |
115 ; BANK1 data | |
116 ; | |
117 bank1 udata 0x100 ;Bank 1 | |
0 | 118 |
164 | 119 wreg_temp res 1 ;variables used for context saving during ISR |
120 status_temp res 1 | |
121 bsr_temp res 1 | |
122 prod_temp res 2 ;Trashed by isr_mult16x16, for sensor compensations | |
0 | 123 |
164 | 124 secs res 1 ;realtime clock |
125 mins res 1 | |
126 hours res 1 | |
127 day res 1 | |
128 month res 1 | |
129 year res 1 | |
0 | 130 |
164 | 131 waitms_temp res 1 ;variables required for wait routines |
132 wait_temp res 1 ; " + used to copy data to c code + used for temp/testing | |
133 ; never use wait_temp in interrupt routines (isr) and never call any wait routine in interrupts | |
134 | |
135 textnumber res 1 ;for textdisplay and textlookup | |
136 textlength res 1 | |
137 textaddress res 2 | |
0 | 138 |
164 | 139 average_depth_hold res 4 ; Holds Sum of depths (Resettable) |
140 average_depth_hold_total res 4 ; Holds Sum of depths (Non-Resettable) | |
141 b0_lo res 1 ; Temp (calculate_average) | |
142 b0_hi res 1 ; Temp (calculate_average) | |
143 average_divesecs res 2 ; Used for resetable average depth display | |
144 surface_interval res 2 ; Surface Interval [mins] | |
0 | 145 |
164 | 146 flag1 res 1 ;Flag register 33 |
147 flag2 res 1 | |
148 flag3 res 1 | |
149 flag4 res 1 | |
150 flag5 res 1 ; has to be exacly here, is modified by c-code (no sensor int) | |
151 flag6 res 1 | |
152 flag7 res 1 | |
153 flag8 res 1 | |
154 flag9 res 1 | |
155 flag10 res 1 | |
156 flag11 res 1 | |
157 flag12 res 1 | |
158 flag13 res 1 | |
159 flag14 res 1 | |
160 flag15 res 1 | |
0 | 161 |
164 | 162 oled1_temp res 1 ; Temp variables for display output |
163 oled2_temp res 1 | |
164 oled3_temp res 1 | |
165 oled4_temp res 1 ; Used in "Displaytext" | |
0 | 166 |
167 | 167 global hi,lo ; Make them visible from C-code |
164 | 168 lo res 1 ; bin to dec conversion routine |
169 hi res 1 | |
170 lo_temp res 1 | |
171 hi_temp res 1 | |
172 temp3 res 1 ; used in valconv math | |
173 temp4 res 1 ; used in valconv math | |
174 ignore_digits res 1 | |
0 | 175 |
164 | 176 temp1 res 1 ; Multipurpose Temp variables used in valconv math |
177 temp2 res 1 ; used in valconv math | |
0 | 178 |
164 | 179 ext_ee_temp1 res 1 ; External EEPROM Temp 1 used in I2C EEPROM |
180 ext_ee_temp2 res 1 ; External EEPROM Temp 2 used in I2C EEPROM | |
181 | |
182 isr1_temp res 1 ; ISR temp variables | |
183 isr2_temp res 1 | |
184 isr3_temp res 2 | |
0 | 185 |
164 | 186 timer1int_counter1 res 1 ;Timer 1 counter |
187 timer1int_counter2 res 1 ;Timer 1 counter | |
0 | 188 |
164 | 189 uart1_temp res 1 ;RS232 temp variables |
190 uart2_temp res 1 ;70 | |
0 | 191 |
164 | 192 divA res 2 ;math routines |
193 divB res 1 | |
194 xC res 4 | |
195 xA res 2 | |
196 xB res 2 | |
197 sub_c res 2 | |
198 sub_a res 2 | |
199 sub_b res 2 | |
200 | |
201 dLSB res 1 ;Pressure sensor interface | |
202 dMSB res 1 | |
203 clock_count res 1 | |
204 ppO2_setpoint_store res 1 ; Actual setpoint | |
0 | 205 |
164 | 206 ; Pressure/Temperatuse sensor data |
207 W1 res 2 ; Raw (packed) calibration data | |
208 W2 res 2 | |
209 W3 res 2 | |
210 W4 res 2 ; 100 | |
211 C1 res 2 ; Decoded calibration data | |
212 C2 res 2 | |
213 C3 res 2 | |
214 C4 res 2 | |
215 C5 res 2 | |
216 C6 res 2 | |
217 D1 res 2 ; raw pressure | |
218 D2 res 2 ; raw temperature | |
0 | 219 |
164 | 220 isr_divA res 2 ; Data for ISR math subroutines |
221 isr_divB res 1 | |
222 isr_xC res 4 | |
223 isr_xA res 2 | |
224 isr_xB res 2 | |
0 | 225 |
164 | 226 xdT res 2 ; Tmp for temperature compensation (in ISR) |
227 xdT2 res 2 | |
228 OFF res 2 | |
229 SENS res 2 | |
0 | 230 |
164 | 231 amb_pressure res 2 ; ambient pressure [mBar] |
232 rel_pressure res 2 ; amb_pressure - surface pressure [mBar] | |
233 max_pressure res 2 ; Max. pressure for the dive [mBar] | |
234 avr_rel_pressure res 2 ; Average rel. pressure (Average depth) for the dive [mBar], Resettable | |
235 avr_rel_pressure_total res 2 ; Average rel. pressure (Average depth) for the dive [mBar], Non-Resettable | |
236 last_pressure res 2 | |
237 temperature res 2 | |
238 last_temperature res 2 | |
239 temperature_temp res 2 | |
240 Dx res 2 | |
241 | |
242 last_surfpressure res 2 ; Divemode | |
243 last_surfpressure_15min res 2 | |
244 last_surfpressure_30min res 2 | |
245 divemins res 2 ; Minutes | |
246 divesecs res 1 ; seconds | |
247 samplesecs res 1 ; counts the seconds until the next sample is stored in divemode | |
248 samplesecs_value res 1 ; holds the CF20 value | |
249 decodata res 2 ; Deco data | |
250 mintemp res 2 ; min temperature | |
251 ProfileFlagByte res 1 ; stores number of addional bytes per sample | |
252 EventByte res 1 ; Stores the Event type plus flags | |
253 AlarmType res 1 ; 0= No Alarm | |
0 | 254 ; 1= SLOW |
255 ; 2= DecoStop missed | |
256 ; 3= DeepStop missed | |
257 ; 4= ppO2 Low Warning | |
258 ; 5= ppO2 High Warning | |
259 ; 6= manual marker | |
260 | |
164 | 261 divisor_temperature res 1 ; divisors for profile storage |
262 divisor_deco res 1 | |
263 divisor_tank res 1 | |
264 divisor_ppo2 res 1 | |
265 divisor_deco_debug res 1 | |
266 divisor_nuy2 res 1 | |
0 | 267 |
164 | 268 timeout_counter res 1 ; Timeout counter variables |
269 timeout_counter2 res 1 | |
270 timeout_counter3 res 1 ; pre-menu timeout counter | |
0 | 271 |
164 | 272 menupos res 1 ; cursor position |
273 menupos2 res 1 | |
274 menupos3 res 1 ; used in Logbook, Set Time and divemode | |
0 | 275 |
164 | 276 eeprom_address res 2 ; external EEPROM |
277 eeprom_header_address res 2 | |
0 | 278 |
164 | 279 divenumber res 1 ; Logbook |
280 | |
281 batt_voltage res 2 ; Battery voltage in mV | |
0 | 282 |
164 | 283 i2c_temp res 1 ; I²C timeout counter |
284 i2c_temp2 res 1 ; 200 | |
285 | |
286 sim_pressure res 2 ; hold simulated pressure in mBar if in Simulator mode | |
0 | 287 |
164 | 288 profile_temp res 2 ; temp variable for profile view |
289 profile_temp2 res 2 ; temp variable for profile view | |
0 | 290 |
164 | 291 nofly_time res 2 ; No Fly time in Minutes (Calculated after Dive) |
292 | |
293 cf_checker_counter res 1 ; counts custom functions to check for warning symbol | |
0 | 294 |
164 | 295 char_I_O2_ratio res 1 ; 02 ratio |
296 | |
297 active_gas res 1 ; Holds number of active gas | |
0 | 298 |
164 | 299 last_diluent res 1 ; backup of diluent percentage in const ppO2 mode |
300 last_ppO2_value res 1 ; last calculated ppO2 value | |
0 | 301 |
164 | 302 debug_char res 6 ; For debugmode |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
75
diff
changeset
|
303 |
164 | 304 apnoe_mins res 1 ; single descent minutes for Apnoe mode |
305 apnoe_secs res 1 ; single descent seconds for Apnoe mode | |
306 apnoe_max_pressure res 2 ; Max. Pressure in Apnoe mode | |
307 apnoe_timeout_counter res 1 ; counts minutes for apnoe timeout | |
308 apnoe_surface_mins res 1 ; Surface interval mins for Apnoe mode | |
309 apnoe_surface_secs res 1 ; Surface interval secs for Apnoe mode | |
310 customfunction_temp1 res 1 ; start of custom function descriptors | |
311 customfunction_temp2 res 1 ; used in GETCUSTOM8 and GETCUSTOM15 | |
312 | |
313 decoplan_page res 1 ; used in PLED_MultiGF,... | |
314 temp10 res 1 ; used in customview | |
0 | 315 |
164 | 316 fatal_error_code res 1 ; holds error code value |
0 | 317 |
164 | 318 logbook_temp1 res 1 ; Temp used in logbook display&Divemode&Gassetup |
319 logbook_temp2 res 1 ; Temp used in logbook display&Divemode&Gassetup | |
320 logbook_temp3 res 1 ; Temp used in logbook display&Divemode&Gassetup | |
321 logbook_temp4 res 1 ; Temp used in logbook display&Divemode&Gassetup | |
322 logbook_temp5 res 1 ; Temp used in logbook display&Divemode&Gassetup | |
323 logbook_temp6 res 1 ; Temp used in logbook display&Divemode&Gassetup | |
324 | |
325 convert_value_temp res 3 ; used in menu_battery_state_convert_date | |
326 time_correction_value res 1 ; Adds to Seconds on midnight | |
327 | |
328 ;============================================================================= | |
0 | 329 ; C-code Routines |
330 ; PART 2 | |
116 | 331 extern deco_calc_CNS_decrease_15min |
332 extern deco_calc_CNS_fraction | |
333 extern deco_calc_desaturation_time | |
334 extern deco_calc_hauptroutine | |
335 extern deco_calc_percentage | |
336 extern deco_calc_wo_deco_step_1_min | |
337 extern deco_clear_CNS_fraction | |
338 extern deco_clear_tissue | |
339 extern deco_hash | |
340 extern deco_pull_tissues_from_vault | |
341 extern deco_push_tissues_to_vault | |
0 | 342 |
164 | 343 ;============================================================================= |
0 | 344 ;I/O Ports (I=Input, O=Output) |
164 | 345 ; |
0 | 346 #DEFINE sensor_SDO PORTA,1 ;O |
347 #DEFINE oled_rw PORTA,2 ;0 | |
348 #DEFINE oled_hv PORTA,3 ;O | |
349 #DEFINE sensor_SDI PORTA,4 ;I | |
350 #DEFINE oled_cs PORTA,5 ;O | |
351 #DEFINE sensor_CLK PORTA,7 ;O | |
352 | |
353 #DEFINE SWITCH2 PORTB,0 ;I (Right) | |
354 #DEFINE SWITCH1 PORTB,1 ;I (Left) | |
355 #DEFINE oled_vdd PORTB,2 ;O | |
356 #DEFINE LED_blue PORTB,3 ;0 | |
357 #DEFINE LED_red PORTB,4 ;O | |
358 | |
359 #DEFINE CHRG_OUT PORTC,1 ;O | |
360 #DEFINE CHRG_IN PORTC,2 ;I | |
361 | |
362 #DEFINE oled_d1 PORTD,0 ;O | |
363 #DEFINE oled_d2 PORTD,1 ;O | |
364 #DEFINE oled_d3 PORTD,2 ;O | |
365 #DEFINE oled_d4 PORTD,3 ;O | |
366 #DEFINE oled_d5 PORTD,4 ;O | |
367 #DEFINE oled_d6 PORTD,5 ;O | |
368 #DEFINE oled_d7 PORTD,6 ;O | |
369 #DEFINE oled_d8 PORTD,7 ;O | |
370 | |
371 #DEFINE oled_rs PORTE,0 ;0 | |
372 #DEFINE oled_nreset PORTE,1 ;0 | |
373 #DEFINE oled_e_nwr PORTE,2 ;0 | |
374 | |
142 | 375 ; Bank0 flags |
376 #DEFINE win_flip_screen win_flags,0 ; 180° rotation of the OLED screen. | |
377 | |
0 | 378 ; Flags |
379 #DEFINE FLAG_scale flag1,0 ; Wordprocessor | |
380 #DEFINE FLAG_truncated flag1,1 ; Wordprocessor | |
381 #DEFINE pre_zero_flag flag1,2 ; leading zeros | |
382 #DEFINE neg_flag flag1,3 ; e.g. Sub_16 (sub_c = sub_a - sub_b) | |
383 #DEFINE FLAG_row_prime flag1,4 ; Wordproceesor | |
384 #DEFINE leading_zeros flag1,5 ; display leading zeros? | |
385 #DEFINE show_last3 flag1,6 ; show only three figures | |
386 #DEFINE leftbind flag1,7 ; leftbinded output | |
387 | |
388 #DEFINE onesecupdate flag2,0 ;=1 after any second | |
389 #DEFINE divemode flag2,1 ;=1 if in divemode | |
390 #DEFINE oneminupdate flag2,2 ;=1 after any minute | |
391 #DEFINE realdive flag2,3 ; dive was longer then one minute? | |
392 #DEFINE sleepmode flag2,4 ;=1 if in sleepmode | |
393 #DEFINE same_row flag2,5 ;=1 if pixel pair is in same row (display_profile) | |
394 #DEFINE premenu flag2,6 ; Premenu/Divemenu selected | |
395 #DEFINE menubit flag2,7 ; menu | |
396 | |
397 #DEFINE menubit2 flag3,0 ; menu | |
398 #DEFINE menubit3 flag3,1 ; menu | |
399 #DEFINE set_minutes flag3,2 ; set minutes (not hours) | |
400 #DEFINE cursor flag3,3 ; display cursor | |
401 #DEFINE menubit4 flag3,4 ; quit set time | |
402 #DEFINE display_velocity flag3,5 ; velocity is displayed | |
403 #DEFINE temp_changed flag3,6 ; temperature changed | |
404 #DEFINE pres_changed flag3,7 ; pressure changed | |
405 | |
406 #DEFINE set_year flag4,0 ; Menu Settime | |
407 #DEFINE set_day flag4,1 ; Menu Settime | |
408 #DEFINE set_month flag4,2 ; Menu Settime | |
409 #DEFINE store_sample flag4,3 ;=1 after any CF20 seconds in divemode | |
410 #DEFINE divemode2 flag4,4 ; displayed divetime stopped? | |
411 #DEFINE header_stored flag4,5 ; header already stored | |
412 #DEFINE first_FD flag4,6 ; 1st 0xFD in EEPROM found | |
413 #DEFINE first_FA flag4,6 ; 1st 0xFA in EEPROM found | |
414 #DEFINE second_FD flag4,7 ; 2nd 0xFD in EEPROM found | |
415 #DEFINE second_FA flag4,7 ; 2nd 0xFA in EEPROM found | |
416 | |
417 #DEfINE eeprom_overflow flag5,0 ; EEPROM overflowed (>32KB) | |
418 #DEFINE eeprom_blockwrite flag5,1 ; EEPROM blockwrite active | |
419 #DEFINE neg_flag_xdT flag5,2 ; xdT negative (2nd order temperature calculation) | |
420 #DEFINE low_battery_state flag5,3 ;=1 if battery low | |
421 #DEFINE DP_done flag5,4 ; valconv | |
422 #DEFINE DP_done2 flag5,5 ; valconv | |
423 #DEFINE pressure_refresh flag5,6 ; Pressure and temperature refreshed | |
424 #DEFINE no_sensor_int flag5,7 ; block any further access to pressure sensor | |
425 | |
426 #DEFINE cc_active flag6,0 ;=1: Constant Current mode aktive (Charger) | |
427 #DEFINE cv_active flag6,1 ;=1: Constant Voltage mode aktive (Charger) | |
428 #DEFINE ignore_digit5 flag6,2 ;=1: ignores digit 5 in valconv | |
429 #DEFINE switch_left flag6,3 ;=1: left switch pressed | |
430 #DEFINE switch_right flag6,4 ;=1: right switch pressed | |
431 #DEFINE uart_settime flag6,5 ;=1: enter time sync routine | |
432 #DEFINE neg_temp flag6,6 ;=1: temperature below zero | |
433 #DEFINE twosecupdate flag6,7 ;=1: after any two seconds | |
434 | |
435 #DEFINE dekostop_active flag7,0 ;=1: in deocompression mode | |
436 #DEFINE all_dives_shown flag7,1 ;=1: all dives in loogbook shown, abort further scanning | |
437 #DEFINE return_from_profileview flag7,2 ;=1: set cursor to same position again | |
438 #DEFINE logbook_profile_view flag7,3 ;=1: Show details/profile in logbook | |
439 #DEFINE logbook_page_not_empty flag7,4 ;=1: actual logbook page is not empty | |
440 #DEFINE dump_external_eeprom flag7,5 ;=1: enter download-routine | |
441 #DEFINE simulatormode_active flag7,6 ;=1: Simulator mode active, override pressure sensor readings | |
442 #DEFINE all_zeros_flag flag7,7 ;=1: display all zeros from here (valconv_v2.asm) | |
443 | |
444 #DEFINE internal_eeprom_write flag8,0 ;=1: start routine to access internal EEPROM BANK 0 via the UART | |
445 #DEFINE update_divetime flag8,1 ;=1: update divetime display | |
446 #DEFINE display_set_xgas flag8,2 ;=1: Display Set Gas menu in Divemode | |
447 #DEFINE FLAG_active_descent flag8,3 ;=1: A Descent in Apnoe mode is active | |
448 #DEFINE display_see_deco flag8,4 ;=1: Display decoplan in Divemode | |
449 #DEFINE display_set_gas flag8,5 ;=1: Display Gaslist menu in Divemode | |
104 | 450 ;free flag8,6 ;=1: |
0 | 451 #DEFINE rs232_recieve_overflow flag8,7 ;=1: An RS232 timeout overflow occoured |
452 | |
453 #DEFINE nofly_active flag9,0 ;=1: Do not fly! | |
454 #DEFINE ppO2_display_active flag9,1 ;=1: ppO2 value is displayed | |
455 #DEFINE ppO2_show_value flag9,2 ;=1: show ppO2 value! | |
456 #DEFINE show_startup_screen flag9,3 ;=1: Show startup screen with MD2 hash | |
457 #DEFINE ignore_digit3 flag9,4 ;=1: ignores digits 3-5 in valconv | |
458 #DEFINE ppO2_warn_value flag9,5 ;=1: warn about ppO2! | |
459 #DEFINE output_to_postinc_only flag9,6 ;=1: Do not call wordprocessor in output | |
460 #DEFINE uart_send_hash flag9,7 ;=1: Send the MD2 hash via UART | |
461 | |
64 | 462 #DEFINE last_ceiling_gf_shown flag10,0 ;=1: Last stop already shown |
0 | 463 #DEFINE uart_send_int_eeprom flag10,1 ;=1: Send internal EEPROM BANK 0 |
464 #DEFINE uart_reset_decodata flag10,2 ;=1: Reset deco data | |
465 #DEFINE manual_gas_changed flag10,3 ;=1: Manual Gas changed during dive | |
466 #DEFINE stored_gas_changed flag10,4 ;=1: Stored Gas changed during dive | |
467 #DEFINE event_occured flag10,5 ;=1: An Event has occured during the current sample interval | |
468 #DEFINE new_profile_format flag10,6 ;=1: Current Dive in Logbook uses new ProfileFormat | |
469 #DEFINE gauge_mode flag10,7 ;=1: Gauge mode active | |
470 | |
471 #DEFINE FLAG_const_ppO2_mode flag11,0 ;=1: const ppO2 mode active | |
472 #DEFINE gas_setup_page2 flag11,1 ;=1: page two of gassetup active | |
473 #DEFINE logbook_header_drawn flag11,2 ;=1: The "Logbook" Header in the List view is already drawn | |
474 #DEFINE ignore_digit4 flag11,3 ;=1: Ignores digits 4-5 in valconv | |
475 #DEFINE charge_done flag11,4 ;=1: Complete charge cycle done | |
476 #DEFINE initialize_battery1 flag11,5 ;=1: Battery memory need to be initialised | |
477 #DEFINE initialize_battery2 flag11,6 ;=1: Battery memory need to be initialised | |
478 #DEFINE charge_started flag11,7 ;=1: Charger started in CC mode | |
479 | |
480 #DEFINE switch_left_isr flag12,0 ;=1: left switch pressed (Only modified in ISR!) | |
481 #DEFINE switch_right_isr flag12,1 ;=1: right switch pressed (Only modified in ISR!) | |
482 #DEFINE debug_mode flag12,2 ;=1: Debugmode active | |
483 #DEFINE neg_flag_isr flag12,3 ;=1: ISR Negative flag (Math) | |
484 #DEFINE select_bailoutgas flag12,4 ;=1: Select Bailout instead of Setpoint in Gaslist | |
485 #DEFINE FLAG_apnoe_mode flag12,5 ;=1: Apnoe mode selected | |
486 #DEFINE customfunction_page flag12,6 ;=1: Use 2nd Page of Custom Functions | |
487 #DEFINE uart_send_int_eeprom2 flag12,7 ;=1: Send internal EEPROM BANK 1 | |
488 | |
489 #DEFINE internal_eeprom_write2 flag13,0 ;=1: start routine to access internal EEPROM BANK 1 via the UART | |
490 #DEFINE button_delay_done flag13,1 ;=1: Button was pressed for more then 500ms, start counting | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
167
diff
changeset
|
491 ; free flag13,2 ;=1: unused |
0 | 492 #DEFINE deco_mode_changed flag13,3 ;=1: The Decomode was changes, show decomode description! |
493 #DEFINE pled_velocity_display flag13,4 ;=1: Velocity is displayed | |
494 #DEFINE depth_greater_100m flag13,5 ;=1: Depth is greater then 100m | |
495 #DEFINE display_set_setpoint flag13,6 ;=1: SetPoint list active | |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
97
diff
changeset
|
496 #DEFINE toggle_customview flag13,7 ;=1: Next customview |
0 | 497 |
498 #DEFINE enter_error_sleep flag14,0 ;=1: Sleep immediately displaying the error using LED codes | |
153 | 499 #DEFINE nsm flag14,1 ;=1: Do not sleep |
3 | 500 #DEFINE is_bailout flag14,2 ;=1: CC mode, but bailout active! |
0 | 501 #DEFINE standalone_simulator flag14,3 ;=1: Standalone Simulator active |
502 #DEFINE display_set_simulator flag14,4 ;=1: Show Divemode simulator menu | |
503 #DEFINE displaytext_high flag14,5 ;=1: Show/Use Texts 255-511 in Texttable | |
8 | 504 #DEFINE better_gas_available flag14,6 ;=1: A better gas is available and a gas change is advised in divemode |
0 | 505 #DEFINE displaytext_invert flag14,7 ;=1: inverts word prozessor output |
506 | |
507 #DEFINE restore_deco_data flag15,0 ;=1: Restore Decodata after the dive from 0x380 buffer | |
508 #DEFINE uart_store_tissue_data flag15,1 ;=1: Store tissue data for next simualted dive! | |
111 | 509 #DEFINE reset_average_depth flag15,2 ;=1: Average Depth will be resetted |
17 | 510 #DEFINE blinking_better_gas flag15,3 ;=1: Gas is currently blinking |
98
6f8e3a08011e
1.73beta rc1 (Added new customview for divemode)
heinrichsweikamp
parents:
97
diff
changeset
|
511 #DEFINE menu3_active flag15,4 ;=1: menu entry three in divemode menu is active |
137 | 512 #DEFINE no_deco_customviews flag15,5 ;=1: Selected mode is Apnoe or Gauge |
83
3e351e25f5d1
adding anti-aliased fonts frame and merging some patches from Jeando
heinrichsweikamp
parents:
75
diff
changeset
|
513 #DEFINE maxdepth_greater_100m flag15,6 ;=1: Max Depth greater>100m |
111 | 514 ;unused flag15,7 ;=1: |
0 | 515 |