We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b08d080 commit 8d7d64cCopy full SHA for 8d7d64c
src/network/featureflags.h
@@ -26,6 +26,7 @@
26
27
#include <cstring>
28
#include <algorithm>
29
+#include "debug.h"
30
31
/**
32
* Bit packed flags, enum values start with 0 and indicate which bit it is.
@@ -73,8 +74,8 @@ class FirmwareFeatures {
73
74
public:
75
enum EFirmwareFeatureFlags: uint32_t {
76
// EXAMPLE_FEATURE,
77
+ REMOTE_COMMAND = 0,
78
B64_WIFI_SCANNING = 1,
-
79
// Add new flags here
80
81
BITS_TOTAL,
@@ -83,6 +84,9 @@ class FirmwareFeatures {
83
84
// Flags to send
85
static constexpr const std::initializer_list<EFirmwareFeatureFlags> flagsEnabled = {
86
87
+#ifdef USE_REMOTE_COMMAND
88
+ REMOTE_COMMAND,
89
+#endif
90
B64_WIFI_SCANNING,
91
92
// Add enabled flags here
0 commit comments