diff options
author | Keith Packard <keithp@keithp.com> | 2011-01-07 10:05:11 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-01-07 14:59:11 -0800 |
commit | a9b210bc33cd95e7108ab51925fdf0d5e8deaf7e (patch) | |
tree | d1f481a625fcb158837bce951727e8f6ca61dc12 /src/ao.h | |
parent | 3bcf14f12f6681888c3162d0f33ef2d454eb75dd (diff) |
altos: Add configuration parameter for maximum flight log size
This parameter will permit available storage to be split into multiple
separate flight logs.
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
@@ -1002,7 +1002,7 @@ ao_igniter_init(void); */ #define AO_CONFIG_MAJOR 1 -#define AO_CONFIG_MINOR 3 +#define AO_CONFIG_MINOR 4 struct ao_config { uint8_t major; @@ -1014,6 +1014,7 @@ struct ao_config { uint8_t apogee_delay; /* minor version 1 */ int16_t accel_minus_g; /* minor version 2 */ uint32_t radio_cal; /* minor version 3 */ + uint32_t flight_log_max; /* minor version 4 */ }; extern __xdata struct ao_config ao_config; |