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.
This commit is contained in:
Damien George 2016-12-08 17:31:21 +11:00
parent 898d4c1217
commit 5e393007b9
1 changed files with 3 additions and 0 deletions

View File

@ -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)