diff options
author | Keith Packard <keithp@keithp.com> | 2012-05-27 17:31:12 -0600 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-05-27 17:31:12 -0600 |
commit | 5fd869b244f8f2b76258dc31a5507a73fd47cf1d (patch) | |
tree | 1b3517dcf3eeb038aa0b1d9059b290121a3e61fc /src/core | |
parent | 627b904b36e129ff2ead436a626699abfc3b3211 (diff) |
altos: Make telenano build with new ao_data structure
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/ao_flight_nano.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ao_flight_nano.c b/src/core/ao_flight_nano.c index 2e332b12..406d81ad 100644 --- a/src/core/ao_flight_nano.c +++ b/src/core/ao_flight_nano.c @@ -27,8 +27,8 @@ __pdata uint16_t ao_launch_tick; /* time of launch detect */ * resting */ __pdata uint16_t ao_interval_end; -__pdata int16_t ao_interval_min_height; -__pdata int16_t ao_interval_max_height; +__pdata alt_t ao_interval_min_height; +__pdata alt_t ao_interval_max_height; __pdata uint8_t ao_flight_force_idle; |