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