Mercurial > public > mk2
annotate code_part1/OSTC_code_c_part2/p2_definitions.h @ 654:a38d82918458
minor layout change
author | heinrichsweikamp |
---|---|
date | Tue, 16 Oct 2012 18:20:32 +0200 |
parents | d1719622111e |
children | f555590f1419 |
rev | line source |
---|---|
116 | 1 // ********************************************************* |
2 // ** Common definitions for the OSTC decompression code ** | |
3 // ********************************************************* | |
4 | |
5 ////////////////////////////////////////////////////////////////////////////// | |
6 // OSTC - diving computer code | |
7 // Copyright (C) 2008 HeinrichsWeikamp GbR | |
8 // | |
9 // This program is free software: you can redistribute it and/or modify | |
10 // it under the terms of the GNU General Public License as published by | |
11 // the Free Software Foundation, either version 3 of the License, or | |
12 // (at your option) any later version. | |
13 // | |
14 // This program is distributed in the hope that it will be useful, | |
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 // GNU General Public License for more details. | |
18 // | |
19 // You should have received a copy of the GNU General Public License | |
20 // along with this program. If not, see <http://www.gnu.org/licenses/>. | |
21 // | |
22 ////////////////////////////////////////////////////////////////////////////// | |
23 // history: | |
24 // 12/25/10 v110: [jDG] split in three files (deco.c, main.c, definitions.h) | |
25 | |
532 | 26 /* |
184 | 27 #define DBG_c_gas 0x0001 |
28 #define DBG_c_ppO2 0x0002 | |
29 #define DBG_RUN 0x0004 | |
30 #define DBG_RESTART 0x0008 | |
116 | 31 |
184 | 32 #define DBG_CdeSAT 0x0010 |
33 #define DBG_C_MODE 0x0020 | |
34 #define DBG_C_SURF 0x0040 | |
35 #define DBG_HEwoHE 0x0080 | |
116 | 36 |
321 | 37 // #define DBG_UNUSED 0x0100 |
184 | 38 #define DBG_C_DGAS 0x0200 |
39 #define DBG_C_DIST 0x0400 | |
40 #define DBG_C_LAST 0x0800 | |
116 | 41 |
184 | 42 #define DBG_C_GF 0x1000 |
43 #define DBG_ZH16ERR 0x2000 | |
44 #define DBG_PHIGH 0x4000 | |
45 #define DBG_PLOW 0x8000 | |
116 | 46 |
184 | 47 #define DBS_mode 0x0001 |
48 #define DBS_ppO2 0x0002 | |
49 #define DBS_HE_sat 0x0004 | |
321 | 50 // #define DBS_UNUSED 0x0008 |
184 | 51 |
52 #define DBS_SAT2l 0x0010 | |
53 #define DBS_SAT2h 0x0020 | |
54 #define DBS_GFLOW2l 0x0040 | |
55 #define DBS_GFLOW2h 0x0080 | |
56 | |
57 #define DBS_GFHGH2l 0x0100 | |
58 #define DBS_GFHGH2h 0x0200 | |
59 #define DBS_GASO22l 0x0400 | |
60 #define DBS_GASO22h 0x0800 | |
61 | |
62 #define DBS_DIST2h 0x1000 | |
63 #define DBS_LAST2h 0x2000 | |
64 #define DBS_DECOO2l 0x4000 | |
65 #define DBS_DECOO2h 0x8000 | |
116 | 66 |
184 | 67 #define DBS2_PRES2h 0x0001 |
68 #define DBS2_PRES2l 0x0002 | |
69 #define DBS2_SURF2l 0x0004 | |
70 #define DBS2_SURF2h 0x0008 | |
71 | |
72 #define DBS2_DESAT2l 0x0010 | |
73 #define DBS2_DESAT2h 0x0020 | |
74 #define DBS2_GFDneg 0x0040 | |
116 | 75 |
532 | 76 */ |
77 | |
184 | 78 #define MBAR_REACH_GASCHANGE_AUTO_CHANGE_OFF 150 |
116 | 79 |
80 // ************************* | |
81 // ** P R O T O T Y P E S ** | |
82 // ************************* | |
83 | |
167 | 84 extern void calc_percentage(void); |
85 extern void deco_calc_hauptroutine(void); | |
86 extern void deco_clear_tissue(void); | |
87 extern void deco_calc_percentage(void); | |
88 extern void deco_calc_wo_deco_step_1_min(void); | |
368 | 89 extern void deco_calc_dive_interval(void); |
532 | 90 //extern void deco_debug(void); |
167 | 91 extern void deco_gradient_array(void); |
92 extern void deco_hash(void); | |
93 extern void deco_calc_desaturation_time(void); | |
94 extern void deco_calc_CNS_fraction(void); | |
95 extern void deco_clear_CNS_fraction(void); | |
96 extern void deco_push_tissues_to_vault(void); | |
97 extern void deco_pull_tissues_from_vault(void); | |
488 | 98 extern void deco_calc_CNS_planning(void); |
222
638f8e17bd51
Prototyping deco_gas_volumes() to compute gas consumption per tank with decoplanning.
JeanDo
parents:
200
diff
changeset
|
99 extern void deco_gas_volumes(void); |
116 | 100 |
184 | 101 // *********************************************** |
102 // ** Allow compile on VisualC ** | |
103 // *********************************************** | |
104 | |
548 | 105 #if defined(WIN32) || defined(UNIX) |
184 | 106 // Some keywords just dont exists on Visual C++: |
107 # define CROSS_COMPILE | |
108 # define __18CXX | |
109 # define ram | |
110 # define rom | |
111 # define overlay | |
112 # define PARAMETER | |
113 | |
548 | 114 # include <assert.h> |
192 | 115 |
184 | 116 // Avoid warnings about float/double mismatches: |
548 | 117 # ifdef WIN32 |
118 # pragma warning(disable: 4244 4068 4305) | |
601
d1719622111e
Minor LLVM compatibility cleanups.
JeanDo <jd.gascuel@free.fr>
parents:
548
diff
changeset
|
119 # elif defined(Q_OS_MAC) |
d1719622111e
Minor LLVM compatibility cleanups.
JeanDo <jd.gascuel@free.fr>
parents:
548
diff
changeset
|
120 //# pragma GCC diagnostic error "-Wunknown-pragmas" |
d1719622111e
Minor LLVM compatibility cleanups.
JeanDo <jd.gascuel@free.fr>
parents:
548
diff
changeset
|
121 # pragma GCC diagnostic error "-Wunused-variable" |
548 | 122 # endif |
184 | 123 #else |
124 # define PARAMETER static | |
235 | 125 # ifdef __DEBUG |
126 # define assert(predicate) if( !(predicate) ) assert_failed(__LINE__) | |
127 # else | |
128 # define assert(predicate) | |
129 # endif | |
184 | 130 #endif |
131 | |
167 | 132 ////////////////////////////////////////////////////////////////////////////// |