Mercurial > public > mk2
comparison code_part1/OSTC_code_asm_part1/definitions.asm @ 832:63cce2e2ae20
NEW: Logbook shows markers with small orange boxes in the profile
author | heinrichsweikamp |
---|---|
date | Sun, 10 Jan 2016 11:38:35 +0100 |
parents | e8f5eed0eccf |
children | f8afe90796d6 |
comparison
equal
deleted
inserted
replaced
831:0cf00ecf3532 | 832:63cce2e2ae20 |
---|---|
20 ; 2011/01/20: [jDG] Create a common file included in ASM and C code. | 20 ; 2011/01/20: [jDG] Create a common file included in ASM and C code. |
21 ; known bugs: | 21 ; known bugs: |
22 ; ToDo: | 22 ; ToDo: |
23 | 23 |
24 #DEFINE softwareversion_x d'3' ; Software version XX.YY | 24 #DEFINE softwareversion_x d'3' ; Software version XX.YY |
25 #DEFINE softwareversion_y d'12' ; Software version XX.YY | 25 #DEFINE softwareversion_y d'13' ; Software version XX.YY |
26 | 26 |
27 #DEFINE softwareversion_beta 0 ; (and 0 for release) | 27 #DEFINE softwareversion_beta 0 ; (and 0 for release) |
28 | 28 |
29 #DEFINE max_custom_number d'73' ; Number of last used custom function | 29 #DEFINE max_custom_number d'73' ; Number of last used custom function |
30 | 30 |
585 #DEFINE store_bailout_event flag16,0 ;=1: Store the bailout event | 585 #DEFINE store_bailout_event flag16,0 ;=1: Store the bailout event |
586 #DEFINE gaschange_cnt_active flag16,1 ;=1: The gas switch countdown is active | 586 #DEFINE gaschange_cnt_active flag16,1 ;=1: The gas switch countdown is active |
587 #DEFINE sp1_switched flag16,2 ;=1: This setpoint has been autoselected already | 587 #DEFINE sp1_switched flag16,2 ;=1: This setpoint has been autoselected already |
588 #DEFINE sp2_switched flag16,3 ;=1: This setpoint has been autoselected already | 588 #DEFINE sp2_switched flag16,3 ;=1: This setpoint has been autoselected already |
589 #DEFINE sp3_switched flag16,4 ;=1: This setpoint has been autoselected already | 589 #DEFINE sp3_switched flag16,4 ;=1: This setpoint has been autoselected already |
590 | 590 #DEFINE log_marker_found flag16,5 ;=1: A logbook marker has been found |
591 |