Debug and Trace modes can now be (de)activated via API commands and are persisted across reboots.

This commit is contained in:
2019-11-30 13:53:50 +01:00
parent 82905a8cdd
commit fe2a209e44
4 changed files with 32 additions and 0 deletions

View File

@ -1,5 +1,9 @@
#pragma once
#include <Preferences.h>
void wifi_connect();
extern const uint8_t file_index_html_start[] asm("_binary_src_index_html_start");
extern bool debug_enabled;
extern bool trace_enabled;
extern Preferences prefs;