diff options
author | Keith Packard <keithp@keithp.com> | 2011-08-18 18:02:02 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-08-20 11:36:51 -0700 |
commit | 6823ad5e48fc0a19791d96f886b5689f88c4311b (patch) | |
tree | 9a13b80bfd411ddbe0d9a67239192555bcb7968a /src/ao.h | |
parent | a08e7ac8bd3840b699c9a1ffc6b1e115b2b84bad (diff) |
altos/altosui: Add ability to disable telemetry/rdf completely
This turns off the telemetry system so that it never transmits telemetry
or RDF tones. In idle mode, it will still accept packet mode connections.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao.h')
-rw-r--r-- | src/ao.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1415,7 +1415,7 @@ ao_igniter_init(void); */ #define AO_CONFIG_MAJOR 1 -#define AO_CONFIG_MINOR 7 +#define AO_CONFIG_MINOR 8 struct ao_config { uint8_t major; @@ -1431,6 +1431,7 @@ struct ao_config { uint8_t ignite_mode; /* minor version 5 */ uint8_t pad_orientation; /* minor version 6 */ uint32_t radio_setting; /* minor version 7 */ + uint8_t radio_enable; /* minor version 8 */ }; #define AO_IGNITE_MODE_DUAL 0 |