From 53aad69fa265a6d69a9b340be382f916610ab619 Mon Sep 17 00:00:00 2001 From: Randy Mackay Date: Tue, 14 Jul 2015 22:01:13 +0900 Subject: [PATCH] Copter: include AttControl_Multi.h --- ArduCopter/Copter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ArduCopter/Copter.h b/ArduCopter/Copter.h index a249885c21..15d4719944 100644 --- a/ArduCopter/Copter.h +++ b/ArduCopter/Copter.h @@ -64,7 +64,7 @@ #include // PID library (2-axis) #include // Heli specific Rate PID library #include // P library -#include // Attitude control library +#include // Attitude control library #include // Attitude control library for traditional helicopter #include // Position control library #include // RC Channel Library @@ -411,7 +411,7 @@ private: #if FRAME_CONFIG == HELI_FRAME AC_AttitudeControl_Heli attitude_control; #else - AC_AttitudeControl attitude_control; + AC_AttitudeControl_Multi attitude_control; #endif AC_PosControl pos_control; AC_WPNav wp_nav;