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 9a81907 commit ca4832aCopy full SHA for ca4832a
src/CommonHelix.h
@@ -2,16 +2,17 @@
2
#include "Arduino.h"
3
4
// User Settings: Activate/Deactivate logging
5
-#define LOGGING_ACTIVE true
6
-#define SYNCH_WORD_LEN 4
+#ifndef HELIX_LOGGING_ACTIVE
+#define HELIX_LOGGING_ACTIVE true
7
+#endif
8
9
10
#ifndef ARDUINO
11
// remove yield statment if used outside of arduino
12
#define yield()
13
#endif
14
-#if LOGGING_ACTIVE == true
15
+#if HELIX_LOGGING_ACTIVE == true
16
static char log_buffer[512];
17
enum LogLevel {Debug, Info, Warning, Error};
18
static LogLevel minLogLevel = Debug;
0 commit comments