diff options
author | Keith Packard <keithp@keithp.com> | 2014-07-02 22:44:07 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-07-05 00:38:09 -0700 |
commit | 214a38eb2b084baec526aa42016eddb954038639 (patch) | |
tree | 065fb8288bbf502c3ba9a82baafb911704054105 /src/kernel/ao_config.h | |
parent | 0605b5a1cdff5cfd71fc9ef3161a62d74a1124b4 (diff) |
altos: Add config support for 2400 and 9600 baud telemetry rates
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/kernel/ao_config.h')
-rw-r--r-- | src/kernel/ao_config.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/kernel/ao_config.h b/src/kernel/ao_config.h index 70f9f33b..a650ffc6 100644 --- a/src/kernel/ao_config.h +++ b/src/kernel/ao_config.h @@ -53,7 +53,7 @@ #endif #define AO_CONFIG_MAJOR 1 -#define AO_CONFIG_MINOR 19 +#define AO_CONFIG_MINOR 20 #define AO_AES_LEN 16 @@ -105,6 +105,9 @@ struct ao_config { #if HAS_APRS uint8_t aprs_ssid; /* minor version 19 */ #endif +#if HAS_RADIO_RATE + uint8_t radio_rate; /* minor version 20 */ +#endif }; #define AO_IGNITE_MODE_DUAL 0 |