From 8b1d35bc76b626984b3d3083ae67b22be6a00fa2 Mon Sep 17 00:00:00 2001 From: Pierre Kancir Date: Tue, 9 Feb 2021 15:09:51 +0100 Subject: [PATCH] AP_Module: fix example --- libraries/AP_Module/examples/ModuleTest/ModuleTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_Module/examples/ModuleTest/ModuleTest.cpp b/libraries/AP_Module/examples/ModuleTest/ModuleTest.cpp index 7da2e423b7..2d0d5dc332 100644 --- a/libraries/AP_Module/examples/ModuleTest/ModuleTest.cpp +++ b/libraries/AP_Module/examples/ModuleTest/ModuleTest.cpp @@ -17,7 +17,7 @@ const AP_HAL::HAL& hal = AP_HAL::get_HAL(); // sensor declaration static AP_InertialSensor ins; #if HAL_EXTERNAL_AHRS_ENABLED - static AP_ExternalAHRS eAHRS; + static AP_ExternalAHRS eAHRS; #endif // HAL_EXTERNAL_AHRS_ENABLED static AP_GPS gps; static AP_Baro baro;