Mercurial > public > mk2
annotate code_part1/OSTC_code_c_part2/shared_definitions.h @ 278:17aab4ca0547
BUGFIX CCR decoplan fails (bug bb42).
Make decoplaning faster (just update tissue during bottomtime).
Animate ascent depth during decoplaning.
author | JeanDo |
---|---|
date | Tue, 19 Apr 2011 02:26:41 +0200 |
parents | 4310ab395dbe |
children | 21a0f7393468 |
rev | line source |
---|---|
163 | 1 #ifdef xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx |
2 ; | |
3 ; shared_definitions.h | |
4 ; | |
5 ; Declare variables used both in C and ASM code | |
6 ; | |
7 ; This program is free software: you can redistribute it and/or modify | |
8 ; it under the terms of the GNU General Public License as published by | |
9 ; the Free Software Foundation, either version 3 of the License, or | |
10 ; (at your option) any later version. | |
11 ; | |
12 ; This program is distributed in the hope that it will be useful, | |
13 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 ; GNU General Public License for more details. | |
16 ; | |
17 ; You should have received a copy of the GNU General Public License | |
18 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 ; | |
20 ; Copyright (c) 2010, JD Gascuel. | |
21 ;============================================================================= | |
22 ; RATIONAL | |
23 ; | |
24 ; We must enforce good data passing between the C and the ASM parts of code. | |
25 ; The previous design used two independant definitions of each variable, | |
26 ; one in C, one in ASM. If they did not match, no error was generated, and | |
27 ; anything can happend at runtime... | |
28 ; | |
29 ; The new design use LINKING to ensure the variables defined in C are at the | |
30 ; same address when used in ASM code. And it uses a unique declaration file | |
31 ; (with suitable macros) to make sure they have the same size in both language. | |
32 ; | |
33 ; HISTORY | |
34 ; 2011-01-20: [jDG] Creation. | |
35 ; | |
36 ; NOTE | |
37 ; | |
38 ; This file have to obey both ASM and C syntax. The only common directives | |
39 ; are #if/#ifdef/#endif and the #define, so they are eavily used to do the | |
40 ; trick. | |
41 ; | |
42 ; BUGS | |
43 ;============================================================================= | |
44 #endif | |
45 | |
46 #ifdef __18CXX | |
47 //------------------------------------------------------------------------ | |
48 // C-style declarations: | |
275
4310ab395dbe
Keep low_depth in float 32bits (w/o rounding) for a better stability.
JeanDo
parents:
240
diff
changeset
|
49 # ifndef TEST_MAIN |
216 | 50 # define VAR_UCHAR(n) extern unsigned char n |
51 # define TAB_UCHAR(n,size) extern unsigned char n[size] | |
52 # define VAR_UINT(n) extern unsigned short n | |
53 # define TAB_UINT(n,size) extern unsigned short n[size] | |
167 | 54 # else |
216 | 55 # define VAR_UCHAR(n) unsigned char n |
56 # define TAB_UCHAR(n,size) unsigned char n[size] | |
57 # define VAR_UINT(n) unsigned short n | |
58 # define TAB_UINT(n,size) unsigned short n[size] | |
167 | 59 # endif |
163 | 60 #else |
61 ;------------------------------------------------------------------------- | |
62 ; ASM-style declarations: | |
63 #define VAR_UCHAR(n) n res 1 | |
64 #define TAB_UCHAR(n,size) n res size | |
65 #define VAR_UINT(n) n res 2 | |
66 #define TAB_UINT(n,size) n res 2*size | |
67 #endif | |
68 | |
69 #ifdef __18CXX | |
70 //---- BANK 2 DATA ------------------------------------------------------- | |
71 // Gather all data C-code --> ASM-code | |
72 # pragma udata overlay bank2=0x200 | |
73 #else | |
74 bank2 udata_ovr 0x200 | |
75 #endif | |
76 | |
77 VAR_UINT (int_O_gtissue_limit); | |
78 VAR_UINT (int_O_gtissue_press); | |
168 | 79 VAR_UINT (int_O_desaturation_time); // |
80 VAR_UINT (int_O_ascenttime); // TTS (in minutes) | |
163 | 81 |
82 VAR_UCHAR (char_O_nullzeit); // | |
278 | 83 VAR_UCHAR (char_O_deco_status); // Deko state-machine state. |
84 VAR_UCHAR (char_O_deco_last_stop); // Depth reached during deko planning. | |
163 | 85 VAR_UCHAR (char_O_gradient_factor); // |
86 VAR_UCHAR (char_O_gtissue_no); // | |
87 VAR_UCHAR (char_O_diluent); // new in v.101 | |
88 VAR_UCHAR (char_O_CNS_fraction); // new in v.101 | |
89 VAR_UCHAR (char_O_relative_gradient_GF); // new in v.102 | |
90 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
91 VAR_UCHAR (char_O_first_deco_depth); // Depth of first stop. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
92 VAR_UCHAR (char_O_first_deco_time) ; // Duration of first stop. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
93 TAB_UCHAR (char_O_deco_depth, 0x20); // Fusionned decompression table: |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
94 TAB_UCHAR (char_O_deco_time, 0x20); // Both ZH-L16 and L16-GF models. |
163 | 95 |
96 TAB_UCHAR (char_O_tissue_saturation, 0x20); // Compartiment desaturation time, in min. | |
97 | |
171 | 98 VAR_UINT (int_O_DBS_bitfield); // NOTE: 9 bytes dumped to divelog by store_dive_decodebug |
163 | 99 VAR_UINT (int_O_DBS2_bitfield); |
100 VAR_UINT (int_O_DBG_pre_bitfield); | |
101 VAR_UINT (int_O_DBG_post_bitfield); | |
102 VAR_UCHAR (char_O_NDL_at_20mtr); | |
103 | |
224 | 104 TAB_UINT (int_O_gas_volumes, 5); // Volumes evaluation for each gas tank, in 0.1 liters. |
222
638f8e17bd51
Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents:
216
diff
changeset
|
105 |
164 | 106 TAB_UCHAR (char_O_hash, 16); |
107 | |
163 | 108 #ifdef __18CXX |
109 //---- BANK 3 DATA ------------------------------------------------------- | |
110 // Gather all data ASM-code --> C-code | |
111 # pragma udata overlay bank3=0x300 | |
112 #else | |
113 ; In ASM, put the same bank, in overlay mode, at the same address | |
114 bank3 udata_ovr 0x300 | |
115 #endif | |
116 | |
117 VAR_UCHAR (char_I_step_is_1min); | |
118 | |
119 VAR_UINT (int_I_pres_respiration); // | |
120 VAR_UINT (int_I_pres_surface); // | |
121 VAR_UINT (int_I_temp); // new in v101 | |
203 | 122 VAR_UINT (int_I_divemins); // Dive time (minutes) |
163 | 123 VAR_UCHAR (char_I_temp); // new in v101 |
124 VAR_UCHAR (char_I_actual_ppO2); // | |
240
d995e220ddac
BUGFIX Gas Usage when first gas is not #1 (bug BB22).
JeanDo
parents:
224
diff
changeset
|
125 VAR_UCHAR (char_I_first_gas); // Gas used at start of dive. |
163 | 126 VAR_UCHAR (char_I_N2_ratio); // |
127 VAR_UCHAR (char_I_He_ratio); // | |
128 VAR_UCHAR (char_I_saturation_multiplier); // for conservatism/safety values 1.0 no conservatism to 1.5 50% faster saturation | |
129 VAR_UCHAR (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 | |
130 VAR_UCHAR (char_I_GF_High_percentage); // new in v.102 | |
131 VAR_UCHAR (char_I_GF_Low_percentage); // new in v.102 | |
132 VAR_UCHAR (char_I_deco_distance); // | |
133 VAR_UCHAR (char_I_const_ppO2); // new in v.101 | |
134 VAR_UCHAR (char_I_deco_ppO2_change); // new in v.101 | |
135 VAR_UCHAR (char_I_deco_ppO2); // new in v.101 | |
136 VAR_UCHAR (char_I_depth_last_deco); // new in v.101 unit: [m] | |
167 | 137 VAR_UCHAR (char_I_deco_model); // new in v.102. 0 == ZH-L16, 1 = ZH-L16-GF (Grandiant facttor) |
222
638f8e17bd51
Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents:
216
diff
changeset
|
138 VAR_UCHAR (char_I_bottom_depth); // Bottom depth for planning (used in gas volume evaluation). |
638f8e17bd51
Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents:
216
diff
changeset
|
139 VAR_UCHAR (char_I_bottom_time); // Bottom time for planning (used in gas volume evaluation). |
163 | 140 |
222
638f8e17bd51
Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents:
216
diff
changeset
|
141 TAB_UCHAR (char_I_deco_gas_change, 5); // new in v.101 |
224 | 142 TAB_UCHAR (char_I_deco_N2_ratio, 5); // new in v.101 |
143 TAB_UCHAR (char_I_deco_He_ratio, 5); // new in v.101 | |
167 | 144 |
145 #ifdef __18CXX | |
146 //---------------------------------------------------------------------------- | |
147 // Access to various utilities defined in ASM-code. | |
148 // | |
149 // Note: Need to switch to BANK1 before calling most of them ! | |
150 extern unsigned char win_top, win_leftx2, win_font, win_invert; | |
151 extern ram unsigned char letter[26]; | |
152 | |
153 extern void PLED_ClearScreen(void); | |
154 extern void PLED_standard_color(void); | |
155 extern void PLED_warnings_color(void); | |
156 extern void PLED_divemask_color(void); | |
157 | |
158 extern void PLED_box(void); | |
159 extern void PLED_frame(void); | |
160 extern void aa_wordprocessor(void); | |
161 | |
162 /// Set WREG color. | |
163 extern void PLED_set_color(void); | |
278 | 164 #endif |