diff options
author | Keith Packard <keithp@keithp.com> | 2012-06-04 20:53:06 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-06-04 20:53:06 -0700 |
commit | dec5cbee22f13c47690b0c6bf7ca724ef132fe5e (patch) | |
tree | d0985c1c4616bd88ca8f2247c82e5b7b2d444eb0 | |
parent | e687a9bafc696998b47fd0300fbc89dece09509c (diff) |
altos: typo in ao_monitor prevented ground station from including code
This created ground station software that couldn't actually receive
and report telemetry packets.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/core/ao_monitor.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ao_monitor.c b/src/core/ao_monitor.c index 830464d8..4ca641b7 100644 --- a/src/core/ao_monitor.c +++ b/src/core/ao_monitor.c @@ -17,6 +17,7 @@ #include "ao.h" #include "ao_telem.h" +#include "ao_flight.h" #if !HAS_MONITOR #error Must define HAS_MONITOR to 1 @@ -27,7 +28,7 @@ #endif #ifndef HAS_MONITOR_PUT -#define HAS_MONIOTOR_PUT 1 +#define HAS_MONITOR_PUT 1 #endif #ifndef AO_MONITOR_LED |