Skip to content

Commit

Permalink
- Rollback compiler flags
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushsharma82 committed Aug 30, 2023
1 parent 96f9495 commit 9ea84e1
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions src/ElegantOTA.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,21 @@ _____ _ _ ___ _____ _
#include "stdlib_noniso.h"
#include "elop.h"

#define ELEGANTOTA_USE_SPIFFS 0
#define ELEGANTOTA_USE_ASYNC_WEBSERVER 0
#define ELEGANTOTA_DEBUG 1
#define UPDATE_DEBUG 1
#ifndef ELEGANTOTA_USE_SPIFFS
#define ELEGANTOTA_USE_SPIFFS 0
#endif

#ifndef ELEGANTOTA_USE_ASYNC_WEBSERVER
#define ELEGANTOTA_USE_ASYNC_WEBSERVER 0
#endif

#ifndef ELEGANTOTA_DEBUG
#define ELEGANTOTA_DEBUG 1
#endif

#ifndef UPDATE_DEBUG
#define UPDATE_DEBUG 1
#endif

#if ELEGANTOTA_DEBUG
#define ELEGANTOTA_DEBUG_MSG(x) Serial.printf("%s %s", "[ElegantOTA] ", x)
Expand Down

0 comments on commit 9ea84e1

Please sign in to comment.