comparison Common/Inc/configuration.h @ 677:1953cd9145b3 Betatest

Move include file to common to ... ... get things compiled. The configuration.h file is also used from the RTE code, so it should be in the Common tree. Signed-off-by: Jan Mulder <jan@jlmulder.nl>
author Jan Mulder <jan@jlmulder.nl>
date Wed, 20 Apr 2022 20:25:04 +0200
parents
children b052e812277c
comparison
equal deleted inserted replaced
676:c855753af9a6 677:1953cd9145b3
1 ///////////////////////////////////////////////////////////////////////////////
2 /// -*- coding: UTF-8 -*-
3 ///
4 /// \file Discovery/Inc/configuration.h
5 /// \brief Header file for variant specific firmware adaptations at compile time
6 /// \author heinrichs weikamp gmbh
7 /// \date 29-February-2020
8 ///
9 /// $Id$
10 ///////////////////////////////////////////////////////////////////////////////
11 /// \par Copyright (c) 2014-2020 Heinrichs Weikamp gmbh
12 ///
13 /// This program is free software: you can redistribute it and/or modify
14 /// it under the terms of the GNU General Public License as published by
15 /// the Free Software Foundation, either version 3 of the License, or
16 /// (at your option) any later version.
17 ///
18 /// This program is distributed in the hope that it will be useful,
19 /// but WITHOUT ANY WARRANTY; without even the implied warranty of
20 /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 /// GNU General Public License for more details.
22 ///
23 /// You should have received a copy of the GNU General Public License
24 /// along with this program. If not, see <http://www.gnu.org/licenses/>.
25 //////////////////////////////////////////////////////////////////////////////
26
27 #ifndef CONFIGURATION_HEADER
28 #define CONFIGURATION_HEADER
29
30 /* Enable this to make the simulator write a logbook entry */
31 /* #define SIM_WRITES_LOGBOOK 1 */
32
33 /* Enable this for support of optical bottle pressure interface */
34 /* #define ENABLE_BOTTLE_SENSOR */
35
36 /* Enable this to show voltage in parallel to charge state */
37 /* #define ALWAYS_SHOW_VOLTAGE */
38
39 /* Enable this to skip coplete scan of dive log during startup */
40 #define TRUST_LOG_CONSISTENCY
41
42 /* Enable this to transfer additional data list last dive ID and last sample index during raw data requests */
43 /* define SEND_DATA_DETAILS */
44
45 /* Enable to activate a menu item in reset menu which provide sample ring analysis / repair functionality */
46 /* #define ENABLE_ANALYSE_SAMPLES */
47
48 /* Enable to have access to the debug view options (turn on / off via menu instead of compile switch) */
49 /* #define HAVE_DEBUG_VIEW */
50
51 /* Enable to have access to the motion control selection menu */
52 #define ENABLE_MOTION_CONTROL
53
54 /* Enable to have option to hide not needed gases from dive views */
55 /* #define ENABLE_UNUSED_GAS_HIDING */
56
57 /* Enable to have the new T3 profile view available */
58 #define ENABLE_T3_PROFILE_VIEW
59
60 /* Enable to have PPO2 adjustments in T3 sensor view during dive simulation */
61 /* #define ENABLE_T3_PPO_SIM */
62
63 /* Enable to have PSCR functionality available */
64 #define ENABLE_PSCR_MODE
65
66 /* Enable to have CO2 sensor functionality available */
67 /* #define ENABLE_CO2_SUPPORT */
68
69 /* Enable if you are using sensors with a voltage range 8..16 mV at surface / air level */
70 #define ENABLE_ALTERNATIVE_SENSORTYP
71
72 #endif