Skip to content

Commit 084281b

Browse files
committed
cleanup esp8266 defines
1 parent f2a7162 commit 084281b

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ArduinoMenu library
2-
version=4.17.7
2+
version=4.17.8
33
author=Rui Azevedo, [email protected]
44
maintainer=neu-rah, [email protected]
55
sentence=Generic menu/interactivity system

src/macros.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@
1111
#if defined(ESP8266) | defined(CORE_TEENSY)
1212
#define typeof(x) __typeof__(x)
1313
#endif
14-
#if defined(ESP8266)
15-
#define MENU_ASYNC
16-
#define MENU_FMT_WRAPS
17-
#define MENU_IDLE_BKGND
18-
#endif
1914
#if defined(USE_PGM) || (defined(pgm_read_ptr_near) && !defined(MENU_USERAM))
2015
//storing some values into avr flash memory (saving ram space)
2116
#ifdef MENU_DEBUG

src/menu.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,5 @@ warranty, express or implied, as to its usefulness for any purpose.
1313
#pragma once
1414

1515
#include "menuDefs.h"
16-
#ifdef ESP8266
17-
#include "menuIO/esp8266Out.h"
18-
#endif
1916

2017
#include "itemsTemplates.cpp"

src/menuIO/esp8266Out.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifdef MENU_FMT_WRAPS
21
#include "../menuDefs.h"
2+
#ifdef MENU_FMT_WRAPS
33
#include "esp8266Out.h"
44

55
menuOut& operator<<(menuOut&o,classes c) {

0 commit comments

Comments
 (0)