Skip to content

Commit

Permalink
Merge pull request #4331 from TD-er/build/fix_build_issues
Browse files Browse the repository at this point in the history
[Build] Fix missing include + some define checks
  • Loading branch information
TD-er authored Nov 5, 2022
2 parents 836e0d5 + 3948b86 commit 1ab68a4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/src/Commands/Common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "../ESPEasyCore/ESPEasyWifi.h"
#include "../ESPEasyCore/Serial.h"

#include "../Helpers/Networking.h"
#include "../Helpers/Numerical.h"
#include "../Helpers/StringConverter.h"

Expand Down
13 changes: 10 additions & 3 deletions src/src/CustomBuild/define_plugin_sets.h
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,10 @@ To create/register a plugin, you have to :
#define PLUGIN_DESCR "Minimal 1M OTA"
#endif

#define CONTROLLER_SET_NONE

#ifndef CONTROLLER_SET_NONE
#define CONTROLLER_SET_NONE
#endif

#define BUILD_MINIMAL_OTA
#ifndef BUILD_NO_DEBUG
Expand All @@ -417,9 +420,13 @@ To create/register a plugin, you have to :
// #define USES_C013 // ESPEasy P2P network

// #define NOTIFIER_SET_STABLE
#define NOTIFIER_SET_NONE
#ifndef NOTIFIER_SET_NONE
#define NOTIFIER_SET_NONE
#endif

#define PLUGIN_SET_NONE
#ifndef PLUGIN_SET_NONE
#define PLUGIN_SET_NONE
#endif

#ifdef FEATURE_SETTINGS_ARCHIVE
#undef FEATURE_SETTINGS_ARCHIVE
Expand Down

0 comments on commit 1ab68a4

Please sign in to comment.