diff options
author | Keith Packard <keithp@keithp.com> | 2014-08-17 21:03:12 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-08-17 21:03:12 -0700 |
commit | 44e389c31e5958c1a050fbe0dce5d7971a9d6a86 (patch) | |
tree | 555052ed26c42b5595d6298a2027ea004fd01e4c /src/kernel/ao_config.h | |
parent | 5a51efd7f9b49ffadc91ccaf7a0d69566301c009 (diff) |
altos: Add telerepeat-v1.0
This uses TeleBT hardware to provide a telemetry repeater, receiving
packets on one frequency and re-transmitting them on another.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/kernel/ao_config.h')
-rw-r--r-- | src/kernel/ao_config.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/kernel/ao_config.h b/src/kernel/ao_config.h index 0be3e14d..164584a5 100644 --- a/src/kernel/ao_config.h +++ b/src/kernel/ao_config.h @@ -57,7 +57,7 @@ #endif #define AO_CONFIG_MAJOR 1 -#define AO_CONFIG_MINOR 20 +#define AO_CONFIG_MINOR 21 #define AO_AES_LEN 16 @@ -112,8 +112,15 @@ struct ao_config { #if HAS_RADIO_RATE uint8_t radio_rate; /* minor version 20 */ #endif +#if HAS_RADIO_FORWARD + uint32_t send_frequency; /* minor version 21 */ +#endif }; +#if HAS_RADIO_FORWARD +extern __xdata uint32_t ao_send_radio_setting; +#endif + #define AO_IGNITE_MODE_DUAL 0 #define AO_IGNITE_MODE_APOGEE 1 #define AO_IGNITE_MODE_MAIN 2 |