From fb01f665c2c8176251fea8dba56cf7a2d7797c95 Mon Sep 17 00:00:00 2001 From: Felix Ruess Date: Tue, 9 Sep 2014 18:06:50 +0200 Subject: [PATCH] [fixedwing] fix typo --- sw/airborne/firmwares/fixedwing/main_ap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sw/airborne/firmwares/fixedwing/main_ap.c b/sw/airborne/firmwares/fixedwing/main_ap.c index 5a330217e5c..da337d4af76 100644 --- a/sw/airborne/firmwares/fixedwing/main_ap.c +++ b/sw/airborne/firmwares/fixedwing/main_ap.c @@ -150,7 +150,7 @@ static inline void on_mag_event( void ); volatile uint8_t ahrs_timeout_counter = 0; //FIXME not the correct place -static void send_fliter_status(void) { +static void send_filter_status(void) { uint8_t mde = 3; if (ahrs.status == AHRS_UNINIT) mde = 2; if (ahrs_timeout_counter > 10) mde = 5; @@ -209,7 +209,7 @@ void init_ap( void ) { #endif #if USE_AHRS && USE_IMU - register_periodic_telemetry(DefaultPeriodic, "STATE_FILTER_STATUS", send_fliter_status); + register_periodic_telemetry(DefaultPeriodic, "STATE_FILTER_STATUS", send_filter_status); #endif air_data_init();