Skip to content

Commit

Permalink
esp8266: Only include uasyncio in GENERIC build.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgeorge committed Mar 24, 2020
1 parent 8c662b7 commit 204e14c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ports/esp8266/boards/GENERIC/manifest.py
@@ -0,0 +1,2 @@
include("$(PORT_DIR)/boards/manifest.py")
include("$(MPY_DIR)/extmod/uasyncio/manifest.py")
1 change: 1 addition & 0 deletions ports/esp8266/boards/GENERIC/mpconfigboard.h
Expand Up @@ -15,6 +15,7 @@
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)
#define MICROPY_PY_IO_FILEIO (1)
#define MICROPY_PY_SYS_STDIO_BUFFER (1)
#define MICROPY_PY_UASYNCIO (1)
#define MICROPY_PY_URE_SUB (1)
#define MICROPY_PY_UCRYPTOLIB (1)
#define MICROPY_PY_FRAMEBUF (1)
2 changes: 2 additions & 0 deletions ports/esp8266/boards/GENERIC/mpconfigboard.mk
@@ -1 +1,3 @@
MICROPY_VFS_FAT = 1

FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py
1 change: 0 additions & 1 deletion ports/esp8266/boards/manifest.py
Expand Up @@ -2,5 +2,4 @@
freeze("$(MPY_DIR)/tools", ("upip.py", "upip_utarfile.py"))
freeze("$(MPY_DIR)/drivers/dht", "dht.py")
freeze("$(MPY_DIR)/drivers/onewire")
include("$(MPY_DIR)/extmod/uasyncio/manifest.py")
include("$(MPY_DIR)/extmod/webrepl/manifest.py")
1 change: 0 additions & 1 deletion ports/esp8266/mpconfigport.h
Expand Up @@ -62,7 +62,6 @@
#define MICROPY_PY_SYS_STDFILES (1)
#define MICROPY_PY_UERRNO (1)
#define MICROPY_PY_UBINASCII (1)
#define MICROPY_PY_UASYNCIO (1)
#define MICROPY_PY_UCTYPES (1)
#define MICROPY_PY_UHASHLIB (1)
#define MICROPY_PY_UHASHLIB_SHA1 (MICROPY_PY_USSL && MICROPY_SSL_AXTLS)
Expand Down

0 comments on commit 204e14c

Please sign in to comment.