AP_Notify: ensure ENABLE_SCRIPTING is always defined

This commit is contained in:
Peter Barker 2021-11-15 12:16:26 +11:00 committed by Peter Barker
parent 9e8126d07c
commit 4eaba21e15
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -16,7 +16,7 @@
#include "AP_Notify/AP_Notify.h"
#include "ScriptingLED.h"
#ifdef ENABLE_SCRIPTING
#if ENABLE_SCRIPTING
ScriptingLED *ScriptingLED::_singleton;

View File

@ -17,7 +17,7 @@
#include "RGBLed.h"
#include <AP_Common/AP_Common.h>
#ifdef ENABLE_SCRIPTING
#if ENABLE_SCRIPTING
class ScriptingLED: public RGBLed {
public: