summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266/mpconfigport_512k.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-12-08 17:31:21 +1100
committerDamien George <damien.p.george@gmail.com>2016-12-08 17:31:21 +1100
commit5e393007b930359fbc42180ea4e4fb45b149af80 (patch)
tree97b56a1acc405ed7ad88eff70449527014cfa856 /esp8266/mpconfigport_512k.h
parent898d4c1217e69497c67ca2ddb66641406a03700b (diff)
downloadmicropython-5e393007b930359fbc42180ea4e4fb45b149af80.tar.gz
micropython-5e393007b930359fbc42180ea4e4fb45b149af80.zip
esp8266/mpconfigport_512k: Disable framebuf module for 512k build.
The 512k build recently overflowed because of the newly-enabled uselect module. uselect is arguable more important than framebuf for small devices so we disable framebuf to keep the 512k build within its limit.
Diffstat (limited to 'esp8266/mpconfigport_512k.h')
-rw-r--r--esp8266/mpconfigport_512k.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/esp8266/mpconfigport_512k.h b/esp8266/mpconfigport_512k.h
index f0de6035f1..ffdc95dbd4 100644
--- a/esp8266/mpconfigport_512k.h
+++ b/esp8266/mpconfigport_512k.h
@@ -17,3 +17,6 @@
#define MICROPY_PY_BUILTINS_SLICE_ATTRS (0)
#undef MICROPY_PY_ALL_SPECIAL_METHODS
#define MICROPY_PY_ALL_SPECIAL_METHODS (0)
+
+#undef MICROPY_PY_FRAMEBUF
+#define MICROPY_PY_FRAMEBUF (0)