mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 02:18:29 -04:00
APM: optional build with new controller libs
This commit is contained in:
parent
10505093e1
commit
2bc2460c07
@ -52,6 +52,11 @@
|
||||
#include <AP_Airspeed.h>
|
||||
#include <memcheck.h>
|
||||
|
||||
// optional new controller library
|
||||
#if APM_CONTROL == ENABLED
|
||||
#include <APM_Control.h>
|
||||
#endif
|
||||
|
||||
// Configuration
|
||||
#include "config.h"
|
||||
|
||||
|
@ -838,3 +838,8 @@
|
||||
#ifndef OBC_FAILSAFE
|
||||
# define OBC_FAILSAFE DISABLED
|
||||
#endif
|
||||
|
||||
// new APM_Control controller library by Jon Challinger
|
||||
#ifndef APM_CONTROL
|
||||
# define APM_CONTROL DISABLED
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user