commit | 53ad681ed1786601ca5eccb60f8fd950b8bc47d7 | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Fri Apr 08 11:08:37 2016 +0100 |
committer | Damien George <damien.p.george@gmail.com> | Tue Apr 12 14:06:53 2016 +0100 |
tree | a6bf5beb1f2b8b8c06ae05135af59d5ac31872be | |
parent | 3a37426b29451cd51e444526c803ba7905c6b151 [diff] [blame] |
extmod: Add initial framebuf module.
diff --git a/py/objmodule.c b/py/objmodule.c index 5fd7b82..d2a4d89 100644 --- a/py/objmodule.c +++ b/py/objmodule.c
@@ -196,6 +196,9 @@ #if MICROPY_PY_WEBSOCKET { MP_ROM_QSTR(MP_QSTR_websocket), MP_ROM_PTR(&mp_module_websocket) }, #endif +#if MICROPY_PY_FRAMEBUF + { MP_ROM_QSTR(MP_QSTR_framebuf), MP_ROM_PTR(&mp_module_framebuf) }, +#endif // extra builtin modules as defined by a port MICROPY_PORT_BUILTIN_MODULES