From 67540dc5bb78b7a19d4022beeabcbb6812d175ba Mon Sep 17 00:00:00 2001 From: Pierre Kancir Date: Tue, 9 Feb 2021 15:09:51 +0100 Subject: [PATCH] AP_InertialSensor: fix example --- .../AP_InertialSensor/examples/INS_generic/INS_generic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_InertialSensor/examples/INS_generic/INS_generic.cpp b/libraries/AP_InertialSensor/examples/INS_generic/INS_generic.cpp index d1fe927dc5..55ad771623 100644 --- a/libraries/AP_InertialSensor/examples/INS_generic/INS_generic.cpp +++ b/libraries/AP_InertialSensor/examples/INS_generic/INS_generic.cpp @@ -11,7 +11,7 @@ const AP_HAL::HAL &hal = AP_HAL::get_HAL(); static AP_InertialSensor ins; #if HAL_EXTERNAL_AHRS_ENABLED -static AP_ExternalAHRS eAHRS; + static AP_ExternalAHRS eAHRS; #endif // HAL_EXTERNAL_AHRS_ENABLED static void display_offsets_and_scaling();