Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/definitions.asm @ 38:8ece4837a642
test & debugging new deco code...
author | heinrichsweikamp |
---|---|
date | Mon, 31 May 2010 19:14:09 +0200 |
parents | 6e5db85382a2 |
children | 3ab1188651af |
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 | |
20 ; known bugs: | |
21 ; ToDo: | |
22 | |
23 ;#DEFINE NO_SENSOR_MODE ; uses Dummy values | |
24 | |
25 #DEFINE softwareversion_x d'1' ; Software version XX.YY | |
30 | 26 #DEFINE softwareversion_y d'62' ; Software version XX.YY |
0 | 27 |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
28 #DEFINE max_custom_number d'47' ; Number of last used custom function |
0 | 29 |
30 #DEFINE logbook_profile_version 0x20 ; Do not touch! | |
31 | |
32 #DEFINE T0CON_debounce b'00000000' ; Timer0 Switch Debounce | |
33 | |
34 #DEFINE FT_SMALL .0 | |
35 #DEFINE FT_MEDIUM .1 | |
36 #DEFINE FT_LARGE .2 | |
37 | |
38 ; Define max. 5 Binary Custom Functions here (add more in menu_custom.asm) | |
39 #DEFINE binary_cf1 d'31' | |
40 #DEFINE binary_cf2 d'38' | |
41 #DEFINE binary_cf3 d'39' | |
42 #DEFINE binary_cf4 d'40' | |
43 #DEFINE binary_cf5 d'41' | |
17 | 44 #DEFINE binary_cf6 d'42' |
0 | 45 |
46 #DEFINE wp_fontwidth .14 | |
47 #DEFINE wp_fontheight .24 | |
48 | |
49 ; Color Definitions: 8Bit RGB b'RRRGGGBB' | |
9 | 50 ;#DEFINE color_red b'11100000' |
0 | 51 #DEFINE color_blue b'00000011' |
52 #DEFINE color_green b'00011100' | |
3 | 53 ;#DEFINE color_white b'11111111' |
0 | 54 #DEFINE color_black b'00000000' |
55 #DEFINE color_deepblue b'00000001' | |
17 | 56 #DEFINE color_grey d'74' |
0 | 57 |
13 | 58 #DEFINE plus_time_correction d'42' |
59 | |
27
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
60 #DEFINE warn_depth d'1' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
61 #DEFINE warn_cns d'2' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
62 #DEFINE warn_gf d'3' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
63 #DEFINE warn_ppo2 d'4' |
29341afd2060
NEW: Depth, CNS, GF, ppO2 and Velocity are Color-coded
heinrichsweikamp
parents:
25
diff
changeset
|
64 #DEFINE warn_velocity d'5' |
0 | 65 |
66 ;Configuration bits | |
67 CONFIG OSC = IRCIO67 ;Internal oscillator block, port function on RA6 and RA7 | |
68 CONFIG FCMEN = OFF ;Fail-Safe Clock Monitor disabled | |
69 CONFIG IESO = OFF ;Oscillator Switchover mode disabled | |
70 | |
71 CONFIG PWRT = ON ;PWRT enabled | |
72 CONFIG BOREN = OFF ;Brown-out Reset disabled in hardware and software | |
73 | |
74 CONFIG WDT = OFF ;WDT disabled | |
75 CONFIG WDTPS = 128 ;1:128 | |
76 | |
77 CONFIG MCLRE = ON ;MCLR pin enabled; RE3 input pin disabled | |
78 CONFIG LPT1OSC = OFF ;Timer1 configured for higher power operation | |
79 CONFIG PBADEN = OFF ;PORTB<4> and PORTB<1:0> Configured as Digital I/O Pins on Reset | |
80 | |
81 CONFIG DEBUG = OFF ;Background debugger disabled, RB6 and RB7 configured as general purpose I/O pins | |
82 CONFIG XINST = OFF ;Instruction set extension and Indexed Addressing mode disabled (Legacy mode) | |
83 CONFIG LVP = OFF ;Single-Supply ICSP disabled | |
84 CONFIG STVREN = OFF ;Stack full/underflow will not cause Reset | |
85 | |
86 | |
87 ;Variable definitions | |
88 ; arrays are in hex size!! 20 = .032 | |
89 | |
90 CBLOCK 0x060 ;Bank 0 | |
91 letter:.026 ;letter buffer | |
92 win_color1 | |
93 win_color2 | |
94 win_top | |
95 win_leftx2 | |
96 win_font | |
97 win_invert | |
98 wp_temp | |
99 ENDC | |
100 ; the following is used by the C-code up to 0x0E0!! | |
101 CBLOCK 0x0E0 ;Bank 0 | |
102 ENDC | |
103 | |
104 CBLOCK 0x100 ;Bank 1 | |
105 wreg_temp ;variables used for context saving during ISR | |
106 status_temp | |
107 bsr_temp | |
108 | |
109 secs ;realtime clock | |
110 mins | |
111 hours | |
112 day | |
113 month | |
114 year | |
115 | |
116 waitms_temp ;variables required for wait routines | |
117 wait_temp ; " + used to copy data to c code + used for temp/testing | |
118 ; never use wait_temp in interrupt routines (isr) and never call any wait routine in interrupts | |
119 | |
120 textnumber ;for textdisplay and textlookup | |
121 textlength | |
122 textaddress:2 | |
123 | |
124 LastSetRow | |
125 LastSetColumn | |
126 average_depth_hold:4 ; Holds Sum of depths | |
127 b0_lo ; Temp (calculate_average) | |
128 b0_hi ; Temp (calculate_average) | |
129 average_divesecs:2 ; Used for resetable average depth display | |
130 surface_interval:2 ; Surface Interval [mins] | |
131 grayvalue ; 4 Bit Greyvalue | |
132 | |
133 draw_box_temp1 | |
134 draw_box_temp2 | |
135 draw_box_temp3 | |
136 | |
137 flag1 ;Flag register | |
138 flag2 | |
139 flag3 | |
140 flag4 | |
141 flag5 ; has to be exacly here, is modified by c-code (no sensor int) | |
142 flag6 | |
143 flag7 | |
144 flag8 | |
145 flag9 | |
146 flag10 | |
147 flag11 | |
148 flag12 | |
149 flag13 | |
150 flag14 | |
151 flag15 | |
152 | |
153 oled1_temp ;Temp variables for display output | |
154 oled2_temp | |
155 oled3_temp | |
156 oled4_temp ; Used in "Displaytext" | |
157 | |
158 lo ;bin to dec conversion routine | |
159 hi | |
160 lo_temp | |
161 hi_temp | |
162 temp3 ; used in valconv math | |
163 temp4 ; used in valconv math | |
164 ignore_digits | |
165 | |
166 temp1 ;Multipurpose Temp variables used in valconv math | |
167 temp2 ; used in valconv math | |
168 | |
169 ext_ee_temp1 ; External EEPROM Temp 1 used in I2C EEPROM | |
170 ext_ee_temp2 ; External EEPROM Temp 2 used in I2C EEPROM | |
171 | |
172 isr1_temp ;ISR temp variables | |
173 isr2_temp | |
174 isr3_temp:2 | |
175 | |
176 timer1int_counter1 ;Timer 1 counter | |
177 timer1int_counter2 ;Timer 1 counter | |
178 | |
179 uart1_temp ;RS232 temp variables | |
180 uart2_temp | |
181 | |
182 divA:2 ;math routines | |
183 divB | |
184 xC:4 | |
185 xA:2 | |
186 xB:2 | |
187 sub_c:2 | |
188 sub_a:2 | |
189 sub_b:2 | |
190 | |
191 dLSB ;Pressure sensor interface | |
192 dMSB | |
193 clock_count | |
4 | 194 ppO2_setpoint_store ; Actual setpoint |
195 ; temperature_correction ; additional temperature correction value | |
0 | 196 W1:2 |
197 W2:2 | |
198 W3:2 | |
199 W4:2 | |
200 C1:2 | |
201 C2:2 | |
202 C3:2 | |
203 C3_temp:2 | |
204 C4:2 | |
205 C5:2 | |
206 C6:2 | |
207 D1:2 | |
208 D2:2 | |
209 | |
210 isr_divA:2 | |
211 isr_divB | |
212 isr_xC:4 | |
213 isr_xA:2 | |
214 isr_xB:2 | |
215 isr_sub_c:2 | |
216 isr_sub_a:2 | |
217 isr_sub_b:2 | |
218 | |
219 xdT:2 | |
220 xdT2:2 | |
221 OFF:2 | |
222 SENS:2 | |
223 amb_pressure:2 ; ambient pressure [mBar] | |
224 rel_pressure:2 ; amb_pressure - surface pressure [mBar] | |
225 max_pressure:2 ; Max. pressure for the dive [mBar] | |
226 avr_rel_pressure:2 ; Average rel. pressure (Average depth) for the dive [mBar] | |
227 last_pressure:2 | |
228 temperature:2 | |
229 last_temperature:2 | |
230 temperature_temp:2 | |
231 Dx:2 | |
232 | |
233 last_surfpressure:2 ;Divemode | |
234 last_surfpressure_15min:2 | |
235 last_surfpressure_30min:2 | |
236 divemins:2 ;Minutes | |
237 divesecs ;seconds | |
238 samplesecs ; counts the seconds until the next sample is stored in divemode | |
239 samplesecs_value ; holds the CF20 value | |
240 decodata:2 ;Deco data | |
241 mintemp:2 ;min temperature | |
242 ProfileFlagByte ; stores number of addional bytes per sample | |
243 EventByte ; Stores the Event type plus flags | |
244 AlarmType ; 0= No Alarm | |
245 ; 1= SLOW | |
246 ; 2= DecoStop missed | |
247 ; 3= DeepStop missed | |
248 ; 4= ppO2 Low Warning | |
249 ; 5= ppO2 High Warning | |
250 ; 6= manual marker | |
251 | |
252 divisor_temperature ; divisors for profile storage | |
253 divisor_deco | |
254 divisor_tank | |
255 divisor_ppo2 | |
256 divisor_deco_debug | |
257 divisor_nuy2 | |
258 | |
259 timeout_counter ;Timeout counter variables | |
260 timeout_counter2 | |
261 timeout_counter3 ;pre-menu timeout counter | |
262 | |
263 menupos ;cursor position | |
264 menupos2 | |
265 menupos3 | |
266 | |
267 eeprom_address:2 ;external EEPROM | |
268 eeprom_header_address:2 | |
269 | |
270 divenumber ;Logbook | |
271 | |
272 batt_voltage:2 ;Battery voltage in mV | |
273 | |
274 i2c_temp ;I²C timeout counter | |
275 i2c_temp2 | |
276 | |
277 sim_pressure:2 ; hold simulated pressure in mBar if in Simulator mode | |
278 | |
279 profile_temp:2 ; temp variable for profile view | |
280 profile_temp2:2 ; temp variable for profile view | |
281 | |
282 nofly_time:2 ; No Fly time in Minutes (Calculated after Dive) | |
283 | |
284 deco_status ; =0 if decompression calculation done | |
285 | |
286 cf_checker_counter ; counts custom functions to check for warning symbol | |
287 | |
288 char_I_O2_ratio ; 02 ratio | |
289 | |
290 active_gas ; Holds number of active gas | |
291 | |
292 last_diluent ; backup of diluent percentage in const ppO2 mode | |
293 last_cns ; backup of last cns value | |
294 last_ppO2_value ; last calculated ppO2 value | |
295 | |
296 ; ontime_since_last_charge:2 ; Ontime in minutes since last complete charge cycle | |
297 ; sleeptime_since_last_charge:2; Sleeptime in hours since last complete charge | |
298 | |
299 debug_char:6 ; For debugmode | |
300 debug_temp ; For debugmode | |
301 | |
302 apnoe_mins ; single descent minutes for Apnoe mode | |
303 apnoe_secs ; single descent seconds for Apnoe mode | |
304 apnoe_max_pressure:2 ; Max. Pressure in Apnoe mode | |
305 apnoe_timeout_counter ; counts minutes for apnoe timeout | |
306 apnoe_surface_mins ; Surface interval mins for Apnoe mode | |
307 apnoe_surface_secs ; Surface interval secs for Apnoe mode | |
308 customfunction_temp1 ; start of custom function descriptors | |
309 customfunction_temp2 ; used in GETCUSTOM8 and GETCUSTOM15 | |
310 | |
311 switch_timeout ; used for hold-down count function | |
312 | |
313 temp5 ; used in PLED_MultiGF,... | |
314 temp6 ; used in PLED_MultiGF,... | |
315 char_last_pointer ; for MultiGF | |
316 MultiGF_seconds ; Counter for seconds in Multi-GF mode | |
317 | |
318 fatal_error_code ; holds error code value | |
319 | |
38 | 320 logbook_temp1 ; Temp used in logbook display&Divemode&Gassetup |
321 logbook_temp2 ; Temp used in logbook display&Divemode&Gassetup | |
322 logbook_temp3 ; Temp used in logbook display&Divemode&Gassetup | |
323 logbook_temp4 ; Temp used in logbook display&Divemode&Gassetup | |
324 logbook_temp5 ; Temp used in logbook display&Divemode&Gassetup | |
325 logbook_temp6 ; Temp used in logbook display&Divemode&Gassetup | |
0 | 326 |
327 convert_value_temp:3 ; used in menu_battery_state_convert_date | |
328 box_temp:5 | |
329 win_color1_temp | |
330 win_color2_temp ; Backup color registers | |
331 | |
332 ENDC | |
333 | |
334 CBLOCK 0x200 ;Bank 2 | |
335 int_O_tissue_for_debug:.32 ; deco_main_debug copies pressure of tissue to this variable | |
336 int_O_GF_spare____:2; // 0x240 | |
31 | 337 int_O_GF_step:2; // 0x242 |
0 | 338 int_O_gtissue_limit:2; // 0x244 |
339 int_O_gtissue_press:2; // 0x246 | |
340 int_O_limit_GF_low:2; // 0x248 | |
31 | 341 int_O_gtissue_press_at_GF_low:2; // 0x24A |
33 | 342 ENDC |
343 | |
344 CBLOCK 0x24C | |
31 | 345 char_I_step_is_1min; // 0x24C |
0 | 346 ENDC |
33 | 347 |
0 | 348 CBLOCK 0x24E ;Bank 2 |
349 char_O_GF_low_pointer; // 0x24E | |
350 char_O_actual_pointer; // 0x24F | |
351 ENDC | |
352 CBLOCK 0x250 ;Bank 2 | |
353 char_IO_deco_table:.32; // 0x250 | |
354 ENDC | |
355 CBLOCK 0x270 ;Bank 2 | |
356 char_I_table_deco_done:.32; // 0x270 | |
357 ENDC | |
358 CBLOCK 0x290 ;Bank 2 | |
359 int_O_calc_tissue_call_counter:2 | |
360 ENDC | |
361 CBLOCK 0x380 ;Bank 3 | |
362 ; some used in C code! | |
363 ENDC | |
364 | |
365 CBLOCK 0x500 | |
366 ; used by deco_main c-code for data transfer with the asm code | |
367 ; input of c-code | |
368 int_I_pres_respiration:2; ; 0x500 | |
369 int_I_pres_surface:2; ; 0x502 | |
370 int_I_temp:2; ; 0x504 | |
371 char_I_temp; ; 0x506 | |
372 char_I_actual_ppO2; ; 0x507 | |
31 | 373 char_I_deco_N2_ratio2; // 0x508 new in v.102 |
374 char_I_deco_He_ratio2; // 0x509 new in v.102 | |
375 char_I_deco_N2_ratio3; // 0x50A new in v.102 | |
376 char_I_deco_He_ratio3; // 0x50B new in v.102 | |
377 char_I_deco_N2_ratio4; // 0x50C new in v.102 | |
378 char_I_deco_He_ratio4; // 0x50D new in v.102 | |
379 char_I_deco_N2_ratio5; // 0x50E new in v.102 | |
380 char_I_deco_He_ratio5; // 0x50F new in v.102 | |
0 | 381 char_I_N2_ratio; ; 0x510 |
382 char_I_He_ratio; ; 0x511 | |
383 char_I_saturation_multiplier; ; for conservatism/safety values 1.0 (no conservatism) to 1.5 (50% faster saturation | |
384 char_I_desaturation_multiplier; ; for conservatism/safety values 0.66 (50% slower desaturation) to 1.0 (no conservatism); consveratism used in calc_tissue(), calc_tissue_step_1_min() and sim_tissue_1min() | |
385 char_I_GF_Hi_percentage; ; 0x514 | |
386 char_I_GF_Lo_percentage; ; 0x515 | |
387 char_I_GF_Spare; ; 0x516 | |
388 char_I_deco_distance; ; 0x517 | |
389 char_I_const_ppO2; ; 0x518 new in v.101 (C-Code), new in v109 (asm) | |
390 char_I_deco_ppO2_change; ; 0x519 new in v.101 | |
391 char_I_deco_ppO2; ; 0x51A new in v.101 | |
392 char_I_deco_gas_change; ; 0x51B new in v.101 | |
393 char_I_deco_N2_ratio; ; 0x51C new in v.101 | |
394 char_I_deco_He_ratio; ; 0x51D new in v.101 | |
395 char_I_depth_last_deco; ; 0x51E new in v.101 | |
396 char_I_deco_model; ; 0x51F new in v.102 | |
397 ; output of c-code: | |
398 int_O_desaturation_time:2; ; 0x520 | |
399 char_O_nullzeit; ; 0x522 | |
400 char_O_deco_status; ; 0x523 | |
401 char_O_array_decotime:7; ; 0x524 | |
402 char_O_array_decodepth:6; ; 0x52B | |
403 char_O_ascenttime; ; 0x531 | |
404 char_O_gradient_factor; ; 0x532 | |
405 char_O_tissue_saturation:.32; ; 0x533, He starts at 0x543 | |
406 char_O_array_gradient_weighted:.16 ; 0x553 | |
407 char_O_gtissue_no; ; 0x563 | |
408 char_O_diluent; ; 0x564 new in v.101 (C-Code), new in v109 (asm) | |
409 char_O_CNS_fraction; ; 0x565 new in v.101 | |
410 char_O_relative_gradient_GF; ; 0x566 new in v.102 | |
31 | 411 char_I_deco_gas_change2; // 0x567 new in v.102 |
412 char_I_deco_gas_change3; // 0x568 new in v.102 | |
413 char_I_deco_gas_change4; // 0x569 new in v.102 | |
414 char_I_deco_gas_change5; // 0x56A new in v.102 | |
415 | |
0 | 416 |
417 ENDC | |
418 | |
419 CBLOCK 0x700 ;Bank 7 | |
420 ; variables used exclusively in dd: | |
421 dd_temp_BSR ; has to be first in bank7 | |
422 temp_pointer_row | |
423 temp_pointer_column | |
424 temp2_pointer_row | |
425 temp2_pointer_column | |
426 temp_selected_char | |
427 temp_font_HIGH | |
428 temp_font_LOW | |
429 temp_font_height | |
430 temp2_font_height | |
431 temp_font_width | |
432 temp2_font_width | |
433 temp_diff_font_width | |
434 temp2_diff_font_width | |
435 temp_font_offset_left | |
436 temp_font_offset_right | |
437 temp_pos | |
438 DDflag | |
439 dd_oled_brightness_offset ; value will be subtracted from "dd_grayvalue" in dd_font2display_vxxx.asm | |
440 dd_grayvalue | |
441 dd2_temp | |
442 dd3_temp | |
443 dd_pos_decpoint | |
444 dd_grayvalue_temp | |
445 dd_grayvalue_temp2 | |
446 ENDC | |
447 | |
448 CBLOCK 0x94A ;Bank 9 | |
449 char_O_hash:.16 ; MD2 hash values = d'16' | |
450 ENDC | |
451 | |
452 | |
453 ; C-code Routines | |
454 ; PART 3 | |
455 ;#DEFINE main_wordprocessor 0x0B410 | |
456 #DEFINE main_wordprocessor 0x0B468 | |
457 | |
458 ; C-code Routines | |
459 ; PART 2 | |
460 #DEFINE deco_main_calc_hauptroutine 0x10000 | |
461 #DEFINE deco_main_calc_without_deco 0x10020 | |
462 #DEFINE main_clear_CNS_fraction 0x10030 | |
463 #DEFINE main_calc_CNS_decrease_15min 0x10034 | |
464 #DEFINE main_calc_percentage 0x10038 | |
465 #DEFINE deco_main_clear_tissue 0x10040 | |
466 #DEFINE main_calc_CNS_fraction 0x10050 | |
467 #DEFINE deco_main_calc_desaturation_time 0x10060 | |
468 #DEFINE deco_main_calc_wo_deco_step_1_m 0x10080 | |
469 #DEFINE deco_main_debug 0x100A0 | |
470 #DEFINE main_DD2_write_incon42 0x100B0 | |
471 #DEFINE main_DD2_write_incon24 0x100B4 | |
472 | |
473 #DEFINE deco_main_gradient_array 0x100C0 | |
474 #DEFINE deco_main_hash 0x100E0 | |
475 #DEFINE main_push_tissues_to_vault 0x100C4 | |
476 #DEFINE main_pull_tissues_from_vault 0x100C8 | |
477 | |
478 ;I/O Ports (I=Input, O=Output) | |
479 #DEFINE sensor_SDO PORTA,1 ;O | |
480 #DEFINE oled_rw PORTA,2 ;0 | |
481 #DEFINE oled_hv PORTA,3 ;O | |
482 #DEFINE sensor_SDI PORTA,4 ;I | |
483 #DEFINE oled_cs PORTA,5 ;O | |
484 #DEFINE sensor_CLK PORTA,7 ;O | |
485 | |
486 #DEFINE SWITCH2 PORTB,0 ;I (Right) | |
487 #DEFINE SWITCH1 PORTB,1 ;I (Left) | |
488 #DEFINE oled_vdd PORTB,2 ;O | |
489 #DEFINE LED_blue PORTB,3 ;0 | |
490 #DEFINE LED_red PORTB,4 ;O | |
491 | |
492 #DEFINE CHRG_OUT PORTC,1 ;O | |
493 #DEFINE CHRG_IN PORTC,2 ;I | |
494 | |
495 #DEFINE oled_d1 PORTD,0 ;O | |
496 #DEFINE oled_d2 PORTD,1 ;O | |
497 #DEFINE oled_d3 PORTD,2 ;O | |
498 #DEFINE oled_d4 PORTD,3 ;O | |
499 #DEFINE oled_d5 PORTD,4 ;O | |
500 #DEFINE oled_d6 PORTD,5 ;O | |
501 #DEFINE oled_d7 PORTD,6 ;O | |
502 #DEFINE oled_d8 PORTD,7 ;O | |
503 | |
504 #DEFINE oled_rs PORTE,0 ;0 | |
505 #DEFINE oled_nreset PORTE,1 ;0 | |
506 #DEFINE oled_e_nwr PORTE,2 ;0 | |
507 | |
508 ; Flags | |
509 #DEFINE FLAG_scale flag1,0 ; Wordprocessor | |
510 #DEFINE FLAG_truncated flag1,1 ; Wordprocessor | |
511 #DEFINE pre_zero_flag flag1,2 ; leading zeros | |
512 #DEFINE neg_flag flag1,3 ; e.g. Sub_16 (sub_c = sub_a - sub_b) | |
513 #DEFINE FLAG_row_prime flag1,4 ; Wordproceesor | |
514 #DEFINE leading_zeros flag1,5 ; display leading zeros? | |
515 #DEFINE show_last3 flag1,6 ; show only three figures | |
516 #DEFINE leftbind flag1,7 ; leftbinded output | |
517 | |
518 #DEFINE onesecupdate flag2,0 ;=1 after any second | |
519 #DEFINE divemode flag2,1 ;=1 if in divemode | |
520 #DEFINE oneminupdate flag2,2 ;=1 after any minute | |
521 #DEFINE realdive flag2,3 ; dive was longer then one minute? | |
522 #DEFINE sleepmode flag2,4 ;=1 if in sleepmode | |
523 #DEFINE same_row flag2,5 ;=1 if pixel pair is in same row (display_profile) | |
524 #DEFINE premenu flag2,6 ; Premenu/Divemenu selected | |
525 #DEFINE menubit flag2,7 ; menu | |
526 | |
527 #DEFINE menubit2 flag3,0 ; menu | |
528 #DEFINE menubit3 flag3,1 ; menu | |
529 #DEFINE set_minutes flag3,2 ; set minutes (not hours) | |
530 #DEFINE cursor flag3,3 ; display cursor | |
531 #DEFINE menubit4 flag3,4 ; quit set time | |
532 #DEFINE display_velocity flag3,5 ; velocity is displayed | |
533 #DEFINE temp_changed flag3,6 ; temperature changed | |
534 #DEFINE pres_changed flag3,7 ; pressure changed | |
535 | |
536 #DEFINE set_year flag4,0 ; Menu Settime | |
537 #DEFINE set_day flag4,1 ; Menu Settime | |
538 #DEFINE set_month flag4,2 ; Menu Settime | |
539 #DEFINE store_sample flag4,3 ;=1 after any CF20 seconds in divemode | |
540 #DEFINE divemode2 flag4,4 ; displayed divetime stopped? | |
541 #DEFINE header_stored flag4,5 ; header already stored | |
542 #DEFINE first_FD flag4,6 ; 1st 0xFD in EEPROM found | |
543 #DEFINE first_FA flag4,6 ; 1st 0xFA in EEPROM found | |
544 #DEFINE second_FD flag4,7 ; 2nd 0xFD in EEPROM found | |
545 #DEFINE second_FA flag4,7 ; 2nd 0xFA in EEPROM found | |
546 | |
547 #DEfINE eeprom_overflow flag5,0 ; EEPROM overflowed (>32KB) | |
548 #DEFINE eeprom_blockwrite flag5,1 ; EEPROM blockwrite active | |
549 #DEFINE neg_flag_xdT flag5,2 ; xdT negative (2nd order temperature calculation) | |
550 #DEFINE low_battery_state flag5,3 ;=1 if battery low | |
551 #DEFINE DP_done flag5,4 ; valconv | |
552 #DEFINE DP_done2 flag5,5 ; valconv | |
553 #DEFINE pressure_refresh flag5,6 ; Pressure and temperature refreshed | |
554 #DEFINE no_sensor_int flag5,7 ; block any further access to pressure sensor | |
555 | |
556 #DEFINE cc_active flag6,0 ;=1: Constant Current mode aktive (Charger) | |
557 #DEFINE cv_active flag6,1 ;=1: Constant Voltage mode aktive (Charger) | |
558 #DEFINE ignore_digit5 flag6,2 ;=1: ignores digit 5 in valconv | |
559 #DEFINE switch_left flag6,3 ;=1: left switch pressed | |
560 #DEFINE switch_right flag6,4 ;=1: right switch pressed | |
561 #DEFINE uart_settime flag6,5 ;=1: enter time sync routine | |
562 #DEFINE neg_temp flag6,6 ;=1: temperature below zero | |
563 #DEFINE twosecupdate flag6,7 ;=1: after any two seconds | |
564 | |
565 #DEFINE dekostop_active flag7,0 ;=1: in deocompression mode | |
566 #DEFINE all_dives_shown flag7,1 ;=1: all dives in loogbook shown, abort further scanning | |
567 #DEFINE return_from_profileview flag7,2 ;=1: set cursor to same position again | |
568 #DEFINE logbook_profile_view flag7,3 ;=1: Show details/profile in logbook | |
569 #DEFINE logbook_page_not_empty flag7,4 ;=1: actual logbook page is not empty | |
570 #DEFINE dump_external_eeprom flag7,5 ;=1: enter download-routine | |
571 #DEFINE simulatormode_active flag7,6 ;=1: Simulator mode active, override pressure sensor readings | |
572 #DEFINE all_zeros_flag flag7,7 ;=1: display all zeros from here (valconv_v2.asm) | |
573 | |
574 #DEFINE internal_eeprom_write flag8,0 ;=1: start routine to access internal EEPROM BANK 0 via the UART | |
575 #DEFINE update_divetime flag8,1 ;=1: update divetime display | |
576 #DEFINE display_set_xgas flag8,2 ;=1: Display Set Gas menu in Divemode | |
577 #DEFINE FLAG_active_descent flag8,3 ;=1: A Descent in Apnoe mode is active | |
578 #DEFINE display_see_deco flag8,4 ;=1: Display decoplan in Divemode | |
579 #DEFINE display_set_gas flag8,5 ;=1: Display Gaslist menu in Divemode | |
580 #DEFINE display_set_graphs flag8,6 ;=1: Display "Display Menu" in Divemode | |
581 #DEFINE rs232_recieve_overflow flag8,7 ;=1: An RS232 timeout overflow occoured | |
582 | |
583 #DEFINE nofly_active flag9,0 ;=1: Do not fly! | |
584 #DEFINE ppO2_display_active flag9,1 ;=1: ppO2 value is displayed | |
585 #DEFINE ppO2_show_value flag9,2 ;=1: show ppO2 value! | |
586 #DEFINE show_startup_screen flag9,3 ;=1: Show startup screen with MD2 hash | |
587 #DEFINE ignore_digit3 flag9,4 ;=1: ignores digits 3-5 in valconv | |
588 #DEFINE ppO2_warn_value flag9,5 ;=1: warn about ppO2! | |
589 #DEFINE output_to_postinc_only flag9,6 ;=1: Do not call wordprocessor in output | |
590 #DEFINE uart_send_hash flag9,7 ;=1: Send the MD2 hash via UART | |
591 | |
592 #DEFINE uart_compensate_temp flag10,0 ;=1: Enter Temperature compensation routine | |
593 #DEFINE uart_send_int_eeprom flag10,1 ;=1: Send internal EEPROM BANK 0 | |
594 #DEFINE uart_reset_decodata flag10,2 ;=1: Reset deco data | |
595 #DEFINE manual_gas_changed flag10,3 ;=1: Manual Gas changed during dive | |
596 #DEFINE stored_gas_changed flag10,4 ;=1: Stored Gas changed during dive | |
597 #DEFINE event_occured flag10,5 ;=1: An Event has occured during the current sample interval | |
598 #DEFINE new_profile_format flag10,6 ;=1: Current Dive in Logbook uses new ProfileFormat | |
599 #DEFINE gauge_mode flag10,7 ;=1: Gauge mode active | |
600 | |
601 #DEFINE FLAG_const_ppO2_mode flag11,0 ;=1: const ppO2 mode active | |
602 #DEFINE gas_setup_page2 flag11,1 ;=1: page two of gassetup active | |
603 #DEFINE logbook_header_drawn flag11,2 ;=1: The "Logbook" Header in the List view is already drawn | |
604 #DEFINE ignore_digit4 flag11,3 ;=1: Ignores digits 4-5 in valconv | |
605 #DEFINE charge_done flag11,4 ;=1: Complete charge cycle done | |
606 #DEFINE initialize_battery1 flag11,5 ;=1: Battery memory need to be initialised | |
607 #DEFINE initialize_battery2 flag11,6 ;=1: Battery memory need to be initialised | |
608 #DEFINE charge_started flag11,7 ;=1: Charger started in CC mode | |
609 | |
610 #DEFINE switch_left_isr flag12,0 ;=1: left switch pressed (Only modified in ISR!) | |
611 #DEFINE switch_right_isr flag12,1 ;=1: right switch pressed (Only modified in ISR!) | |
612 #DEFINE debug_mode flag12,2 ;=1: Debugmode active | |
613 #DEFINE neg_flag_isr flag12,3 ;=1: ISR Negative flag (Math) | |
614 #DEFINE select_bailoutgas flag12,4 ;=1: Select Bailout instead of Setpoint in Gaslist | |
615 #DEFINE FLAG_apnoe_mode flag12,5 ;=1: Apnoe mode selected | |
616 #DEFINE customfunction_page flag12,6 ;=1: Use 2nd Page of Custom Functions | |
617 #DEFINE uart_send_int_eeprom2 flag12,7 ;=1: Send internal EEPROM BANK 1 | |
618 | |
619 #DEFINE internal_eeprom_write2 flag13,0 ;=1: start routine to access internal EEPROM BANK 1 via the UART | |
620 #DEFINE button_delay_done flag13,1 ;=1: Button was pressed for more then 500ms, start counting | |
621 #DEFINE multi_gf_display flag13,2 ;=1: Display the Multi-GF screen instead of normal divemode screen | |
622 #DEFINE deco_mode_changed flag13,3 ;=1: The Decomode was changes, show decomode description! | |
623 #DEFINE pled_velocity_display flag13,4 ;=1: Velocity is displayed | |
624 #DEFINE depth_greater_100m flag13,5 ;=1: Depth is greater then 100m | |
625 #DEFINE display_set_setpoint flag13,6 ;=1: SetPoint list active | |
626 #DEFINE divemode_menu_page flag13,7 ;=1: Use 2nd Page of Divemode Menu | |
627 | |
628 #DEFINE enter_error_sleep flag14,0 ;=1: Sleep immediately displaying the error using LED codes | |
629 #DEFINE stopwatch_active flag14,1 ;=1: Show Stopwatch in Divemode | |
3 | 630 #DEFINE is_bailout flag14,2 ;=1: CC mode, but bailout active! |
0 | 631 #DEFINE standalone_simulator flag14,3 ;=1: Standalone Simulator active |
632 #DEFINE display_set_simulator flag14,4 ;=1: Show Divemode simulator menu | |
633 #DEFINE displaytext_high flag14,5 ;=1: Show/Use Texts 255-511 in Texttable | |
8 | 634 #DEFINE better_gas_available flag14,6 ;=1: A better gas is available and a gas change is advised in divemode |
0 | 635 #DEFINE displaytext_invert flag14,7 ;=1: inverts word prozessor output |
636 | |
637 #DEFINE restore_deco_data flag15,0 ;=1: Restore Decodata after the dive from 0x380 buffer | |
638 #DEFINE uart_store_tissue_data flag15,1 ;=1: Store tissue data for next simualted dive! | |
13 | 639 #DEFINE pre_dive_screen flag15,2 ;=1: Show predive screen instead of graphs |
17 | 640 #DEFINE blinking_better_gas flag15,3 ;=1: Gas is currently blinking |
0 | 641 #DEFINE display_see_l_tissue flag15,4 ;=1: Leading Tissue details are now displayed |
642 ;free | |
643 ;free | |
644 #DEFINE show_interval flag15,7 ;=1: Show Interval, =0: Show Clock in Surfacemode | |
645 |