mirror of https://github.com/ArduPilot/ardupilot
AP_Notify: ensure ENABLE_SCRIPTING is always defined
This commit is contained in:
parent
9e8126d07c
commit
4eaba21e15
|
@ -328,7 +328,7 @@ void AP_Notify::add_backends(void)
|
|||
break;
|
||||
|
||||
case Notify_LED_Scripting:
|
||||
#ifdef ENABLE_SCRIPTING
|
||||
#if ENABLE_SCRIPTING
|
||||
ADD_BACKEND(new ScriptingLED());
|
||||
#endif
|
||||
break;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include "AP_Notify/AP_Notify.h"
|
||||
#include "ScriptingLED.h"
|
||||
|
||||
#ifdef ENABLE_SCRIPTING
|
||||
#if ENABLE_SCRIPTING
|
||||
|
||||
ScriptingLED *ScriptingLED::_singleton;
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#include "RGBLed.h"
|
||||
#include <AP_Common/AP_Common.h>
|
||||
|
||||
#ifdef ENABLE_SCRIPTING
|
||||
#if ENABLE_SCRIPTING
|
||||
|
||||
class ScriptingLED: public RGBLed {
|
||||
public:
|
||||
|
|
Loading…
Reference in New Issue