|
|
|
@ -72,7 +72,6 @@
@@ -72,7 +72,6 @@
|
|
|
|
|
#include <AP_LandingGear/AP_LandingGear.h> // Landing Gear library |
|
|
|
|
#include <AC_InputManager/AC_InputManager.h> // Pilot input handling library |
|
|
|
|
#include <AC_InputManager/AC_InputManager_Heli.h> // Heli specific pilot input handling library |
|
|
|
|
#include <AP_Button/AP_Button.h> |
|
|
|
|
#include <AP_Arming/AP_Arming.h> |
|
|
|
|
#include <AP_SmartRTL/AP_SmartRTL.h> |
|
|
|
|
#include <AP_TempCalibration/AP_TempCalibration.h> |
|
|
|
@ -156,6 +155,9 @@
@@ -156,6 +155,9 @@
|
|
|
|
|
#if CAMERA == ENABLED |
|
|
|
|
# include <AP_Camera/AP_Camera.h> |
|
|
|
|
#endif |
|
|
|
|
#if BUTTON_ENABLED == ENABLED |
|
|
|
|
# include <AP_Button/AP_Button.h> |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#if OSD_ENABLED == ENABLED |
|
|
|
|
#include <AP_OSD/AP_OSD.h> |
|
|
|
@ -553,6 +555,11 @@ private:
@@ -553,6 +555,11 @@ private:
|
|
|
|
|
AP_Parachute parachute{relay}; |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
// Button
|
|
|
|
|
#if BUTTON_ENABLED == ENABLED |
|
|
|
|
AP_Button button; |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
// Landing Gear Controller
|
|
|
|
|
AP_LandingGear landinggear; |
|
|
|
|
|
|
|
|
|