Improve multi (#7136)
[opentx.git] / radio / src / options.h
blobe7ddb0caf2751d51796294074901fe2dfd60f666
1 /*
2 * Copyright (C) OpenTX
4 * Based on code named
5 * th9x - http://code.google.com/p/th9x
6 * er9x - http://code.google.com/p/er9x
7 * gruvin9x - http://code.google.com/p/gruvin9x
9 * License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
22 #ifndef OPENTX_OPTIONS_H
23 #define OPENTX_OPTIONS_H
25 static const char * options[] = {
26 #if defined(AUTOUPDATE)
27 "autoupdate",
28 #endif
29 #if defined(CROSSFIRE)
30 "crossfire",
31 #endif
32 #if !defined(MODULE_PROTOCOL_D8)
33 "eu",
34 #endif
35 #if defined(FAI)
36 "faimode",
37 #endif
38 #if defined(FAI_CHOICE)
39 "faichoice",
40 #endif
41 #if defined(MODULE_PROTOCOL_FLEX)
42 "flexr9m",
43 #endif
44 #if !defined(GVARS)
45 "nogvars",
46 #endif
47 #if defined(HAPTIC) && defined(PCBX9D)
48 "haptic",
49 #endif
50 #if !defined(HELI)
51 "noheli",
52 #endif
53 #if defined(HORUS_STICKS)
54 "horussticks",
55 #endif
56 #if defined(INTERNAL_MODULE_PPM)
57 "internalppm",
58 #endif
59 #if defined(INTERNAL_MODULE_MULTI)
60 "internalmulti",
61 #endif
62 #if defined(MULTIMODULE)
63 "multimodule",
64 #endif
65 #if defined(LUA_MODEL_SCRIPTS)
66 "lua",
67 #endif
68 #if defined(LUA_COMPILER)
69 "luac",
70 #endif
71 #if !defined(OVERRIDE_CHANNEL_FUNCTION)
72 "nooverridech",
73 #endif
74 #if defined(PPM_UNIT_US)
75 "ppmus",
76 #endif
77 #if defined(NO_RAS)
78 "noras",
79 #endif
80 #if defined(SHUTDOWN_CONFIRMATION)
81 "shutdownconfirm",
82 #endif
83 nullptr //sentinel
86 #endif //OPENTX_OPTIONS_H