diff options
author | Damien George <damien.p.george@gmail.com> | 2016-12-08 17:31:21 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-12-08 17:31:21 +1100 |
commit | 5e393007b930359fbc42180ea4e4fb45b149af80 (patch) | |
tree | 97b56a1acc405ed7ad88eff70449527014cfa856 /esp8266/mpconfigport_512k.h | |
parent | 898d4c1217e69497c67ca2ddb66641406a03700b (diff) | |
download | micropython-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.h | 3 |
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) |